@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Exo+2:wght@300;400;600&display=swap');

:root {
  --primary: #0d0b2e;
  --secondary: #1a1650;
  --accent: #7b2ff7;
  --accent-light: #a66dff;
  --highlight: #00e5ff;
  --text: #e0e0f0;
  --text-muted: #9a9ab8;
  --card-bg: rgba(26,22,80,0.85);
  --border: rgba(123,47,247,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(123,47,247,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0,229,255,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,11,46,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.logo svg {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--highlight);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--highlight);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

main {
  position: relative;
  z-index: 1;
  margin-top: 70px;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center bottom, rgba(123,47,247,0.2) 0%, transparent 70%);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff, var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123,47,247,0.4);
}

.notices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.notice-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s;
}

.notice-card:hover {
  transform: translateY(-6px);
}

.notice-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--highlight);
}

.notice-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.game-section {
  padding: 4rem 2rem;
  text-align: center;
}

.game-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--accent-light);
}

.game-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: #000;
}

.game-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.feature-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--highlight);
  margin-bottom: 0.7rem;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  padding: 3rem 2rem;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--highlight);
}

.stat-item .label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.content-section {
  padding: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-light);
}

.content-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.content-section ul li::before {
  content: '\25C6';
  color: var(--accent-light);
  margin-right: 10px;
}

.play-note {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.play-note h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

footer {
  background: rgba(13,11,46,0.98);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

footer .responsible {
  margin-bottom: 1.5rem;
}

footer .responsible h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-bottom: 0.8rem;
}

footer .responsible a {
  color: var(--text-muted);
  margin: 0 1rem;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

footer .responsible a:hover {
  color: var(--highlight);
}

footer .copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.age-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-overlay.hidden { display: none; }

.age-box {
  background: var(--secondary);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 460px;
  width: 90%;
}

.age-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.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;
  border: none;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.age-buttons .btn-yes {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #fff;
}

.age-buttons .btn-no {
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.age-buttons button:hover {
  transform: scale(1.05);
}

.blocked-message {
  color: #ff4444;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-top: 1rem;
  display: none;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13,11,46,0.98);
    padding: 80px 2rem 2rem;
    transition: right 0.3s;
    z-index: 1050;
  }

  nav.open { right: 0; }

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav ul li a { font-size: 1.1rem; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .notices { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .features { grid-template-columns: 1fr; padding: 2rem 1.5rem; }

  .stats-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-item { flex: 0 0 45%; }

  .game-wrapper iframe { height: 400px; }

  .content-section { padding: 2rem 1.5rem; }
}
