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

:root {
  --primary-gradient: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  --accent-color: #ff6b35;
  --secondary-accent: #9b59b6;
  --text-light: #f5f5f5;
  --text-muted: #a8a8a8;
  --card-bg: rgba(45, 27, 78, 0.85);
  --border-glow: rgba(255, 107, 53, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 10, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glow);
}

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

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

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

.nav-desktop a:hover {
  color: var(--accent-color);
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(26, 10, 46, 0.98);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--border-glow);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
}

main {
  padding-top: 80px;
}

.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
}

.hero-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-section p {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-icon {
  font-size: 1.2rem;
}

.game-embed-section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-embed-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.game-container {
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
  border: 2px solid var(--border-glow);
}

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

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

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.content-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-align: center;
}

.content-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--secondary-accent);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

.site-footer {
  background: rgba(10, 5, 20, 0.9);
  border-top: 1px solid var(--border-glow);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

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

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

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

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

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

.age-modal-content p {
  margin-bottom: 2rem;
  color: var(--text-muted);
}

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

.age-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn.yes {
  background: var(--accent-color);
  color: #fff;
}

.age-btn.yes:hover {
  background: #ff8555;
  transform: scale(1.05);
}

.age-btn.no {
  background: transparent;
  border: 2px solid var(--text-muted);
  color: var(--text-muted);
}

.age-btn.no:hover {
  border-color: #ff4444;
  color: #ff4444;
}

.play-note {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.play-note p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .game-container iframe {
    height: 400px;
  }
  
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .age-buttons {
    flex-direction: column;
  }
  
  .content-section h1 {
    font-size: 1.8rem;
  }
}
