:root {
  --color-bg: #05091a;
  --color-surface: #0d1530;
  --color-surface2: #111d3a;
  --color-primary: #00e5ff;
  --color-primary-dark: #00b8cc;
  --color-accent: #ff6f00;
  --color-text: #d9f4ff;
  --color-text-muted: #7db8cc;
  --color-border: #1a3a55;
  --color-chrome: #c8d8e0;
  --font-main: 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

@keyframes spinReel {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 12px 2px #00e5ff55, 0 0 32px 4px #00e5ff22; }
  50% { box-shadow: 0 0 28px 6px #00e5ffaa, 0 0 60px 12px #00e5ff44; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.6; }
  94% { opacity: 1; }
  96% { opacity: 0.7; }
  97% { opacity: 1; }
}

.glow-primary { animation: pulseGlow 2.8s ease-in-out infinite; }
.float-anim { animation: floatUp 3.5s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.7s ease both; }
.neon-flicker { animation: neonFlicker 4s linear infinite; }

.marquee-track { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.site-container { max-width: 1440px; margin: 0 auto; padding: 0 1.25rem; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00e5ff, #0099bb);
  color: #05091a;
  font-weight: 700;
  padding: 0.75em 2em;
  border-radius: 2em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 18px #00e5ff66;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 32px #00e5ffaa; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.75em 2em;
  border-radius: 2em;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.btn-secondary:hover { background: var(--color-primary); color: #05091a; }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--color-primary); box-shadow: 0 0 24px #00e5ff22; }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 16px #00e5ff66;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

section { padding: 4rem 0; }

.prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 2em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.3em;
}
.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-chrome);
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}
.prose p { margin-bottom: 1.2em; color: var(--color-text); line-height: 1.8; }
.prose a { color: var(--color-primary); text-decoration: underline; }
.prose a:hover { color: #fff; }
.prose ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1.2em; }
.prose ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.4em; color: var(--color-text); }
.prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 0.5em 1.2em;
  margin: 1.5em 0;
  background: var(--color-surface2);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--color-chrome);
  font-style: italic;
}
.prose img { max-width: 100%; height: auto; border-radius: 0.75rem; margin: 1.5em 0; display: block; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.prose table th {
  background: var(--color-surface2);
  color: var(--color-primary);
  padding: 0.6em 1em;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  font-weight: 700;
}
.prose table td {
  padding: 0.6em 1em;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.prose table tr:last-child td { border-bottom: none; }
.prose table tr:hover td { background: var(--color-surface2); }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table th {
  background: var(--color-surface2);
  color: var(--color-primary);
  padding: 0.65em 1em;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  font-weight: 700;
}
.data-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--color-surface2); }

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.game-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 0.75rem 0.75rem 0 0; display: block; }

.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e5ff, #0077aa);
  color: #05091a;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px #00e5ff55;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.1rem 0;
}
.faq-question {
  font-weight: 700;
  color: var(--color-chrome);
  cursor: pointer;
  font-size: 1.05rem;
}
.faq-answer {
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.75;
  font-size: 0.97rem;
}

.provider-cloud span {
  display: inline-block;
  margin: 0.3em 0.5em;
  color: var(--color-chrome);
  font-weight: 600;
  transition: color 0.2s;
  cursor: default;
}
.provider-cloud span:hover { color: var(--color-primary); }

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,9,26,0.72) 0%, rgba(5,9,26,0.88) 100%);
  z-index: 0;
}
.hero-bg > * { position: relative; z-index: 1; }

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  padding: 0.3em 0.1em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.mobile-menu {
  background: #0d1530;
  border-top: 1px solid var(--color-border);
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  color: #d9f4ff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--color-primary); }

.burger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: #00e5ff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger-btn.is-open .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.promo-card {
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface2));
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.promo-card:hover { border-color: var(--color-primary); box-shadow: 0 0 28px #00e5ff1a; }

.review-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
}

.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
