@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Outfit:wght@400;500;600&display=swap');

:root {
  --bg-dark: #1a1a2e;
  --bg-mid: #16213e;
  --bg-light: #0f3460;
  --coral: #e94560;
  --coral-light: #ff6b81;
  --coral-dark: #c73e54;
  --orange: #f39c12;
  --white: #fefefe;
  --gray-light: #b8c5d6;
  --border-coral: rgba(233, 69, 96, 0.25);
  --glow-coral: rgba(233, 69, 96, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.7;
}

.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bg-shapes::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.bg-shapes::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.06) 0%, transparent 50%);
  border-radius: 50%;
}

.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-coral);
  z-index: 1000;
  padding: 0 2rem;
}

.header-row {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: 1px;
}

.menu-trigger {
  display: none;
  background: none;
  border: 1px solid var(--coral);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--coral);
  margin: 4px 0;
  transition: 0.3s;
}

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

.nav-menu a {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--coral);
}

.body-content {
  padding-top: 72px;
}

.fun-hero {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-text-area h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text-area h1 .pop {
  color: var(--coral);
}

.hero-text-area p {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.fun-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fun-badge {
  background: var(--bg-mid);
  border: 1px solid var(--border-coral);
  padding: 0.7rem 1.3rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.play-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s;
  box-shadow: 0 8px 25px var(--glow-coral);
}

.play-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px var(--glow-coral);
}

.game-showcase-area {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.game-box {
  background: var(--bg-mid);
  border: 2px solid var(--border-coral);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-area {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
}

.game-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.features-zone {
  background: var(--bg-mid);
  padding: 5rem 2rem;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-tile {
  background: var(--bg-dark);
  border: 1px solid var(--border-coral);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: 0.4s;
}

.feature-tile:hover {
  border-color: var(--coral);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tile-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-tile h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.feature-tile p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.about-zone {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-zone h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 1.5rem;
}

.about-zone p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.page-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-coral);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: var(--coral);
}

.help-area {
  border-top: 1px solid var(--border-coral);
  padding-top: 2rem;
  text-align: center;
}

.help-area h4 {
  color: var(--coral);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.help-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.help-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-coral);
  border-radius: 25px;
  transition: 0.3s;
}

.help-links a:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.copy-text {
  color: var(--gray-light);
  font-size: 0.85rem;
  text-align: center;
}

.age-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.age-box {
  background: var(--bg-mid);
  border: 2px solid var(--coral);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 20px 60px var(--glow-coral);
}

.age-box h2 {
  font-family: 'Nunito', sans-serif;
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.age-box p {
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.age-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-yes, .btn-no {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-yes {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white;
}

.btn-no {
  background: transparent;
  border: 1px solid var(--gray-light);
  color: var(--gray-light);
}

.btn-yes:hover, .btn-no:hover {
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

.inner-page {
  padding: 100px 2rem 4rem;
  max-width: 950px;
  margin: 0 auto;
}

.inner-page h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 2rem;
}

.inner-page h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.inner-page p, .inner-page li {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.inner-page ul {
  padding-left: 1.5rem;
}

.info-box {
  background: var(--bg-mid);
  border: 1px solid var(--border-coral);
  border-radius: 14px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box h3 {
  color: var(--coral);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .menu-trigger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateY(-150%);
    transition: 0.4s;
    border-bottom: 1px solid var(--border-coral);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem;
    text-align: center;
  }

  .fun-badges {
    flex-direction: column;
    align-items: center;
  }

  .age-actions {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
