@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

:root {
  --primary: #0d1b2a;
  --secondary: #1b2838;
  --accent: #00e5ff;
  --accent2: #7c4dff;
  --text: #e0e0e0;
  --white: #ffffff;
  --gradient1: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0d1b2a 100%);
  --gradient-accent: linear-gradient(90deg, #00e5ff, #7c4dff);
}

* { 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;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.logo svg {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-family: 'Exo 2', sans-serif;
}

.nav-links a:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s, opacity 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); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 2rem 60px;
  background: var(--gradient1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.08) 0%, transparent 70%);
  bottom: 5%;
  right: -8%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 2rem;
  color: rgba(224, 224, 224, 0.85);
  position: relative;
  z-index: 1;
}

.btn-glow {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient-accent);
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4), 0 0 60px rgba(124, 77, 255, 0.2);
  transform: translateY(-2px);
}

/* Notices */
.notices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 3rem;
  background: var(--secondary);
}

.notice-card {
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.notice-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.notice-card .icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.notice-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.notice-card p {
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.7);
}

/* Game Section */
.game-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--primary);
}

.game-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.game-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.08);
}

.game-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  padding: 5rem 3rem;
  background: var(--secondary);
}

.feature-box {
  padding: 2.5rem;
  background: rgba(124, 77, 255, 0.05);
  border-radius: 16px;
  border-left: 4px solid var(--accent2);
}

.feature-box h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent2);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.feature-box p {
  color: rgba(224, 224, 224, 0.75);
  font-size: 0.95rem;
}

/* Content Section */
.content-block {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.content-block p {
  margin-bottom: 1rem;
  color: rgba(224, 224, 224, 0.8);
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent2); }

.site-footer p {
  color: rgba(224, 224, 224, 0.5);
  font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-gate-box {
  background: var(--secondary);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.15);
}

.age-gate-box h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  margin-bottom: 1rem;
}

.age-gate-box p {
  margin-bottom: 2rem;
  color: var(--text);
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-buttons button {
  padding: 12px 36px;
  border: none;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.age-buttons .btn-yes {
  background: var(--gradient-accent);
  color: var(--primary);
}

.age-buttons .btn-no {
  background: transparent;
  border: 2px solid rgba(224, 224, 224, 0.3);
  color: var(--text);
}

.age-buttons button:hover { transform: scale(1.05); }

/* Page content */
.page-content {
  padding: 120px 3rem 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.page-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--accent2);
}

.page-content p, .page-content li {
  margin-bottom: 0.8rem;
  color: rgba(224, 224, 224, 0.8);
  font-size: 1.02rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    transition: right 0.4s;
    border-left: 1px solid rgba(0, 229, 255, 0.15);
  }

  .nav-links.open { right: 0; }

  .hero h1 { font-size: 2.2rem; }
  .notices { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .features { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .game-wrapper iframe { height: 400px; }
  .page-content { padding: 100px 1.5rem 60px; }
}
