/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --deep-space: #0B0E17;
  --midnight: #12162B;
  --neon-green: #00FF88;
  --neon-red: #FF3366;
  --indigo: #6366F1;
  --soft-white: #E2E8F0;
  --muted-gray: #94A3B8;
  --dark-card: #1A1F36;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-red: rgba(255, 51, 102, 0.3);
  --border-indigo: rgba(99, 102, 241, 0.2);
  --max-width: 1200px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--soft-white);
  background: var(--deep-space);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon-green); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .85; }
ul, ol { padding-left: 1.5em; }
li { margin-bottom: .4em; }
strong { font-weight: 600; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
h1 { font-weight: 700; font-size: 48px; margin-bottom: 24px; }
h2 { font-weight: 600; font-size: 36px; margin-top: 64px; margin-bottom: 20px; }
h3 { font-weight: 600; font-size: 28px; margin-top: 40px; margin-bottom: 16px; }
h4 { font-weight: 500; font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
p { margin-bottom: 1.1em; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--midnight); }

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 14, 23, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-indigo);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo:hover { color: #fff; opacity: 1; }
.nav-logo .logo-icon { color: var(--neon-green); font-size: 24px; }
.nav-links {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  color: var(--muted-gray);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--neon-green);
  border-bottom-color: var(--neon-green);
  opacity: 1;
}
.nav-cta { display: inline-block; }

/* Mobile nav */
#nav-toggle { display: none; }
.hamburger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soft-white);
  transition: transform .3s, opacity .3s;
}
#nav-toggle:checked ~ .nav-overlay { display: flex; }
#nav-toggle:checked ~ .hamburger-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#nav-toggle:checked ~ .hamburger-label span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .hamburger-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(11, 14, 23, 0.98);
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  gap: 24px;
  z-index: 99;
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--soft-white);
  text-decoration: none;
}
.nav-overlay a:hover { color: var(--neon-green); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 16px 0 0; font-size: 14px; color: var(--muted-gray); }
.breadcrumbs a { color: var(--muted-gray); text-decoration: none; }
.breadcrumbs a:hover { color: var(--neon-green); }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.12) 0%, transparent 60%);
}
.hero h1 { max-width: 900px; margin: 0 auto 20px; }
.hero .subtitle {
  font-size: 20px;
  color: var(--muted-gray);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--neon-green);
  display: block;
}
.hero-stat .stat-label {
  font-size: 14px;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== CTA BUTTONS ===== */
.cta-primary {
  background: var(--neon-green);
  color: var(--deep-space);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: box-shadow .3s, transform .1s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.cta-primary:hover {
  box-shadow: 0 0 30px rgba(0,255,136,0.4);
  transform: translateY(-1px);
  color: var(--deep-space);
  opacity: 1;
}
.cta-secondary {
  background: transparent;
  color: var(--neon-green);
  border: 2px solid var(--neon-green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow .3s, transform .1s, background .2s;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.cta-secondary:hover {
  box-shadow: 0 0 20px rgba(0,255,136,0.25);
  background: rgba(0,255,136,0.08);
  transform: translateY(-1px);
  opacity: 1;
}
.cta-center { text-align: center; margin: 40px 0; }

/* ===== CARDS ===== */
.card {
  background: var(--dark-card);
  border: 1px solid var(--border-indigo);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .3s, box-shadow .3s;
}
.card:hover {
  border-color: rgba(0,255,136,0.5);
  box-shadow: 0 0 20px rgba(0,255,136,0.1);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.card h3 { margin-top: 0; }
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(99,102,241,0.2);
  color: var(--indigo);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.card-tag.green { background: rgba(0,255,136,0.12); color: var(--neon-green); }
.card-tag.red { background: rgba(255,51,102,0.12); color: var(--neon-red); }

/* ===== DATA TABLES ===== */
.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid var(--border-indigo);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-card);
  font-size: 16px;
}
.data-table th {
  background: var(--deep-space);
  color: var(--neon-green);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid var(--indigo);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  color: var(--soft-white);
  border-bottom: 1px solid rgba(99,102,241,0.15);
}
.data-table tr:hover { background: rgba(0,255,136,0.05); }
.data-table .num { font-family: var(--font-heading); font-weight: 600; }
.data-table .green { color: var(--neon-green); }
.data-table .red { color: var(--neon-red); }
.data-table .cta-sm {
  display: inline-block;
  background: var(--neon-green);
  color: var(--deep-space);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: box-shadow .3s;
}
.data-table .cta-sm:hover {
  box-shadow: 0 0 16px rgba(0,255,136,0.35);
  opacity: 1;
}

/* ===== CSS BAR CHART ===== */
.bar-chart { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label {
  min-width: 120px;
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted-gray);
}
.bar-track {
  flex: 1;
  height: 28px;
  background: rgba(99,102,241,0.1);
  border-radius: 6px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--neon-green), var(--indigo));
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.bar-fill.red-bar { background: linear-gradient(90deg, var(--neon-red), #FF6699); }
.bar-val {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--deep-space);
  white-space: nowrap;
}
.bar-val-out {
  min-width: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--soft-white);
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--dark-card);
  border-left: 4px solid var(--indigo);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.info-box.warning { border-left-color: var(--neon-red); }
.info-box.tip { border-left-color: var(--neon-green); }
.info-box p:last-child { margin-bottom: 0; }

/* ===== FAQ ===== */
.faq-list { margin: 32px 0; display: flex; flex-direction: column; gap: 12px; }
details.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border-indigo);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .3s;
}
details.faq-item[open] { border-color: rgba(0,255,136,0.3); }
details.faq-item summary {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--neon-green);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
details.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 24px 20px; color: var(--soft-white); font-size: 16px; line-height: 1.7; }

/* ===== TOC ===== */
.toc {
  background: var(--dark-card);
  border: 1px solid var(--border-indigo);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}
.toc h4 {
  margin-top: 0; margin-bottom: 16px;
  color: var(--neon-green);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.toc ul { list-style: none; padding: 0; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--muted-gray); font-size: 15px; text-decoration: none; }
.toc a:hover { color: var(--neon-green); }

/* ===== CONTENT ===== */
.content .container { max-width: 800px; }
.content { padding: 48px 0 80px; }
.content a { text-decoration: underline; text-underline-offset: 3px; }
.content a:hover { text-decoration-color: var(--neon-green); }
.last-updated { font-size: 14px; color: var(--muted-gray); margin-bottom: 24px; }
.content blockquote {
  border-left: 3px solid var(--indigo);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--muted-gray);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-space);
  border-top: 1px solid var(--border-indigo);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}
.footer p, .footer a { font-size: 14px; color: var(--muted-gray); line-height: 1.8; }
.footer a { text-decoration: none; display: block; }
.footer a:hover { color: var(--neon-green); }
.footer-bottom {
  border-top: 1px solid var(--border-indigo);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--muted-gray); margin: 0; }
.age-badge {
  display: inline-block;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===== SCROLL ROCKET ===== */
.scroll-rocket {
  position: fixed;
  right: 24px;
  bottom: 20%;
  width: 32px;
  height: 32px;
  opacity: 0.5;
  z-index: 50;
  animation: rocket-launch linear;
  animation-timeline: scroll();
  pointer-events: none;
}
.scroll-rocket svg { width: 32px; height: 32px; }
@keyframes rocket-launch {
  from { bottom: 10%; opacity: 0.3; }
  to { bottom: 85%; opacity: 0.8; }
}
.scroll-rocket::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 16px;
  background: linear-gradient(to bottom, var(--neon-green), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(11,14,23,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-indigo);
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.sticky-bottom .cta-primary {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 12px 20px;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.blog-card {
  background: var(--dark-card);
  border: 1px solid var(--border-indigo);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.blog-card:hover {
  border-color: rgba(0,255,136,0.4);
  box-shadow: 0 0 20px rgba(0,255,136,0.08);
}
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 13px; color: var(--muted-gray); margin-bottom: 8px; }
.blog-card h3 { margin-top: 0; font-size: 22px; }
.blog-card p { font-size: 15px; color: var(--muted-gray); }

/* ===== STEP LIST ===== */
.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.step-list li {
  counter-increment: step;
  padding: 20px 20px 20px 70px;
  background: var(--dark-card);
  border: 1px solid var(--border-indigo);
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 20px; top: 20px;
  width: 36px; height: 36px;
  background: var(--neon-green);
  color: var(--deep-space);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

/* ===== RATING ===== */
.rating { color: #FBBF24; font-size: 18px; letter-spacing: 2px; }

/* ===== RG NOTICE ===== */
.rg-notice {
  background: rgba(255,51,102,0.06);
  border: 1px solid var(--glow-red);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--muted-gray);
}
.rg-notice a { color: var(--neon-red); }

/* ===== MULTIPLIER BADGE ===== */
.mult {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.95em;
}
.mult.crash { background: rgba(255,51,102,0.15); color: var(--neon-red); }
.mult.win { background: rgba(0,255,136,0.12); color: var(--neon-green); }
.mult.mid { background: rgba(99,102,241,0.15); color: var(--indigo); }

/* ===== NEON GLOW ANIMATION ===== */
@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0,255,136,0.3); }
  50% { text-shadow: 0 0 20px rgba(0,255,136,0.6), 0 0 40px rgba(0,255,136,0.2); }
}
.neon-glow { animation: neon-pulse 3s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; margin-top: 48px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .hero-stats { gap: 24px; }
  .hero-stat .stat-value { font-size: 28px; }
  .nav-links { display: none; }
  .nav-cta.desk-only { display: none; }
  .hamburger-label { display: flex; }
  .sticky-bottom { display: flex; }
  .scroll-rocket { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .bar-label { min-width: 80px; font-size: 12px; }
  .data-table { font-size: 14px; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-primary, .cta-secondary { font-size: 16px; padding: 14px 24px; }
}

/* ===== UTILS ===== */
.text-green { color: var(--neon-green); }
.text-red { color: var(--neon-red); }
.text-muted { color: var(--muted-gray); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.share-buttons{display:flex;align-items:center;gap:8px;margin:24px 0;padding:16px;border-top:1px solid #e0e0e0}
.share-buttons span{font-size:13px;color:#666}
.share-btn{display:inline-flex;align-items:center;justify-content:center;padding:6px 14px;border-radius:4px;font-size:13px;text-decoration:none;color:#fff}
.share-x{background:#000}
.share-wa{background:#25D366}
.share-tg{background:#0088cc}
@media print {
  .navbar, .footer, .sticky-bottom, .scroll-rocket { display: none; }
  body { background: #fff; color: #111; }
  a { color: #111; }
}

/* 1xBet Logo in Navigation */
.nav-logo img, .nav__logo img, .site-logo img, .logo img {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 6px;
}

/* === Author E-E-A-T System === */
.author-byline{display:flex;align-items:center;gap:12px;margin:16px 0 24px;padding:12px 16px;background:rgba(0,0,0,.03);border-radius:8px}
.author-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover}
.author-info{display:flex;flex-direction:column}
.author-name{font-weight:600;font-size:14px;display:flex;align-items:center;gap:4px}
.author-role{font-size:12px;color:#666}
.verified-badge{flex-shrink:0}
.author-box{display:flex;gap:20px;padding:24px;margin:40px 0 20px;border:1px solid #e0e0e0;border-radius:12px;background:#fafafa}
.author-box-photo{width:80px;height:80px;border-radius:50%;object-fit:cover;flex-shrink:0}
.author-box-content{flex:1}
.author-box-name{font-size:18px;margin:0 0 8px;display:flex;align-items:center;gap:6px}
.author-box-bio{font-size:14px;color:#444;margin:0 0 12px;line-height:1.5}
.author-box-links{display:flex;gap:16px;font-size:13px}
.author-link{color:inherit;text-decoration:underline}
.author-twitter{color:#1DA1F2;text-decoration:none}
.reviewer-line{font-size:13px;color:#666;margin:8px 0 32px;padding-left:24px;border-left:3px solid #e0e0e0}
@media(max-width:600px){.author-box{flex-direction:column;align-items:center;text-align:center}.author-box-links{justify-content:center}}

.blog-pagination{display:flex;justify-content:center;gap:12px;margin:32px 0;padding:16px}
.blog-pagination a,.page-current{padding:8px 16px;border-radius:4px;font-size:14px;text-decoration:none}
.page-current{background:#eee;font-weight:600}

/* 1xBet logo sizing fix */
img[alt="1xBet"]{max-width:110px;height:auto}
footer img[alt="1xBet"]{max-width:82px}
.site-footer img[alt="1xBet"]{max-width:82px}
.footer img[alt="1xBet"]{max-width:82px}
.footer__bottom img[alt="1xBet"]{max-width:82px}

.affiliate-disclosure{font-size:12px;color:#888;margin:4px 0 16px;font-style:italic}

.data-note{font-size:13px;color:#888;border-left:3px solid #ddd;padding-left:12px;margin:8px 0 16px}

/* Fix overflow on share buttons and author box */
.share-buttons, .author-box, .reviewer-line { max-width: 100%; overflow: hidden; box-sizing: border-box; }
.content { overflow-x: hidden; }

.reviewer-links { display:flex; gap:12px; margin-top:8px; font-size:13px; }
.reviewer-links a { color:#1B6CB0; text-decoration:underline; }
