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

:root {
  --teal: #00e5cc;
  --teal-dim: #00b8a4;
  --violet: #6d28d9;
  --deep-violet: #0d0520;
  --mid-violet: #1a0840;
  --card-bg: #160637;
  --text-main: #e8e0f5;
  --text-muted: #a390c4;
  --border-glow: rgba(0,229,204,0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep-violet);
  color: var(--text-main);
  margin: 0;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Exo 2', sans-serif;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}

h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--teal); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #c4b5f8; }

p {
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 1em;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

a { color: var(--teal); text-decoration: underline; }
a:hover { color: #fff; }

blockquote {
  border-left: 4px solid var(--teal);
  padding: 0.8em 1.2em;
  margin: 1.5em 0;
  background: var(--mid-violet);
  border-radius: 0 0.5rem 0.5rem 0;
  color: var(--text-muted);
  font-style: italic;
}

ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1em;
  color: var(--text-main);
}

li {
  margin-bottom: 0.45em;
  line-height: 1.7;
}

ul li::marker { color: var(--teal); }
ol li::marker { color: var(--teal); font-weight: 700; }

.prose-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2em 1.2em;
}

.prose-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  display: block;
  margin: 1.5em auto;
  border: 1px solid var(--border-glow);
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}

thead tr {
  background: var(--violet);
  color: #fff;
}

th, td {
  padding: 0.7em 1em;
  text-align: left;
  border-bottom: 1px solid rgba(109,40,217,0.3);
}

tbody tr:nth-child(even) { background: rgba(255,255,255,0.04); }
tbody tr:hover { background: rgba(0,229,204,0.07); }

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px var(--teal), 0 0 28px rgba(0,229,204,0.3); }
  50% { box-shadow: 0 0 24px var(--teal), 0 0 56px rgba(0,229,204,0.5); }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.glow-btn {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.hero-float {
  animation: float-up 4s ease-in-out infinite;
}

.vortex-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(109,40,217,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0,229,204,0.2) 0%, transparent 55%),
    var(--deep-violet);
}

.card-glass {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.teal-text { color: var(--teal); }
.violet-text { color: #c4b5f8; }

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--teal);
  flex-shrink: 0;
}

.step-badge {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-main);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--teal); }

.mobile-menu {
  background: #120430;
  border-top: 1px solid var(--border-glow);
}

.promo-card {
  background: var(--card-bg);
  border: 1px solid rgba(109,40,217,0.4);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.promo-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.game-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0,229,204,0.15);
  transition: border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
  width: 220px;
}

.game-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.game-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.provider-tag {
  display: inline-block;
  padding: 0.3em 0.8em;
  border-radius: 999px;
  background: rgba(109,40,217,0.3);
  border: 1px solid rgba(109,40,217,0.5);
  color: #c4b5f8;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.3em;
  transition: background 0.2s;
}

.provider-tag:hover {
  background: rgba(0,229,204,0.15);
  color: var(--teal);
}

.faq-item {
  border-bottom: 1px solid rgba(109,40,217,0.3);
  padding: 1.2em 0;
}

.faq-q {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.faq-a {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.75em;
  font-size: 0.97rem;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  text-align: center;
  margin-bottom: 0.4em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5em;
  font-size: 1rem;
}

.divider-teal {
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  border-radius: 2px;
  margin: 0.6em auto 2em;
}

svg.pattern-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.07;
}
