:root {
  --ink-1000: #0b0a10;
  --ink-900: #151822;
  --ink-700: #2a2e3e;
  --ink-400: #6a6f8b;
  --ink-200: #a9aec8;
  --paper: #0e1118;

  --violet-core: #8e5bff;
  --teal-neon: #1ef0c1;
  --gold: #f3c64f;
  --orange-fire: #ff8a1e;
  --sky-ice: #6dd8ff;
  --pink-pop: #ff3aa8;
  --amber-soft: #ffd978;

  --amethyst: #a169ff;
  --sapphire: #2ec1e6;
  --topaz: #ff8f28;
  --citrine: #ffe082;
  --ruby: #ff5f39;
  --diamond: #b9f3ff;
  --emerald: #24d2b4;

  --gradient-gold: linear-gradient(
    180deg,
    #ffd978 0%,
    #f3c64f 55%,
    #ff8a1e 100%
  );
  --gradient-violet: linear-gradient(135deg, #8e5bff 0%, #c45bff 100%);
  --gradient-aqua: linear-gradient(135deg, #6dd8ff 0%, #1ef0c1 100%);

  --font-logo: "Bungee Shade", system-ui, sans-serif;
  --font-display: "Bangers", system-ui, sans-serif;
  --font-heading: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-numeric: "Changa One", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink-200);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: var(--ink-900);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 var(--orange-fire);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 28px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(2px 2px 0 var(--violet-core));
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-neon);
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.nav-link:hover {
  color: var(--amber-soft);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--gradient-aqua);
  color: var(--ink-1000);
  box-shadow: 0 4px 0 var(--emerald);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--ink-1000) 0%,
    var(--ink-900) 50%,
    #1a1530 100%
  );
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 10, 16, 0.7);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(142, 91, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 240, 193, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 3px 3px 0 var(--orange-fire), 5px 5px 0 var(--violet-core);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--ink-200);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-gold);
  color: var(--ink-1000);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 60% / 45%;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 0 var(--orange-fire);
  transition: all 0.14s cubic-bezier(0.2, 0.9, 0.2, 1.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 0 var(--orange-fire);
}

.btn-primary:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 6px 0 var(--orange-fire);
}

.gem-display {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
  animation: float 4s ease-in-out infinite;
}

.floating-gem {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.gem-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.gem-2 {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
}

.gem-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 1s;
}

.gem-4 {
  bottom: 15%;
  right: 25%;
  animation-delay: 1.5s;
}

.gem-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  animation-delay: 0.7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.age-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numeric);
  font-size: 28px;
  color: var(--ink-1000);
  font-weight: bold;
  box-shadow: 0 8px 0 var(--orange-fire);
  z-index: 10;
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 0 var(--violet-core);
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--ink-200);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ink-900) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.mystical-frame {
  width: 100%;
  aspect-ratio: 1;
  background: transparent;
  border-radius: 45% / 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gems-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mystical-gem {
  position: absolute;
  width: 60px;
  height: 60px;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.mystical-gem.gem-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.mystical-gem.gem-2 {
  top: 35%;
  right: 20%;
  animation-delay: 0.5s;
}

.mystical-gem.gem-3 {
  bottom: 35%;
  left: 20%;
  animation-delay: 1s;
}

.mystical-gem.gem-4 {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

.mystical-gem.gem-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  animation-delay: 0.7s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.game-zone {
  padding: 6rem 0;
  background: var(--ink-1000);
}

.game-preview {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.game-frame {
  background: var(--ink-900);
  border: 6px solid var(--gold);
  border-radius: 35% / 30%;
  padding: 2rem;
  box-shadow: 0 0 30px rgba(243, 198, 79, 0.4), 0 10px 0 var(--orange-fire);
}

.game-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ink-700) 0%, var(--ink-900) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.game-preview-image:hover {
  transform: scale(1.05);
}

.game-info h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--teal-neon);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  font-size: 17px;
  padding: 0.8rem 0;
  color: var(--ink-200);
  border-bottom: 1px solid var(--ink-700);
}

.btn-arcade {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-aqua);
  color: var(--ink-1000);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50% / 45%;
  border: 3px solid var(--teal-neon);
  box-shadow: 0 10px 0 var(--emerald);
  transition: all 0.14s cubic-bezier(0.2, 0.9, 0.2, 1.3);
}

.btn-arcade:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 0 var(--emerald);
}

.btn-arcade:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 6px 0 var(--emerald);
}

.why-choose {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--ink-1000) 0%, var(--ink-900) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--ink-900);
  padding: 2rem;
  border-radius: 35% / 30%;
  border: 3px solid var(--violet-core);
  text-align: center;
  transition: all 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(142, 91, 255, 0.5);
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px currentColor);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-200);
}

.faq-section {
  padding: 6rem 0;
  background: var(--paper);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--ink-900);
  margin-bottom: 1.5rem;
  border-radius: 30px;
  border: 3px solid var(--ink-700);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--teal-neon);
  box-shadow: 0 0 20px rgba(30, 240, 193, 0.3);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-200);
  padding: 0 2rem 1.5rem;
}

.footer {
  background: var(--ink-1000);
  border-top: 4px solid var(--gold);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-400);
  font-style: italic;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--teal-neon);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--ink-200);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--amber-soft);
}

.footer-section p {
  font-size: 15px;
  color: var(--ink-200);
  margin-bottom: 0.5rem;
}

.support-logos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-link {
  color: var(--ink-200);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.support-link:hover {
  color: var(--teal-neon);
}

.disclaimer {
  background: var(--ink-900);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--ink-700);
  margin-bottom: 2rem;
}

.disclaimer h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.disclaimer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-200);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-700);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.age-badge-footer {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-numeric);
  font-size: 24px;
  color: var(--ink-1000);
  font-weight: bold;
  box-shadow: 0 6px 0 var(--orange-fire);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--ink-400);
}

.help-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.help-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--ink-900);
  border-radius: 15px;
  border: 2px solid var(--ink-700);
  transition: all 0.3s ease;
  min-width: 100px;
  min-height: 60px;
}

.help-logo-link:hover {
  transform: translateY(-5px);
  border-color: var(--teal-neon);
  box-shadow: 0 0 20px rgba(30, 240, 193, 0.3);
}

.help-logo {
  max-width: 120px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.help-logo-link:hover .help-logo {
  filter: brightness(1.3);
}

.help-logo--age {
  width: 80px;
  height: 40px;
}

.help-logo-link--age {
  background: transparent;
  border: none;
  padding: 0;
  min-width: auto;
  min-height: auto;
}

.help-logo-link--age:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--ink-900);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    border-top: 3px solid var(--gold);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 48px;
  }

  .gem-display {
    height: 300px;
  }

  .about-content,
  .game-preview {
    grid-template-columns: 1fr;
  }

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

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

  .help-logos {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .help-logos {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .help-logo-link {
    min-width: 80px;
    min-height: 50px;
    padding: 0.8rem;
  }

  .help-logo {
    max-width: 100px;
    max-height: 40px;
  }

  .help-logo--age {
    width: 70px;
    height: 35px;
  }
}

/* Age Verification Popup Styles */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.age-popup.show {
  display: flex;
  animation: popupShow 0.3s ease-out;
}

@keyframes popupShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.age-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 10, 16, 0.95);
  backdrop-filter: blur(10px);
}

.age-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
  border: 4px solid var(--gold);
  border-radius: 25px;
  padding: 3rem;
  max-width: 500px;
  width: calc(100% - 40px);
  max-height: 90vh;
  text-align: center;
  box-shadow: 0 0 50px rgba(243, 198, 79, 0.3);
  animation: popupFadeIn 0.3s ease-out;
  overflow-y: auto;
  z-index: 10001;
}

.age-popup-header {
  margin-bottom: 2rem;
}

.age-popup-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  text-shadow: 2px 2px 0 var(--violet-core);
  margin-bottom: 1rem;
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-family: var(--font-numeric);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--violet-core), 0 0 20px rgba(243, 198, 79, 0.5);
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange-fire) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 4px solid var(--gold);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 0 30px rgba(243, 198, 79, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.age-popup-body {
  margin-bottom: 2.5rem;
}

.age-popup-body p {
  font-size: 18px;
  color: var(--ink-200);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.age-popup-body p:last-child {
  margin-bottom: 0;
  color: var(--teal-neon);
  font-weight: 600;
}

.age-popup-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-age-accept,
.btn-age-decline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  pointer-events: auto;
  z-index: 10002;
  position: relative;
}

.btn-age-accept {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--teal-neon) 100%);
  color: var(--ink-1000);
  border: 2px solid var(--gold);
}

.btn-age-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(36, 210, 180, 0.4);
}

.btn-age-decline {
  background: linear-gradient(135deg, var(--ruby) 0%, var(--orange-fire) 100%);
  color: white;
  border: 2px solid var(--ruby);
}

.btn-age-decline:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 95, 57, 0.4);
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(243, 198, 79, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(243, 198, 79, 0.6);
  }
}

/* Responsive popup */
@media (max-width: 768px) {
  .age-popup {
    padding: 10px;
  }

  .age-popup-content {
    padding: 2rem;
    max-height: 95vh;
    margin: 0;
  }

  .age-popup-header h2 {
    font-size: 24px;
  }

  .age-icon {
    font-size: 3rem;
    width: 100px;
    height: 100px;
  }

  .age-popup-body p {
    font-size: 16px;
  }

  .age-popup-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-age-accept,
  .btn-age-decline {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .age-popup {
    padding: 5px;
  }

  .age-popup-content {
    padding: 1.5rem;
    max-height: 98vh;
  }

  .age-popup-header h2 {
    font-size: 20px;
  }

  .age-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
  }

  .age-popup-body p {
    font-size: 14px;
  }
}
