@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;600&display=swap');

:root {
  --primary-color: #00d4ff;
  --secondary-color: #ff00aa;
  --bg-dark: #0a0a1a;
  --bg-card: #12122a;
  --text-light: #e8e8f0;
  --accent-glow: 0 0 30px rgba(0, 212, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,26,0.98) 0%, rgba(10,10,26,0.9) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 2px;
}

.logo svg {
  height: 38px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

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

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a:hover::after {
  width: 100%;
}

main {
  padding-top: 70px;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at center bottom, rgba(255, 0, 170, 0.08) 0%, transparent 60%);
  position: relative;
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--accent-glow);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(232, 232, 240, 0.8);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.badge {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge.age-badge {
  background: rgba(255, 0, 170, 0.1);
  border-color: rgba(255, 0, 170, 0.3);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--accent-glow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

.game-showcase {
  padding: 4rem 1.5rem;
  background: var(--bg-card);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.game-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.game-container iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

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

.info-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.info-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-card p {
  color: rgba(232, 232, 240, 0.75);
  font-size: 0.95rem;
}

.features-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}

.feature-icon {
  font-size: 1.5rem;
  min-width: 40px;
}

.feature-item h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-item p {
  color: rgba(232, 232, 240, 0.7);
  font-size: 0.9rem;
}

.site-footer {
  background: #050510;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  color: rgba(232, 232, 240, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.responsible-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.responsible-links a:hover {
  color: var(--secondary-color);
}

.footer-copyright {
  color: rgba(232, 232, 240, 0.4);
  font-size: 0.8rem;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-modal.hidden {
  display: none;
}

.age-modal-content {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  border: 2px solid var(--primary-color);
  box-shadow: var(--accent-glow);
}

.age-modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.age-modal-content p {
  margin-bottom: 2rem;
  color: rgba(232, 232, 240, 0.8);
}

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

.age-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn.yes {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
}

.age-btn.no {
  background: transparent;
  border: 2px solid rgba(232, 232, 240, 0.3);
  color: var(--text-light);
}

.age-btn:hover {
  transform: scale(1.05);
}

.blocked-message {
  text-align: center;
  padding: 4rem 1.5rem;
}

.blocked-message h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Page Specific Styles */
.page-header {
  padding: 6rem 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.content-section p {
  color: rgba(232, 232, 240, 0.8);
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(232, 232, 240, 0.8);
}

.content-section li {
  margin-bottom: 0.5rem;
}

.play-wrapper {
  padding: 2rem 1.5rem 4rem;
}

.game-note {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  font-size: 0.9rem;
  color: rgba(232, 232, 240, 0.8);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .main-nav a {
    display: block;
    padding: 0.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .game-container iframe {
    height: 400px;
  }

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

  .age-modal-content {
    padding: 2rem;
  }

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