* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.site-header.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

.brand img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #9cff00;
}
.nav-item.active {
  color: #9cff00;
}

.nav-item.active::after {
  width: 100%;
}
.nav-cta {
  background: #9cff00;
  color: black;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 0 0 2px #000;
  transition: 0.3s;
}

.nav-cta:hover {
  transform: scale(1.05);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  padding: 120px 80px 60px;
}

.hero-bg {transition: background-image 1s ease-in-out;
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.3)
    ),
    url("../assets/images/backgrounds/don-scene.png");

  background-size: cover;
  background-position: center;

  z-index: 1;
  transform: scale(1.06);

filter:
  brightness(0.7)
  blur(2px);
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform;
transition: transform 0.2s ease-out;

  background: rgba(156,255,0,0.15);
  filter: blur(120px);

  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 8;
  width: 50%;
}

.hero-kicker {
  color: #9cff00;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero h1 {
  font-size: 6rem;
  line-height: 0.9;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: #9cff00;
  color: black;
  box-shadow: 0 0 0 2px #000;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

.hero-character-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 4;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding-right: 60px;
}

.hero-character {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;

  will-change: transform;
  max-height: 92%;
  object-fit: contain;

  filter:
    brightness(1.05)
    contrast(1.08)
    saturate(1.05)
    drop-shadow(0 0 40px rgba(0,0,0,0.9));
}

.hero-focus-cookie {
  position: absolute;
  width: 420px;
  left: -250px;
  bottom: 200px;
  z-index: 4;
  object-fit: contain;

  filter:
    drop-shadow(0 0 45px rgba(156,255,0,0.45))
    drop-shadow(0 45px 30px rgba(0,0,0,0.85))
    drop-shadow(0 30px 55px rgba(0,0,0,0.65));

  animation: heroCookieFloat 4s ease-in-out infinite;

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}


@keyframes heroCookieFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }

}

.scene-status {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 20px;
}

#sceneName {
  font-weight: bold;
  letter-spacing: 2px;
}

.scene-dots {
  display: flex;
  gap: 10px;
}

.scene-dots div {
  width: 12px;
  height: 12px;
  border-radius: 50%;

  background: rgba(255,255,255,0.3);
}

.scene-dots .active {
  background: #9cff00;
}

.placeholder-section {
  min-height: 70vh;
  padding: 120px 80px;
}

.placeholder-section.dark {
  background: #0c0c0c;
}

.placeholder-section h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.placeholder-section p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1100px) {

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-character-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .hero-character[src*="dee-bo"] {
  transform: scale(1.18);
}


.hero-character[src*="sweetie-pie"] {
  transform: scale(1.15);
}

  .scene-status {
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links {
    display: none;
  }
}.drops-section {
  padding: 140px 80px;
  background:
    radial-gradient(circle at top, rgba(156,255,0,0.08), transparent 40%),
    #080808;
}

.section-label {
  color: #9cff00;
  letter-spacing: 3px;
  font-weight: bold;
  margin-bottom: 25px;
}

.drops-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.drops-header h1,
.drops-header h2 {
  font-size: 5rem;
  line-height: 0.95;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.drops-header p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flavor-card {
  position: relative;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  padding: 30px;

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.flavor-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255,255,255,0.25);

  background: rgba(255,255,255,0.06);
}

.heat-tag {
  display: inline-block;

  margin-bottom: 20px;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;

  background: rgba(255,255,255,0.08);
}

.cookie-image-wrap {
  position: relative;

  height: 260px;

  border-radius: 24px;

  overflow: hidden;

  margin-bottom: 25px;

  background:
    radial-gradient(circle at center,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.02));

  border: 1px solid rgba(255,255,255,0.08);
}

.cookie-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.flavor-card:hover .cookie-image {
  transform: scale(1.08);

  filter:
    saturate(1.1)
    brightness(1.05);
}

.flavor-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.flavor-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;

  margin-bottom: 30px;
}

.flavor-card button {
  width: 100%;

  border: none;

  padding: 16px;

  border-radius: 16px;

  font-weight: bold;
  cursor: pointer;

  transition: 0.3s ease;
}

.flavor-card button:hover {
  transform: scale(1.02);
}

.status-badge {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-weight: bold;
  text-align: center;
  cursor: default;
}

.don-card button {
  background: #9cff00;
  color: black;
  box-shadow: 0 0 0 2px #000;
}

.zero-card button {
  background: #00ffcc;
  color: black;
}

.girls-card button {
  background: #ff4fd8;
  color: white;
}

.debo-card button {
  background: #ff9d00;
  color: black;
}

.sweetie-card button {
  background: #ff6b9d;
  color: white;
}

.mystery-card button {
  background: white;
  color: black;
}

@media (max-width: 1200px) {

  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .drops-section {
    padding: 100px 30px;
  }

  .drops-header h1,
  .drops-header h2 {
    font-size: 3rem;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
  }
}.crew-section {
  position: relative;

  padding: 90px 80px 80px;

  background:
    radial-gradient(circle at center,
      rgba(255,255,255,0.03),
      transparent 50%),
    #050505;

  overflow: hidden;
}

.crew-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0px;
  align-items: center;
}

.crew-copy {
  position: relative;
  z-index: 2;
}

.crew-copy h2 {
  font-size: 5rem;
  line-height: 0.95;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.crew-copy p {
  max-width: 500px;

  font-size: 1.15rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.75);

  margin-bottom: 20px;
}

.crew-showcase {
  position: relative;

  min-height: 520px !important;

  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-showcase img {
  position: absolute;

  max-height: 560px;

  object-fit: contain;

  transition:
    transform 0.5s ease,
    filter 0.5s ease,
    opacity 0.5s ease;

  cursor: pointer;

  filter:
    drop-shadow(0 0 35px rgba(0,0,0,0.7));
}

.crew-showcase img:hover {
  transform: scale(1.08) translateY(-10px);

  z-index: 50;

  filter:
    drop-shadow(0 0 50px rgba(255,255,255,0.18));
}

.crew-showcase img:nth-child(1) {
  left: 10px;
  top: 90px;

  max-height: 500px;

  z-index: 8;
}

.crew-showcase img:nth-child(2) {
  left: 140px;
  top: 40px;

  max-height: 520px;

  z-index: 15;
}

.crew-showcase img:nth-child(3) {
  left: 280px;
  top: 60px;

  max-height: 620px;

  z-index: 30;
}

.crew-showcase img:nth-child(4) {
  left: 430px;
  top: 70px;

  max-height: 560px;

  z-index: 12;
}

.crew-showcase img:nth-child(5) {
  left: 540px;
  top: 10px;

  max-height: 520px;

  z-index: 25;
}

@media (max-width: 1200px) {

  .crew-layout {
    grid-template-columns: 1fr;
  }

  .crew-copy {
    text-align: center;
  }

  .crew-copy p {
    margin-inline: auto;
  }

  .crew-showcase {
    min-height: 900px;
  }
}

@media (max-width: 768px) {

  .crew-section {
    padding: 100px 30px;
  }

  .crew-copy h2 {
    font-size: 3rem;
  }

  .crew-showcase {
    min-height: 760px;
  }

  .crew-showcase img {
    max-height: 300px;
  }

  .crew-showcase img:nth-child(1) {
    left: 0;
    top: 0;
  }

  .crew-showcase img:nth-child(2) {
    left: 60px;
    top: 120px;
  }

  .crew-showcase img:nth-child(3) {
    left: 120px;
    top: 220px;
  }

  .crew-showcase img:nth-child(4) {
    left: 20px;
    top: 360px;
  }

  .crew-showcase img:nth-child(5) {
    left: 180px;
    top: 480px;
  }
}/* CLEAN CREW LAYOUT */

.crew-showcase {
  min-height: 560px !important;

  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;

  position: relative;
}

.crew-showcase a {
  display: block;
  position: relative;
  cursor: pointer;
}

.crew-showcase a img {
  cursor: pointer;
}

.crew-showcase img {
  position: relative !important;

  left: auto !important;
  top: auto !important;

  margin-left: -60px;

  max-height: 540px !important;
  width: auto;

  transition:
    transform 0.4s ease,
    filter 0.4s ease;

  z-index: 1;
}

/* Front layering */
.crew-showcase img:nth-child(1) {
  z-index: 5;
}

.crew-showcase img:nth-child(2) {
  z-index: 10;
}

.crew-showcase img:nth-child(3) {
  z-index: 20;
  max-height: 620px !important;
}

.crew-showcase img:nth-child(4) {
  z-index: 15;
}

.crew-showcase img:nth-child(5) {
  z-index: 8;
}

.crew-showcase img:hover {
  transform: translateY(-10px) scale(1.05);
}

.single-group img {
  position: relative !important;
  max-height: 620px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}.pickup-section {
  position: relative;
  min-height: 85vh;
  padding: 150px 80px;
  background:
    linear-gradient(135deg, rgba(156,255,0,0.12), transparent 35%),
    radial-gradient(circle at right, rgba(255,79,216,0.12), transparent 35%),
    #080808;
  overflow: hidden;
}

.pickup-bg-glow {
  position: absolute;
  right: -200px;
  top: 20%;
  width: 650px;
  height: 650px;
  background: rgba(156,255,0,0.12);
  filter: blur(120px);
}

.pickup-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
}

.pickup-content h2 {
  font-size: 5.5rem;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.pickup-content > p {
  max-width: 620px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.pickup-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}

.pickup-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pickup-feature {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.pickup-feature span {
  display: inline-block;
  color: #9cff00;
  font-weight: bold;
  margin-bottom: 18px;
}

.pickup-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pickup-feature p {
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pickup-section {
    padding: 100px 30px;
  }

  .pickup-content h2 {
    font-size: 3.3rem;
  }

  .pickup-buttons,
  .pickup-features {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}/* NAV HOVER UNDERLINE */

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 3px;

  background: #9cff00;
  border-radius: 999px;

  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}/* CURSOR GLOW */

.cursor-glow {
  position: fixed;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(156,255,0,0.16) 0%,
      rgba(156,255,0,0.08) 35%,
      transparent 70%
    );

  transform: translate(-50%, -50%);

  z-index: 2;

  mix-blend-mode: screen;

  transition:
    transform 0.08s linear,
    opacity 0.3s ease;
}/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;

  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader img {
  width: 220px;
  filter: drop-shadow(0 0 30px rgba(156,255,0,0.35));
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader p {
  color: #9cff00;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}/* FLAVOR MODAL */

.flavor-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 30px;
}

.flavor-modal.active {
  display: flex;
}

.flavor-modal-card {
  position: relative;
  max-width: 520px;
  width: 100%;

  padding: 45px;
  border-radius: 32px;

  background:
    radial-gradient(circle at top right, rgba(156,255,0,0.16), transparent 35%),
    #0b0b0b;

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;

  background: none;
  border: none;
  color: white;

  font-size: 2rem;
  cursor: pointer;
}

.modal-tag {
  display: inline-block;
  margin-bottom: 18px;

  color: #9cff00;
  font-weight: bold;
  letter-spacing: 2px;
}

.flavor-modal-card h2 {
  font-size: 3rem;
  margin-bottom: 18px;
}

.flavor-modal-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 30px;
}
.loader {
  animation: loaderAutoHide 0.8s ease forwards;
  animation-delay: 1.2s;
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.mobile-menu-btn {
  display: none;
  background: #9cff00;
  color: black;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .mobile-menu-btn {
    display: block;
  }

 .nav-links.mobile-open {
  display: flex;
  position: absolute;
  top: 90px;
  right: 20px;

  flex-direction: column;
  gap: 20px;

  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;

  padding: 25px 30px;

  animation: mobileMenuDrop 0.35s ease;
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

}

@media (max-width: 1100px) {

  .site-header {
    padding: 0 20px;
  }

  .brand img {
    height: 48px;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }
}
/* MOBILE HERO FINAL FIX */

@media (max-width: 1100px) {
  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding: 170px 30px 60px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;

    text-align: center !important;
  }

  .hero-content {
    width: 100% !important;
    margin-top: 0 !important;
    z-index: 10 !important;
  }

  .hero h1 {
    font-size: 3rem !important;
    line-height: 0.95 !important;
    margin-top: 0 !important;
  }

  .hero-character-wrap {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 35px !important;
  }

  .hero-character {
    max-height: 420px !important;
  }
}
/* MOBILE HERO TEXT OPTIMIZATION */

@media (max-width: 1100px) {

  .hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.5rem) !important;
    line-height: 0.9 !important;
    margin-bottom: 18px !important;
  }

  .hero-copy {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
    margin-inline: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .scene-status {
    bottom: 18px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100%;
    justify-content: center;
  }
}
/* MOBILE HERO TEXT OPTIMIZATION */

@media (max-width: 1100px) {
  .hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.5rem) !important;
    line-height: 0.9 !important;
    margin-bottom: 18px !important;
  }

  .hero-copy {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 95% !important;
    margin-inline: auto;
  }
}
/* HERO PARTICLES */

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(156,255,0,0.45);

  box-shadow:
    0 0 12px rgba(156,255,0,0.8);

  animation: floatParticle linear infinite;
}

.hero-particles span:nth-child(1) {
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
  left: 30%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
  left: 55%;
  animation-duration: 14s;
  animation-delay: 1s;
}

.hero-particles span:nth-child(4) {
  left: 75%;
  animation-duration: 20s;
  animation-delay: 4s;
}

.hero-particles span:nth-child(5) {
  left: 90%;
  animation-duration: 16s;
  animation-delay: 3s;
}

@keyframes floatParticle {
  from {
    transform:
      translateY(110vh)
      scale(0.6);

    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  to {
    transform:
      translateY(-10vh)
      scale(1.2);

    opacity: 0;
  }
}
@media (max-width: 1100px) {

  .crew-showcase {
    min-height: 300px !important;
    margin-top: -40px;
  }

  .crew-showcase img {
    margin-left: 0;
  }

  .single-group img {
    max-height: 520px !important;
  }

}
/* HERO CHARACTER FLOAT */

@media (min-width: 1101px) {

  .hero-character {
    animation: heroFloat 4s ease-in-out infinite;
  }

  @keyframes heroFloat {

    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-12px);
    }

    100% {
      transform: translateY(0px);
    }

  }

}
/* PREMIUM FLAVOR CARD GLOW */

.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top,
      rgba(156,255,0,0.16),
      transparent 45%
    );

  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.flavor-card:hover::before {
  opacity: 1;
}
/* LIVE DROP INDICATOR */

.drop-countdown::before {
  content: "";

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #9cff00;

  box-shadow:
    0 0 12px #9cff00;

  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.55;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }

}
/* DROP COUNTDOWN FIX */

.drop-countdown {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 28px;

  padding: 14px 22px;

  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  font-weight: bold;
  letter-spacing: 1px;
}

#countdownTimer {
  color: #9cff00;
  min-width: 90px;
}
@media (max-width: 1100px) {

  .hero-focus-cookie {

    width: 240px;

    left: 50%;
    bottom: 40px;

    transform: translateX(-50%);

  }

}

/* INTERIOR PAGE POLISH */

#menu,
#characters,
#story,
#contact,
#frozen {
  padding-top: 170px;
}

#reserve,
#waitlist,
#frozen-waitlist {
  min-height: auto;
}

#menu .drops-header,
#characters .drops-header,
#story .drops-header,
#contact .drops-header,
#frozen .drops-header {
  margin-bottom: 55px;
}

#menu .flavor-card,
#characters .flavor-card,
#story .flavor-card,
#contact .pickup-feature,
#frozen .flavor-card {
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
}

#characters .cookie-image-wrap {
  height: 360px;
  background:
    radial-gradient(circle at top,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.03) 58%),
    rgba(0,0,0,0.2);
}

#characters .cookie-image {
  object-fit: contain;
  padding: 18px 18px 0;
}

#story .cookie-image-wrap {
  height: 300px;
}

#story .cookie-image {
  object-fit: cover;
}

#waitlist form.flavor-card {
  max-width: 680px;
  margin-bottom: 40px;
  padding: 36px;
}

#waitlist label {
  display: inline-block;
  color: rgba(255,255,255,0.82);
  font-weight: bold;
  margin-bottom: 6px;
}

#waitlist label span {
  color: rgba(255,255,255,0.48);
  font-size: 0.78rem;
  font-weight: normal;
  margin-left: 6px;
}

#waitlist input,
#waitlist select,
#waitlist textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(0,0,0,0.42);
  color: white;
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

#waitlist input:focus,
#waitlist select:focus,
#waitlist textarea:focus {
  border-color: rgba(156,255,0,0.75);
  background: rgba(0,0,0,0.58);
  box-shadow: 0 0 0 4px rgba(156,255,0,0.12);
}

#waitlist textarea {
  resize: vertical;
  min-height: 150px;
}

#waitlist form.flavor-card > p {
  margin-bottom: 18px;
}

#waitlist form.flavor-card button[type="submit"] {
  margin-top: 8px;
}

#waitlist .waitlist-success {
  display: none;
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(156,255,0,0.1);
  border: 1px solid rgba(156,255,0,0.35);
  color: #9cff00;
  font-weight: bold;
  line-height: 1.5;
}

#waitlist .waitlist-success.active {
  display: block;
}

#waitlist .pickup-buttons {
  margin-bottom: 0;
}

@media (max-width: 900px) {

  #menu,
  #characters,
  #story,
  #contact,
  #frozen {
    padding-top: 135px;
  }

  #characters .cookie-image-wrap,
  #story .cookie-image-wrap {
    height: 300px;
  }

  #waitlist form.flavor-card {
    max-width: 100%;
  }

}

/* FOOTER */

.site-footer {
  padding: 42px 80px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,0.72);
}

.footer-brand {
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  font-size: 0.92rem;
}

.site-footer a {
  color: #9cff00;
  font-weight: bold;
}

@media (max-width: 900px) {

  .site-footer {
    padding: 36px 30px;
    flex-direction: column;
    text-align: center;
  }

  .footer-notes {
    flex-direction: column;
    gap: 8px;
  }

}
