/* Body styling */
body {
  background-color: rgb(0, 0, 0);
  color: white;
  font-family: "Cera ProModern", Arial, sans-serif;
  margin: 0;
  text-align: center;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* Blurred, low-opacity full-page background image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../indexbg.png") center center / cover no-repeat;
  filter: blur(4px);
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

/* Critiques page only */
.crt-container {
  max-width: 1100px;
  margin: -30% auto;
  padding: 0 16px;
}
.crt-box {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;

  /* NEW */
  display: flex;
  flex-direction: column;
  height: 62vh; /* controls total box height */
  min-height: 420px; /* safety on short viewports */
}
.crt-head {
  padding: 14px 16px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crt-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.crt-note {
  color: #ff6464;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* feed cards (reuse pair-card vibe, simpler) */
.crt-feed {
  /* was: max-height:60vh; overflow:auto; */
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 14px; /* optional padding so content isn’t flush */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
}
.crt-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #242424;
}
.crt-card:last-child {
  border-bottom: 0;
}
.crt-left img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #333;
}
.crt-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #bbb;
}
.crt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.crt-name {
  font-weight: 800;
}
.crt-type {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
}
.crt-completed  {
  text-align: right;
}
.crt-completed a {
  color: #ffd400;
  text-decoration: none;
  font-weight: 800;
}
.crt-blur {
  position: relative;
}
.crt-blur > * {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}
.crt-blur {
  cursor: pointer;
} /* show it's clickable */

.crt-blur::after {
  content: "Subscribe To Access";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none; /* let the click hit the article */
}

/* “queue” pill at top-right of your own pending */
.crt-queue-pill {
  background: #ffd400;
  color: #000;
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 900;
  font-size: 12px;
}

/* giant bottom button (mobile-friendly, like manrec) */
#critique-submit-btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 7%;
  z-index: 1100;
  background: #ff2e2e;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
}
#critique-submit-btn:hover {
  transform: translateX(-50%) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  background: #ff1a1a;
}

/* modal */
.crt-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1200;
}
.crt-modal__content {
  width: min(680px, 94vw);
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 16px;
}
.crt-modal__close {
  border: none;
  background: none;
  color: #aaa;
  font-size: 22px;
  float: right;
  cursor: pointer;
}
.crt-form .row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.crt-form label small {
  color: #aaa;
  display: block;
  margin-top: 4px;
}
.crt-form input[type="text"],
.crt-form input[type="url"],
.crt-form input[type="number"],
.crt-form select,
.crt-form textarea {
  width: 98%;
  background: #0e0e0e;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px 10px;
}
.crt-form textarea {
  min-height: 100px;
}

.crt-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.crt-members-only-tip {
  color: #ff6464;
  font-weight: 800;
  margin-top: 4px;
}

/* red “members only” mini modal */
#membersOnlyModal .crt-modal__content {
  width: min(420px, 92vw);
  text-align: center;
}

/* Logo Container */
#logo-container2 img {
  width: 15%; /* Adjust as needed, or use a fixed max-width */
  max-width: fit-content; /* Prevent overflow */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer;
}

#logo-container2 {
  position: absolute;
  top: -108px; /* Fine-tune for positioning */
  left: -889px;
  z-index: 5;
}

/* Top Navigation */
#top-nav {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  z-index: 1000;
}
#top-nav .active {
  color: red; /* Highlight the selected button */
}

/* Container for the buttons */
.button-container {
  display: flex;
  gap: 60px !important; /* Adjust horizontal spacing between buttons */
  position: absolute;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 80%; /* Adjust overall width of the button container */
}

/* Right Navigation */

#right-nav {
  position: fixed;
  top: clamp(9px, 2.5vh, 9px); /* slightly different spot */
  right: clamp(12px, 2.5vw, 24px);
  z-index: 1000;
}
/* Logged-in card (slightly larger) */
#right-nav .rn-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0e0e0e;
  border: 1px solid #272727;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
#right-nav .rn-avatar {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #404040;
  background: #111;
}
#right-nav .rn-avatar img {
  width: 110%;
  height: 100%;
  object-fit: cover;
  max-width: 220%;
  position: relative;
  left: -5%;
  scale: 128.5%;
}
#right-nav .rn-greeting {
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 1.5vw, 14px);
}
#right-nav .rn-greeting span {
  color: #ffd400;
}
#right-nav2 .rn-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#right-nav2 .rn-actions .rn-btn {
  font-size: clamp(12px, 1.5vw, 13px);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #2f2f2f;
  text-decoration: none;
}
#right-nav .rn-btn-primary {
  background: gold;
  color: #000;
  border-color: gold;
  font-weight: 800;
}
#right-nav .rn-btn-ghost {
  background: #1a1a1a;
  color: #fff;
}
.rn-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #2f2f2f;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}
.rn-btn:hover {
  transform: translateY(-1px);
}

.rn-btn-primary {
  background: gold;
  color: #000;
  border-color: gold;
  font-weight: 800;
}
.rn-btn-ghost {
  background: #1a1a1a;
  color: #fff;
}

/* === Account dropdown (inside #right-nav2) === */
.rn-menu[hidden] {
  display: none !important;
}
.rn-menu {
  position: absolute; /* positioned relative to #right-nav2 (fixed) */
  top: calc(100% + 8px); /* sits just under the rn-card */
  right: 0;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  min-width: 180px;
  padding: 8px;
  z-index: 1200;
}
.rn-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.rn-menu a:hover {
  background: #1b1b1b;
}
.rn-menu a.danger {
  color: #ff6b6b;
}

#top-nav a {
  color: white;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
}

#top-nav a:hover {
  text-decoration: none;
}
#right-nav a:hover {
  text-decoration: underline;
}
#top-nav-custom {
  text-decoration: none;
}

#top-nav-custom a:hover {
  text-decoration: underline;
}

/* Top Nav Dropdown Section */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hide dropdown menus by default */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
}

/* Dropdown menu styling */
.dropdown-menu ul {
  list-style: none;
  margin-left: -40px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.dropdown-menu li {
  color: black;
  text-transform: capitalize;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

.dropdown-menu li:hover {
  color: rgb(255, 0, 0);
  text-transform: capitalize;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

/* Bullet point style */
.dropdown-menu li::before {
  content: "- ";
  color: white;
  position: relative;
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Logo Section */
#logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.grecaptcha-badge {
  display: none;
}

img {
  max-width: 100%; /* Adjusted size */
  height: auto;
}

/* Footer Navigation */

#signup-form {
  top: 96.5%;
  margin-bottom: -33px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 200;
  position: absolute;
  margin-left: 39.4%;
  height: 41px;
  width: 321px;
}

#email-field {
  width: 288px;
  font-size: 10px;
  border: 2px solid #998b8b;
  border-radius: 5px;
  box-sizing: border-box;
  z-index: 2;
  left: 5%;
  position: relative;
}

#signup-message {
  font-size: 11px;
  font-weight: 500;
  color: black;
  z-index: 2;
}

.free-text {
  color: red;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: underline;
}

#footer-bar {
  width: 100%;
  height: 43px;
  background-color: #f2f2f2;
  z-index: -1;
  position: absolute;
  top: 95.5%;
}

#footer-nav {
  display: flex;
  justify-content: center;
  z-index: 2;
  position: absolute;
  overflow-y: hidden;
  top: 96.5%;
}

#footer-nav a {
  color: black;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 43;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 1px;
}

#footer-nav a:hover {
  text-decoration: underline;
}

#footer-socials {
  display: flex;
  position: relative;
  gap: 12px;
  align-items: center;
  justify-content: left;
  margin-top: 655px;
  margin-left: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 2px solid white;
  border-radius: 70%;
  padding: 6px;
  box-sizing: content-box;
  transition: transform 0.2s ease;
  position: relative;
}

.social-icon:hover {
  transform: scale(1.1);
}

#arrow-button {
  font-size: 21px;
  color: #333;
  left: -5%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

#arrow-button:hover {
  color: #ff4500;
}

#arrow-button {
  font-size: 24px;
  color: #333; /* Adjust to match your theme */
  margin-left: 5px;
  padding: 0;
  display: flex;
  align-items: center;
}

#arrow-button:hover {
  color: #ff4500; /* Highlight color on hover */
}

/* Read Logo */
#read-logo {
  text-align: center;
  margin-top: -28%;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: -24.5%;
  z-index: -1;
}

#read-logo img {
  height: fit-content;
  width: auto;
  max-height: 1340px;
  scale: 60%;
  position: relative;
}

/* === Pair: ManREC-style form box shell === */
.pair-form-container {
  justify-content: center;
  align-items: center;
  position: relative;
  left: 21%;
  margin-top: -28%;
}

#pair-form {
  background-color: black;
  border: 2px solid white;
  color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

/* Tabs docked like ManREC */
.pair-tab-container {
  display: flex;
  justify-content: flex-end;
  margin-top: -80px;
  position: relative;
  right: -34px;
  z-index: 2;
}
.pair-tab {
  background-color: #333;
  color: white;
  padding: 8px 16px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid white;
  border-bottom: none;
  cursor: pointer;
  margin-left: 5px;
  font-weight: bold;
}
.pair-tab:hover {
  background-color: #555;
}
.pair-active-tab {
  background-color: black;
  border-bottom: 2px solid black; /* “in front” */
  z-index: 3;
}

.pair-tab {
  position: relative;
}
.pair-tab .tab-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e02626;
  color: #fff;
  border-radius: 14px;
  padding: 0 6px;
  font-size: 15px;
  line-height: 18px;
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

/* Toolbar inside the box */
.pair-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pair-filters {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.pair-filters label {
  color: #ddd;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pair-filters select.md-select {
  background: #000;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 8px 10px;
}
.pair-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pair-quota {
  color: #aaa;
  font-size: 13px;
}

/* Buttons */
.pair-btn {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.pair-btn:hover {
  background: #222;
}
.pair-btn-primary {
  background: red;
  color: #fff;
  border-color: red;
  font-weight: bold;
}
.pair-btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Scroll area INSIDE the box */
.pair-pane {
  /* each tab content */
  display: none; /* JS will toggle */
}
.pair-scroll {
  max-height: 420px; /* make the box scroll */
  overflow-y: auto;
  padding-right: 8px; /* give room for scrollbar */
}

/* Cards (kept close to prior look but simplified) */
.pair-card {
  display: flex;
  gap: 12px;
  background: #0e0e0e;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}
.pc-left {
  flex-shrink: 0;
}
.pc-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #3a3a3a;
  background: #111;
}
.pc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-main {
  flex: 1;
  min-width: 0;
}
.pc-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.pc-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc-meta {
  color: #bdbdbd;
}
.pc-time {
  color: #9a9a9a;
  font-size: 12px;
  white-space: nowrap;
}
.pc-badge {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #444;
}
.pc-badge.paid {
  background: #1a1;
  color: #fff;
  border-color: #2a2;
}
.pc-badge.free {
  background: #222;
  color: #fff;
}
.pc-badge.fresh {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}
.pc-tags {
  display: flex;
  gap: 6px;
  margin: 6px 0;
}
.tag {
  font-size: 12px;
  background: #151515;
  border: 1px solid #2b2b2b;
  border-radius: 6px;
  padding: 2px 6px;
  color: #ddd;
}
.pc-msg {
  margin: 6px 0;
}
.pc-bio {
  margin: 6px 0;
  color: #b5b5b5;
}
.pc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.inline {
  display: inline;
}
.muted {
  color: #9a9a9a;
}
.small {
  font-size: 12px;
}

/* Optional: modal (uses your existing structure/classes) stays unchanged */

/* ===== New Post Modal ===== */

/* full-screen overlay */
.pair-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* JS sets to flex when opened */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75); /* darken */
  backdrop-filter: blur(6px); /* blur the page behind */
  z-index: 10000;
}

/* modal box */
.pair-modal__content {
  width: 90%;
  max-width: 720px;
  background: #0c0c0c;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 24px 28px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: left;
  position: relative;
}

/* title */
.pair-modal__content h3 {
  margin: 0 0 14px 0;
  text-align: center;
  font-size: 22px;
}

/* close button (X) */
.pair-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.pair-modal__close:hover {
  background: #2b2b2b;
}

/* form layout */
#newPostForm {
  margin-top: 6px;
}
#newPostForm .form-row {
  margin-bottom: 16px;
}
#newPostForm label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

/* big text area */
#newPostForm textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px;
}

/* selects */
#newPostForm select.md-select {
  width: 100%;
  background: #000;
  color: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 8px 10px;
  box-sizing: border-box;
}

/* two small inputs side-by-side */
#newPostForm .grid2 {
  display: flex;
  gap: 12px;
}
#newPostForm .grid2 > label {
  flex: 1 1 0;
  margin: 0;
}

/* submit button – reuse your pair-btn styles but ensure it looks good here */
#newPostForm .pair-btn.primary {
  display: inline-block;
  background: #e41616;
  border: 1px solid #e41616;
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
}
#newPostForm .pair-btn.primary:hover {
  background: #ff2b2b;
  border-color: #ff2b2b;
}

.pc-badge.expire {
  background: #ffe58a; /* subtle yellow */
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.toast.show {
  display: block;
  opacity: 1;
}

#burger-menu {
  display: none;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  padding: 10px;
  z-index: 999;
  position: absolute;
  top: 10px;
  left: 10px;
}

/* bottom-right help link */
#need-help-link {
  position: fixed;
  right: 16px;
  bottom: 14px;
  z-index: 1300;
  font-size: 13px;
  color: #ffd400;
  text-decoration: underline;
  cursor: pointer;
}

/*--------------------------------------------------------------------------------------MOBILE V5-------------------------------------------------------------------------------------- */
@media (max-width: 359.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 88%;
    max-width: 93%;
    margin-top: 60%;
    margin-left: 14%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 182%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 0;
    margin-top: 145px;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    left: 32%;
    top: 120.5%;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 143px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 12px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 22px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 360px) and (max-width: 374.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 88%;
    max-width: 93%;
    margin-top: 60%;
    margin-left: 14%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 182%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 1.5rem;
    margin-top: 5rem;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    margin-top: 13rem;
    position: relative;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 164px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 52px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 375px) and (max-width: 389.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 88%;
    max-width: 93%;
    margin-top: 60%;
    margin-left: 14%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 182%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 1.5rem;
    margin-top: 5rem;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    margin-top: 13rem;
    position: relative;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 164px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 52px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 390px) and (max-width: 392.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 88%;
    max-width: 93%;
    margin-top: 60%;
    margin-left: 14%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 182%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 2.5rem;
    margin-top: 5rem;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    margin-top: 13rem;
    position: relative;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 178px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 63px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 393px) and (max-width: 413.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 71%;
    max-width: 93%;
    margin-top: -110%;
    margin-left: -7%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 149%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 10.4%;
    margin-top: 145px;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    left: 33%;
    top: 120.5%;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 195px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 63px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 414px) and (max-width: 427.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 71%;
    max-width: 93%;
    margin-top: -110%;
    margin-left: -7%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 149%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 10.4%;
    margin-top: 145px;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    left: 33%;
    top: 120.5%;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 195px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 63px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .crt-video iframe {
    width: 100%;
    margin-left: 43px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}

@media (min-width: 428px) and (max-width: 479.98px) {
  #right-nav {
    display: none;
  }

  #right-nav p {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    right: 8px;
    left: 8px;
    z-index: 2000;
  }

  #right-nav .rn-card {
    scale: 77%;
    width: 71%;
    max-width: 93%;
    margin-top: -110%;
    margin-left: -7%;
  }

  .rn-info {
    min-width: 0;
    margin-left: -1%;
  }

  .rn-actions {
    margin-top: 3px;
    gap: 18px;
    scale: 59%;
    margin-left: -28%;
    width: 149%;
  }

  #top-nav a {
    display: none;
  }

  #footer-bar {
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    z-index: -1;
    position: absolute;
    top: -6px;
  }

  .social-icon {
    width: 50px;
  }

  #signup-form {
    margin-bottom: 29px;
    margin-left: 10.4%;
    margin-top: 145px;
  }
  #signup-message {
    color: white;
  }

  #footer-nav a {
    color: white;
  }

  #footer-nav {
    flex-direction: column;
    left: 33%;
    top: 120.5%;
  }

  body {
    overflow-y: scroll;
  }

  #burger-menu {
    display: block;
    top: -12px;
    left: 89%;
    padding-right: 0px;
  }

  #top-nav.mobile-active a {
    display: block !important;
    margin: 10px 0;
    font-size: 29px;
    text-align: center;
  }

  #top-nav.mobile-active {
    position: absolute;
    top: 44px;
    left: 195px;
    width: 100%;
    height: 123%;
    background-color: #414141;
    z-index: 1009;
    padding: 10px 0;
    padding-right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 2px solid black;
  }

  #top-nav.mobile-active + #right-nav a {
    display: inline-block;
  }

  #right-nav a {
    padding: 3px 11px;
    border-radius: 17px;
    display: none;
  }

  #read-logo {
    margin-top: -7px;
    margin-bottom: -38px;
    margin-right: 7px;
    position: relative;
  }

  #read-logo img {
    scale: 1.9;
    max-width: 53vw;
  }

  .readd-logo {
    width: 10px;
  }

  .crt-container {
    margin: auto;
  }

  #critique-submit-btn {
    position: static;
    transform: translateY(100%);
    margin-top: -13px;
    margin-bottom: 14px;
  }

  #footer-socials {
    display: flex;
    position: absolute;
    scale: 94%;
    gap: 25px;
    width: 259px;
    margin-top: 51px;
    margin-left: 80px;
  }

  body.nav-open #right-nav {
    display: block;
    position: absolute;
    top: 54%;
    z-index: 2000;
  }

  #need-help-link {
    bottom: 0px;
  }

  .crt-video iframe {
    width: 100%;
    margin-left: 43px;
  }

  .rn-stats {
    display: none;
  }

  .rn-greeting {
    margin-left: 0;
  }
}
