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

:root {
  --primary: #6c2bd9;
  --primary-light: #9b59f0;
  --accent: #00e5ff;
  --dark: #0a0a1a;
  --darker: #050510;
  --card-bg: rgba(108, 43, 217, 0.08);
  --text: #e0d8f0;
  --text-muted: #9a8cbf;
  --gradient-1: linear-gradient(135deg, #6c2bd9, #00e5ff);
  --gradient-2: linear-gradient(180deg, #0a0a1a, #1a0a3a);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-light); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 43, 217, 0.2);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo svg { width: 36px; height: 36px; vertical-align: middle; margin-right: 8px; }

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

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

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

main { padding-top: 70px; }

.hero-section {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 43, 217, 0.15), transparent 70%);
  top: -100px; right: -200px;
}

.hero-section h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.btn-glow {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-1);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(108, 43, 217, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.5);
  color: #fff;
}

.notices-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(108, 43, 217, 0.06);
  border-top: 1px solid rgba(108, 43, 217, 0.15);
  border-bottom: 1px solid rgba(108, 43, 217, 0.15);
  flex-wrap: wrap;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.notice-item .icon { font-size: 1.3rem; }

.game-section {
  padding: 4rem 2rem;
  text-align: center;
}

.game-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.game-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(108, 43, 217, 0.3);
  box-shadow: 0 0 60px rgba(108, 43, 217, 0.15);
}

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

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(108, 43, 217, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.feature-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--primary-light);
}

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

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

.info-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-light);
}

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

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(108, 43, 217, 0.2);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
}

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

.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }

.footer-responsible {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 43, 217, 0.1);
}

.footer-responsible p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.footer-responsible a { margin: 0 0.5rem; }

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 16, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-box {
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
}

.age-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

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

.age-buttons button {
  padding: 12px 36px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s;
}

.btn-yes {
  background: var(--gradient-1);
  color: #fff;
}

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

.age-buttons button:hover { transform: scale(1.06); }

.blocked-msg {
  color: #ff4757;
  font-weight: 700;
  margin-top: 1rem;
  display: none;
}

/* Content page styles */
.page-banner {
  padding: 6rem 2rem 3rem;
  text-align: center;
  background: var(--gradient-2);
}

.page-banner h1 {
  font-size: 2.6rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.content-section h2 {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin: 2rem 0 1rem;
}

.content-section p, .content-section li {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.content-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5, 5, 16, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(108, 43, 217, 0.2);
  }

  .nav-links.open { display: flex; }

  .hero-section h1 { font-size: 2rem; }
  .hero-section p { font-size: 1rem; }

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

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

  .notices-bar { flex-direction: column; align-items: center; gap: 1rem; }
}
