* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-purple: #6a0dad;
  --neon-cyan: #00ffff;
  --electric-blue: #0066ff;
  --dark-void: #0d0d1a;
  --darker-void: #050508;
  --card-dark: #1a1a2e;
  --text-light: #f0f0f5;
  --text-muted: #9d9db0;
  --accent-pink: #ff00ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--darker-void);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

.section-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Age Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(15px);
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background: linear-gradient(135deg, var(--card-dark), var(--dark-void));
  border: 3px solid var(--neon-cyan);
  border-radius: 15px;
  padding: 50px 45px;
  max-width: 580px;
  text-align: center;
  box-shadow: 0 0 80px rgba(0, 255, 255, 0.5);
  animation: modalGlow 3s ease-in-out infinite;
}

@keyframes modalGlow {
  0%, 100% { box-shadow: 0 0 80px rgba(0, 255, 255, 0.5); }
  50% { box-shadow: 0 0 120px rgba(0, 255, 255, 0.8); }
}

.modal-icon {
  font-size: 100px;
  margin-bottom: 25px;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.modal-title {
  font-family: 'Audiowide', cursive;
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 3px;
}

.modal-message,
.modal-requirement,
.modal-notice {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.modal-requirement {
  font-size: 20px !important;
  color: var(--text-light) !important;
  font-weight: 500;
}

.modal-notice {
  color: var(--accent-pink) !important;
  font-weight: 600;
}

.modal-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  justify-content: center;
}

.modal-btn {
  padding: 17px 40px;
  font-size: 19px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Exo 2', sans-serif;
}

.accept-btn {
  background: linear-gradient(135deg, var(--deep-purple), var(--electric-blue));
  color: white;
  box-shadow: 0 0 30px rgba(106, 13, 173, 0.5);
}

.accept-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(106, 13, 173, 0.8);
}

.decline-btn {
  background: transparent;
  border: 2px solid var(--text-muted);
  color: var(--text-muted);
}

.decline-btn:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

/* Header */
.site-header {
  background: var(--card-dark);
  border-bottom: 2px solid var(--neon-cyan);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 255, 255, 0.2);
}

.header-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.logo-glyph {
  font-size: 38px;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
}

.logo-title {
  font-family: 'Audiowide', cursive;
  font-size: 30px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--deep-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Menu Button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-bar {
  width: 30px;
  height: 3px;
  background: var(--neon-cyan);
  transition: all 0.3s;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.menu-btn.active .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.site-nav {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

/* Hero Zone */
.hero-zone {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--electric-blue) 100%);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.15) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-wrapper {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Audiowide', cursive;
  font-size: 68px;
  margin-bottom: 25px;
  letter-spacing: 5px;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.hero-text {
  font-size: 23px;
  margin-bottom: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: 20px 60px;
  background: white;
  color: var(--deep-purple);
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* Intro Zone */
.intro-zone {
  padding: 95px 0;
  background: var(--darker-void);
}

.intro-header {
  text-align: center;
  margin-bottom: 65px;
}

.intro-header h2 {
  font-family: 'Audiowide', cursive;
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 3px;
}

.intro-header p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 850px;
  margin: 0 auto;
}

.info-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.tile {
  background: var(--card-dark);
  border: 2px solid var(--deep-purple);
  border-radius: 12px;
  padding: 45px;
  transition: all 0.3s;
}

.tile:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
}

.tile-icon {
  font-size: 75px;
  display: block;
  margin-bottom: 25px;
}

.tile h3 {
  font-family: 'Audiowide', cursive;
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.tile p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Gaming Zone */
.gaming-zone {
  padding: 95px 0;
  background: var(--dark-void);
}

.section-title {
  font-family: 'Audiowide', cursive;
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 55px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.game-wrapper {
  border: 4px solid var(--neon-cyan);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
}

.game-iframe {
  width: 100%;
  height: 770px;
  border: none;
  display: block;
}

/* Benefits Zone */
.benefits-zone {
  padding: 95px 0;
  background: var(--darker-void);
}

.benefits-list {
  display: grid;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-entry {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: var(--card-dark);
  padding: 35px;
  border-radius: 12px;
  border-left: 5px solid var(--electric-blue);
  transition: all 0.3s;
}

.benefit-entry:hover {
  border-left-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.benefit-marker {
  font-size: 40px;
  color: var(--neon-cyan);
  font-weight: 900;
  line-height: 1;
}

.benefit-text h4 {
  font-family: 'Audiowide', cursive;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.benefit-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Notice Zone */
.notice-zone {
  padding: 95px 0;
  background: var(--dark-void);
}

.notice-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-dark);
  border: 3px solid var(--accent-pink);
  border-radius: 15px;
  padding: 50px;
}

.notice-container h3 {
  font-family: 'Audiowide', cursive;
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--accent-pink);
  text-shadow: 0 0 20px var(--accent-pink);
  letter-spacing: 2px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.notice-card {
  background: var(--darker-void);
  padding: 25px;
  border-radius: 10px;
  border: 2px solid var(--deep-purple);
}

.notice-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--neon-cyan);
}

.notice-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Page Banner */
.page-banner {
  background: var(--card-dark);
  padding: 75px 0;
  text-align: center;
  border-bottom: 2px solid var(--neon-cyan);
}

.page-banner h1 {
  font-family: 'Audiowide', cursive;
  font-size: 60px;
  margin-bottom: 18px;
  color: var(--neon-cyan);
  text-shadow: 0 0 25px var(--neon-cyan);
  letter-spacing: 4px;
}

.banner-desc {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* Play Section */
.play-section {
  padding: 75px 0;
  background: var(--darker-void);
}

.play-guide {
  background: var(--card-dark);
  border: 2px solid var(--electric-blue);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 50px;
}

.play-guide h3 {
  font-family: 'Audiowide', cursive;
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}

.guide-list {
  list-style: none;
}

.guide-list li {
  padding: 13px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-muted);
  font-size: 16px;
}

.guide-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-size: 20px;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.play-container {
  border: 4px solid var(--neon-cyan);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
}

/* Legal Zone */
.legal-zone {
  padding: 75px 0;
  background: var(--darker-void);
}

.legal-content {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--card-dark);
  padding: 60px;
  border-radius: 12px;
  border: 2px solid var(--electric-blue);
}

.legal-date {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 45px;
  font-size: 15px;
}

.legal-content h2 {
  font-family: 'Audiowide', cursive;
  font-size: 30px;
  margin-top: 45px;
  margin-bottom: 18px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 16px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 40px;
}

.legal-content li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.legal-content a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s;
}

.legal-content a:hover {
  color: var(--accent-pink);
  text-shadow: 0 0 10px var(--accent-pink);
}

.critical-notice {
  background: var(--darker-void);
  border: 3px solid var(--accent-pink);
  border-radius: 10px;
  padding: 35px;
  margin: 40px 0;
}

.critical-notice h2 {
  margin-top: 0 !important;
  color: var(--accent-pink) !important;
  text-shadow: 0 0 20px var(--accent-pink) !important;
}

/* Footer */
.site-footer {
  background: var(--card-dark);
  border-top: 2px solid var(--neon-cyan);
  padding: 65px 0 40px;
  box-shadow: 0 -5px 30px rgba(0, 255, 255, 0.2);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 15px;
}

.footer-col h4 {
  font-family: 'Audiowide', cursive;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-menu a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid var(--dark-void);
  color: var(--text-muted);
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--card-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 35px 35px;
    gap: 25px;
    transition: right 0.4s;
    border-left: 2px solid var(--neon-cyan);
    box-shadow: -10px 0 50px rgba(0, 255, 255, 0.3);
  }

  .site-nav.visible {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 20px;
  }

  .hero-zone {
    padding: 75px 0;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-text {
    font-size: 19px;
  }

  .intro-header h2,
  .section-title {
    font-size: 38px;
  }

  .info-tiles {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    gap: 20px;
  }

  .benefit-entry {
    flex-direction: column;
    gap: 15px;
  }

  .game-iframe {
    height: 570px;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 40px 25px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 20px;
    padding: 40px 25px;
  }

  .modal-title {
    font-size: 32px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 22px;
  }

  .logo-glyph {
    font-size: 28px;
  }

  .hero-title {
    font-size: 34px;
  }

  .page-banner h1 {
    font-size: 42px;
  }

  .game-iframe {
    height: 470px;
  }
}
