/* 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;
}
/* 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;
}

.grecaptcha-badge {
  display: none;
}

/* 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;
}

/* Logo Section */
#logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%; /* Adjusted size */
  height: auto;
}

.shop-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.shop-item {
  text-align: center;
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.shop-item:hover {
  transform: scale(1.05);
}

.shop-thumb {
  width: 250px;
  height: auto;
  border-radius: 10px;
}

.shop-title {
  margin-top: 15px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.shop-detail-button {
  margin-top: 10px;
  padding: 8px 14px;
  font-size: 13px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.shop-detail-button:hover {
  background-color: #ff4d4d;
  transform: scale(1.05);
}

#shop-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.shop-popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.shop-popup-content h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: black;
}

.shop-popup-content p {
  margin-bottom: 10px;
  color: #333;
}

.shop-item-disabled {
  pointer-events: none; /* Entire box unclickable */
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.6;
}

.shop-item-disabled .shop-thumb {
  /* Optional: subtle extra dim without inline styles */
  opacity: 0.9;
}

.popup-buy-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: red;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.popup-buy-button:hover {
  background-color: #ff4d4d;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
}

.close-popup:hover {
  color: black;
}

#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 Navigation
*Email and Sign-Up Message */

#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 Text*/
#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: 148px;
  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; /* Highlight color on hover */
}

/* Dropdown container */
.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;
}

/* Main Content Layout */
#main-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 20px; /* Adjusted padding to move boxes higher */
}

/* Read Logo */
#read-logo {
  text-align: center;
  margin-top: -500px;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
}

#read-logo img {
  height: fit-content;
  width: auto;
  max-height: 1340px;
  scale: 60%;
  position: relative;
}

#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 */
}

#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;
}

.shop-wrapper {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 16px;
  margin-top: -545px;
}

/*--------------------------------------------------------------------------------------MOBILE V6-------------------------------------------------------------------------------------- */
@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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 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;
    color: red;
  }

  #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;
  }

  .shop-wrapper {
    margin-top: 0;
  }
}
