/* seo:self-hosted-inter */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('/fonts/inter-800.woff2') format('woff2'); }

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #111128;
  --bg-tertiary: #1a0a3e;
  --bg-card: #151530;
  --accent-gold: #ffbf00;
  --accent-gold-bright: #ffe44d;
  --accent-warm: #ff8c00;
  --accent-red: #e53935;
  --accent-purple: #7c4dff;
  --accent-cyan: #00e5ff;
  --text-primary: #f0f0ff;
  --text-muted: #9898b8;
  --success: #00e676;
  --danger: #ff5252;
  --max-width: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --glow-gold: 0 0 20px rgba(255, 191, 0, 0.3), 0 0 60px rgba(255, 191, 0, 0.1);
  --glow-gold-strong: 0 0 30px rgba(255, 191, 0, 0.5), 0 0 80px rgba(255, 191, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(124, 77, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 191, 0, 0.05) 0%, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-gold-bright);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.98) 0%, rgba(17, 17, 40, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 191, 0, 0.2);
  transition: transform var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-text em {
  font-style: normal;
  color: var(--accent-gold);
  text-shadow: 0 0 16px rgba(255,191,0,0.25);
}

.logo span {
  color: var(--text-primary);
  text-shadow: none;
}

.nav-desktop {
  display: none;
  gap: 28px;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition);
  box-shadow: 0 0 8px rgba(255, 191, 0, 0.5);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-gold);
}

@media (min-width: 769px) {
  .nav-desktop {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
  }
}

/* ===== MORE DROPDOWN ===== */
.nav-more {
  position: relative;
  list-style: none;
}

.nav-more-toggle {
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding-top: 10px;
  min-width: 160px;
  z-index: 1100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 17, 40, 0.98);
  border: 1px solid rgba(255, 191, 0, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.nav-more:hover .nav-dropdown,
.nav-more.open .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  position: relative;
  z-index: 1;
}

.nav-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.88rem;
  white-space: nowrap;
  color: var(--text-muted);
}

.nav-dropdown li a:hover {
  color: var(--accent-gold);
  background: rgba(255, 191, 0, 0.07);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-2px);
}

/* Spacer for fixed header */
.header-spacer {
  height: 68px;
}

/* ===== MOBILE BOTTOM TAB BAR ===== */
.bottom-tabs {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(17, 17, 40, 0.98) 0%, rgba(10, 10, 26, 0.99) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 191, 0, 0.2);
  justify-content: space-around;
  padding: 8px 0 12px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
  .bottom-tabs {
    display: none;
  }
}

.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 8px;
  transition: all var(--transition);
}

.tab-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.tab-item.active,
.tab-item:hover {
  color: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.4));
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 77, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 191, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 191, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(124, 77, 255, 0.06) 0%, transparent 40%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.4), transparent);
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3%, 2%) rotate(1deg); }
  100% { transform: translate(-2%, 3%) rotate(-1deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

@media (min-width: 769px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

.hero h1 .gold {
  color: var(--accent-gold);
  text-shadow: 0 0 30px rgba(255, 191, 0, 0.3);
}

.hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero .hero-lead { font-size: 1.12rem; color: var(--text-primary); margin-bottom: 14px; }
.hero .hero-lead strong { color: var(--accent-gold); font-weight: 700; }
.hero .hero-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 28px; }

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
  border: 1px solid rgba(255, 191, 0, 0.35);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.1);
}

.rating-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.5);
}

.rating-score {
  font-weight: 800;
  font-size: 1.1rem;
}

.rating-score span {
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== CTA BUTTON (LARGE) ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-3px);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: none;
}

.btn-cta-outline:hover {
  background: var(--accent-gold);
  color: #0a0a1a;
  box-shadow: var(--glow-gold);
}

/* ===== SECTION ===== */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.6) 100%);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:hover {
  border-color: rgba(255, 191, 0, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 191, 0, 0.15), 0 0 30px rgba(124, 77, 255, 0.05);
}

.bonus-card .bonus-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.3));
}

.bonus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.bonus-card .bonus-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.bonus-card .btn-cta {
  width: 100%;
  justify-content: center;
}

/* ===== PROS & CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-list, .cons-list {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pros-list {
  border-left: 3px solid var(--success);
}

.cons-list {
  border-left: 3px solid var(--danger);
}

.pros-list h3 {
  color: var(--success);
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.cons-list h3 {
  color: var(--danger);
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-shadow: 0 0 15px rgba(255, 82, 82, 0.3);
}

.pros-list ul, .cons-list ul {
  list-style: none;
}

.pros-list li, .cons-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 82, 82, 0.4);
}

/* ===== GAME / INFO CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-grid.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .card-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.info-card:hover::after {
  opacity: 1;
}

.info-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.info-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.2));
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.info-card .card-meta {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.2);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  min-height: 200px;
  border: 1px dashed rgba(255, 191, 0, 0.15);
  cursor: pointer;
  transition: all var(--transition);
}

.img-placeholder:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.1);
}

/* ===== STEPS ===== */
.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--glow-gold);
}

.step-content h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 769px) {
  .payment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.payment-card:hover {
  border-color: rgba(255, 191, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment-card .payment-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.2));
}

.payment-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== VIP TIERS ===== */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .tier-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tier-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.tier-card.featured {
  border-color: var(--accent-gold);
  position: relative;
  box-shadow: var(--glow-gold);
  background: linear-gradient(160deg, rgba(255, 191, 0, 0.08) 0%, var(--bg-card) 100%);
}

.tier-card.featured::after {
  content: 'BEST';
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.tier-card .tier-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 191, 0, 0.2));
}

.tier-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
}

.tier-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 16px;
}

.tier-card li {
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.tier-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  text-shadow: 0 0 6px rgba(255, 191, 0, 0.4);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.faq-item.active .faq-question {
  color: var(--accent-gold);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.news-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.news-card .news-date {
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 8px rgba(255, 191, 0, 0.2);
}

.news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.news-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== TRUST INDICATORS ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 28px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item .trust-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 191, 0, 0.2));
}

/* ===== REVIEW SECTIONS ===== */
.review-section {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.3) 100%);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.review-section h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.review-section p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 191, 0, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 191, 0, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #080818 100%);
  border-top: 1px solid rgba(255, 191, 0, 0.1);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

@media (min-width: 769px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 18px;
  font-size: 1rem;
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.2);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.badge-18 {
  background: linear-gradient(135deg, var(--accent-red), #c62828);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(229, 57, 53, 0.3);
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== AGE POPUP ===== */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: linear-gradient(160deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 60px rgba(255, 191, 0, 0.1), 0 0 120px rgba(124, 77, 255, 0.05);
}

.age-modal .age-badge {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(255, 191, 0, 0.3));
}

.age-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.age-modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.age-buttons .btn-confirm {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--glow-gold);
}

.age-buttons .btn-confirm:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
  box-shadow: var(--glow-gold-strong);
  transform: translateY(-2px);
}

.age-buttons .btn-exit {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.age-buttons .btn-exit:hover {
  border-color: var(--danger);
  color: var(--danger);
  box-shadow: 0 0 15px rgba(255, 82, 82, 0.2);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-muted);
  margin: 0 8px;
}

.breadcrumb .current {
  color: var(--accent-gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(124, 77, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 191, 0, 0.1);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.3), transparent);
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== TEXT CONTENT (TERMS, PRIVACY) ===== */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(255, 191, 0, 0.15);
}

.text-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.text-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.text-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.text-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== RESPONSIBLE GAMING ===== */
.helpline-box {
  background: linear-gradient(160deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 191, 0, 0.25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 28px 0;
  box-shadow: 0 0 30px rgba(255, 191, 0, 0.05);
}

.helpline-box .helpline-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 14px 0;
  text-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 191, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 191, 0, 0.4);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(255, 191, 0, 0.3);
  color: var(--text-primary);
}

/* ===== FLASHY ANIMATIONS ===== */

/* Shimmer sweep on bonus cards */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 191, 0, 0.06) 40%,
    rgba(255, 191, 0, 0.12) 50%,
    rgba(255, 191, 0, 0.06) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* Pulsing glow on CTA buttons */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 191, 0, 0.3), 0 0 60px rgba(255, 191, 0, 0.1); }
  50% { box-shadow: 0 0 30px rgba(255, 191, 0, 0.5), 0 0 80px rgba(255, 191, 0, 0.25), 0 0 120px rgba(255, 191, 0, 0.1); }
}

.btn-cta {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  animation: none;
}

/* Floating particle dots in hero */
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-400px) scale(0.5); opacity: 0; }
}

.hero .hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(255, 191, 0, 0.6);
}

.hero .hero-particle:nth-child(1) { left: 10%; bottom: 0; animation: floatUp 6s 0s infinite; }
.hero .hero-particle:nth-child(2) { left: 25%; bottom: 0; animation: floatUp 8s 1s infinite; }
.hero .hero-particle:nth-child(3) { left: 45%; bottom: 0; animation: floatUp 7s 2s infinite; }
.hero .hero-particle:nth-child(4) { left: 65%; bottom: 0; animation: floatUp 9s 0.5s infinite; }
.hero .hero-particle:nth-child(5) { left: 80%; bottom: 0; animation: floatUp 6.5s 3s infinite; }
.hero .hero-particle:nth-child(6) { left: 90%; bottom: 0; animation: floatUp 7.5s 1.5s infinite; }

/* Gradient text animation for hero headline */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 .gold {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-bright), var(--accent-warm), var(--accent-gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Entrance animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.bonus-card, .info-card, .tier-card, .news-card, .payment-card {
  animation: fadeInScale 0.5s ease-out backwards;
}

.bonus-card:nth-child(1), .info-card:nth-child(1), .tier-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2), .info-card:nth-child(2), .tier-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3), .info-card:nth-child(3), .tier-card:nth-child(3) { animation-delay: 0.3s; }
.bonus-card:nth-child(4), .info-card:nth-child(4), .tier-card:nth-child(4) { animation-delay: 0.4s; }

/* Glowing border animation for featured cards */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255, 191, 0, 0.3); }
  50% { border-color: rgba(255, 191, 0, 0.7); }
}

.bonus-card-featured, .tier-card.featured {
  animation: borderGlow 3s ease-in-out infinite, fadeInScale 0.5s ease-out backwards;
}

/* Rating stars twinkle */
@keyframes twinkle {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 191, 0, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 191, 0, 1), 0 0 40px rgba(255, 191, 0, 0.5); }
}

.rating-stars {
  animation: twinkle 2s ease-in-out infinite;
}

/* CTA banner background glow pulse */
@keyframes bannerPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255, 191, 0, 0.06) 0%, transparent 70%);
  animation: bannerPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* ===== FLOATING REGISTER NOW BUTTON ===== */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  animation: pulseGlow 2.5s ease-in-out infinite, floatBounce 3s ease-in-out infinite;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 191, 0, 0.4);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: #0a0a1a;
  animation: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 191, 0, 0.6);
}

.floating-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 769px) {
  .floating-cta {
    bottom: 30px;
    right: 30px;
    padding: 16px 32px;
    font-size: 1rem;
  }
}

/* Hide floating CTA when bottom tabs are covering it on very small screens */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 75px;
  }
}

/* ===== REGISTER NAV HIGHLIGHT ===== */
.nav-desktop a.nav-register {
  color: var(--accent-gold);
  font-weight: 700;
  position: relative;
}

.nav-desktop a.nav-register::before {
  content: '';
  position: absolute;
  inset: -4px -12px;
  border: 1px solid rgba(255, 191, 0, 0.3);
  border-radius: 50px;
  animation: borderGlow 3s ease-in-out infinite;
}

/* ===== WHY OPAL STRIKE SECTION (replaces pros/cons) ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-left: 3px solid var(--success);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  animation: fadeInScale 0.5s ease-out backwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.15s; }
.highlight-card:nth-child(3) { animation-delay: 0.2s; }
.highlight-card:nth-child(4) { animation-delay: 0.25s; }
.highlight-card:nth-child(5) { animation-delay: 0.3s; }
.highlight-card:nth-child(6) { animation-delay: 0.35s; }

.highlight-card:hover {
  border-color: rgba(0, 230, 118, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card .highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: inline-block;
}

.highlight-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SCREENSHOT GRID (games page) ===== */
.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .screenshot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.screenshot-placeholder {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px dashed rgba(255, 191, 0, 0.15);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  transition: all var(--transition);
}

.screenshot-placeholder:hover {
  border-color: rgba(255, 191, 0, 0.4);
  transform: translateY(-3px);
}

.screenshot-inner .screenshot-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.screenshot-inner p {
  font-weight: 700;
  margin-bottom: 6px;
}

.screenshot-inner .screenshot-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.screenshot-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== BONUS PAGE EXTRAS ===== */
.bonus-grid-large .bonus-card {
  text-align: left;
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: #0a0a1a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bonus-highlights {
  list-style: none;
  margin-bottom: 24px;
}

.bonus-highlights li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Terms grid */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .terms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.terms-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.terms-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.terms-card .terms-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.terms-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--accent-gold);
}

.terms-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.terms-disclaimer {
  background: rgba(255, 191, 0, 0.05);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 32px;
  text-align: center;
}

.terms-disclaimer p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: rgba(255, 191, 0, 0.2);
  transform: translateY(-2px);
}

.step-card .step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: var(--glow-gold);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Info grid and block for VIP page */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 769px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-grid .info-card .info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
}

.info-block h3 {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.info-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Payment page extras */
.payment-details {
  margin: 16px 0;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.payment-label {
  color: var(--text-muted);
}

.payment-value {
  font-weight: 600;
  color: var(--text-primary);
}

.payment-value.good {
  color: var(--success);
}

.payment-value.neutral {
  color: var(--text-muted);
}

.payment-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 8px 0 14px;
  line-height: 1.5;
}

.payment-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
  color: #0a0a1a;
  padding: 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 0 10px rgba(255, 191, 0, 0.2);
}

.payment-cta:hover {
  color: #0a0a1a;
  box-shadow: 0 0 20px rgba(255, 191, 0, 0.4);
  transform: translateY(-2px);
}

/* Card features list */
.card-features {
  list-style: none;
  margin-bottom: 16px;
}

.card-features li {
  padding: 3px 0 3px 18px;
  position: relative;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* Tier label */
.tier-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tier-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: #0a0a1a;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Page title/subtitle aliases */
.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-header-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Provider card */
.provider-card {
  pointer-events: auto;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.breadcrumb-bar {
  padding: 14px 0;
  background: rgba(10,10,26,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
}
.breadcrumb ol,
ol.breadcrumb,
.breadcrumb-bar ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb ol li,
ol.breadcrumb li,
.breadcrumb-bar ol li {
  display: inline-flex;
  align-items: center;
  list-style: none;
  font-size: 0.88rem;
}
.breadcrumb ol li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--text-muted);
  font-size: 1rem;
}
ol.breadcrumb li::marker,
.breadcrumb ol li::marker,
.breadcrumb-bar ol li::marker { content: ""; }
ol.breadcrumb li.breadcrumb-sep { color: var(--text-muted); padding: 0 2px; }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--accent-gold); font-weight: 500; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-gold); }
ol.breadcrumb a { color: var(--text-muted); }
ol.breadcrumb a:hover { color: var(--accent-gold); }

/* ===== ADDITIONS: NEW HOMEPAGE + SHARED COMPONENTS ===== */
.section-alt {
  background: linear-gradient(180deg, rgba(124,77,255,0.04) 0%, rgba(255,191,0,0.03) 100%);
  border-top: 1px solid rgba(255,191,0,0.08);
  border-bottom: 1px solid rgba(255,191,0,0.08);
}
.trust-section { padding: 24px 0; }
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  justify-content: center;
}
.hero-disclaimer {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}
.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}
.gold { color: var(--accent-gold); }
.center-muted {
  text-align: center;
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.95rem;
}

/* Facts table */
.facts-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 8px;
  border: 1px solid rgba(255,191,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  overflow-x: auto;
}
.facts-table {
  width: 100%;
  border-collapse: collapse;
}
.facts-table th, .facts-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.facts-table tr:last-child th, .facts-table tr:last-child td {
  border-bottom: none;
}
.facts-table th {
  color: var(--text-muted);
  font-weight: 500;
  width: 32%;
  white-space: nowrap;
}
.facts-table td {
  color: var(--text-primary);
  font-weight: 500;
}
@media (max-width: 640px) {
  .facts-table th, .facts-table td { padding: 10px 12px; font-size: 0.9rem; }
  .facts-table th { width: 40%; white-space: normal; }
}

/* Bonus tier grid */
.bonus-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) { .bonus-tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .bonus-tier-grid { grid-template-columns: 1fr; } }
.bonus-tier {
  background: var(--bg-card);
  border: 1px solid rgba(255,191,0,0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.bonus-tier:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}
.bonus-tier-hero {
  background: linear-gradient(145deg, #2a1a00 0%, var(--bg-card) 100%);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px var(--accent-gold), var(--glow-gold);
}
.bonus-tier-hero::before {
  content: "BIGGEST";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}
.tier-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.tier-match {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}
.tier-cap {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 4px;
  color: var(--text-primary);
}
.tier-spins {
  font-size: 1rem;
  color: var(--accent-gold-bright);
  margin: 10px 0 14px;
  font-weight: 600;
}
.bonus-tier p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cta-banner-inline { margin-top: 0; }

/* Payments strip */
.payments-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) { .payments-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .payments-strip { grid-template-columns: repeat(2, 1fr); } }
.pay-tile {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  text-align: center;
  transition: var(--transition);
}
.pay-tile:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.pay-tile img {
  margin: 0 auto 10px;
  display: block;
  filter: brightness(0) invert(1) opacity(0.85);
}
.pay-tile span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Pros / Cons grid */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) { .proscons-grid { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pros-box { border-left: 4px solid var(--success); }
.cons-box { border-left: 4px solid var(--danger); }
.pros-box h3, .cons-box h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pros-box h3 { color: var(--success); }
.cons-box h3 { color: var(--danger); }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; }
.pros-box li, .cons-box li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-primary);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--success);
  font-weight: 800;
}
.cons-box li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--danger);
  font-weight: 800;
}

/* Team grid — /about-us Meet the Team section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e89f00 100%);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.25);
}
.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: -8px 0 0;
}
.team-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.team-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}
.team-card li {
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.team-card li strong { color: var(--text-primary); }
.team-card a { color: var(--accent-gold); }

/* Card image — works as both wrapper div and direct img */
.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--bg-tertiary);
  display: block;
}
img.card-image { object-fit: cover; }
.card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Featured grid (game categories, etc.) */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 769px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }

.game-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(26, 10, 62, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.game-card:hover {
  border-color: rgba(255, 191, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.game-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.game-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.game-card .btn-cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* Step-by-step rows */
.steps-list {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps-list > li::marker { content: ""; }
.step-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 24px;
  row-gap: 6px;
  align-items: start;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  list-style: none;
}
.step-row::before {
  counter-increment: step;
  content: counter(step);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: var(--glow-gold);
  grid-column: 1;
  grid-row: 1 / span 99;
  align-self: start;
}
.step-row h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  grid-column: 2;
}
.step-row p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  grid-column: 2;
}
.step-row p + p { margin-top: 10px; }
@media (max-width: 640px) {
  .step-row {
    grid-template-columns: 56px 1fr;
    column-gap: 16px;
    padding: 20px;
  }
  .step-row::before { width: 44px; height: 44px; font-size: 1.3rem; }
}

/* TOC jump links */
.toc-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,191,0,0.15);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}
.toc-box h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.toc-box ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
  counter-reset: toc;
}
.toc-box li {
  counter-increment: toc;
  padding-left: 24px;
  position: relative;
}
.toc-box li::before {
  content: counter(toc) ".";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
@media (max-width: 640px) { .toc-box ol { grid-template-columns: 1fr; } }

/* Provider badges */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.provider-badge {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.provider-badge:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* VIP tiers */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (max-width: 1024px) { .vip-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .vip-grid { grid-template-columns: 1fr; } }
.vip-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}
.vip-card:hover { transform: translateY(-4px); border-color: var(--accent-gold); }
.vip-tier-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.vip-tier-xp {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vip-card ul { list-style: none; padding: 0; text-align: left; font-size: 0.9rem; color: var(--text-primary); }
.vip-card li { padding: 6px 0 6px 18px; position: relative; line-height: 1.45; }
.vip-card li::before { content: "\2605"; color: var(--accent-gold); position: absolute; left: 0; }
.vip-bronze   .vip-tier-name { color: #cd7f32; }
.vip-silver   .vip-tier-name { color: #c0c0c0; }
.vip-gold     .vip-tier-name { color: var(--accent-gold); }
.vip-platinum .vip-tier-name { color: #e5e4e2; }
.vip-diamond  .vip-tier-name { color: #00e5ff; }

/* Data / comparison table */
.data-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,191,0,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.data-table th {
  background: var(--bg-tertiary);
  color: var(--accent-gold);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-primary);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Page intro */
.page-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}
.page-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
}

/* Author byline */
.byline {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  padding: 14px 20px;
  max-width: 640px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.byline strong { color: var(--text-primary); }
.byline .byline-dot { color: var(--accent-gold); }

/* Native details/summary FAQ */
details.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,191,0,0.12);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
details.faq-item[open] {
  border-color: rgba(255,191,0,0.35);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
details.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  position: relative;
  padding-right: 28px;
  font-size: 1.02rem;
  line-height: 1.5;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition);
}
details.faq-item[open] > summary::after { content: "\2212"; }
details.faq-item > summary:hover { color: var(--accent-gold); }
details.faq-item > p,
details.faq-item > div {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
}
details.faq-item p a,
details.faq-item div a { color: var(--accent-gold); }


/* =================================================================
   Utility classes — replaces all inline style= attributes
   ================================================================= */
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }
.mw-720 { max-width: 720px; }
.mw-860 { max-width: 860px; }
.mx-auto-20  { margin: 20px auto; }
.mx-auto-40  { margin: 40px auto 20px; }
.bg-sec  { background: var(--bg-secondary); }
.bdr-gold { border-left-color: var(--accent-gold); }
.text-center { text-align: center; }

/* =================================================================
   Compare CTA block (moved from index.html inline style)
   ================================================================= */
    .compare-cta { display: block; padding: 28px 32px; background: linear-gradient(135deg, rgba(124,77,255,0.18), rgba(255,191,0,0.12)); border: 1px solid rgba(255,191,0,0.35); border-radius: 14px; text-align: center; text-decoration: none; color: var(--text-primary); transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .compare-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
    .compare-cta .compare-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); font-weight: 700; margin-bottom: 10px; }
    .compare-cta h3 { font-size: 1.4rem; margin: 0 0 10px; color: var(--text-primary); }
    .compare-cta p { font-size: 0.98rem; color: var(--text-muted); margin: 0 0 14px; line-height: 1.6; }
    .compare-cta .compare-arrow { color: var(--accent-gold); font-weight: 700; }
  

/* =================================================================
   Opal Strike vs Stake page styles (moved from opalstrike-vs-stake.html)
   ================================================================= */
    /* Baseline paragraph spacing for any loose <p> left on the page */
    .vs-page .section p { margin: 0 auto 1.1em !important; line-height: 1.7 !important; max-width: 820px; text-align: left; font-size: 1.02rem; }
    .vs-page .section p:last-child { margin-bottom: 0 !important; }
    .vs-page .page-header p,
    .vs-page .page-intro p { text-align: center; }
    .vs-page .bonus-tier p,
    .vs-page .info-card p,
    .vs-page .highlight-card p,
    .vs-page .cta-banner p,
    .vs-page .toc-box p,
    .vs-page .footer-col p,
    .vs-page .footer-disclaimer p,
    .vs-page .footer-bottom p { margin: 0 !important; max-width: none; text-align: inherit; }
    .vs-page .cta-banner p { margin-bottom: 16px !important; }

    /* ===== Head-to-head comparison cards ===== */
    .vs-compare { max-width: 1080px; margin: 0 auto; }
    .vs-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 768px) { .vs-compare-grid { grid-template-columns: 1fr; } }
    .vs-card { padding: 24px 26px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); background: rgba(21,21,48,0.7); position: relative; }
    .vs-card.vs-card-sky { border-color: rgba(255,191,0,0.35); background: linear-gradient(160deg, rgba(255,191,0,0.08), rgba(21,21,48,0.85)); }
    .vs-card.vs-card-stake { border-color: rgba(124,77,255,0.35); background: linear-gradient(160deg, rgba(124,77,255,0.10), rgba(21,21,48,0.85)); }
    .vs-card.vs-card-playamo { border-color: rgba(0,196,83,0.35); background: linear-gradient(160deg, rgba(0,196,83,0.09), rgba(21,21,48,0.85)); }
    .vs-card.vs-card-joefortune { border-color: rgba(229,57,53,0.35); background: linear-gradient(160deg, rgba(229,57,53,0.09), rgba(21,21,48,0.85)); }
    .vs-card.vs-card-kingbilly { border-color: rgba(156,39,176,0.35); background: linear-gradient(160deg, rgba(156,39,176,0.09), rgba(21,21,48,0.85)); }
    .vs-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .vs-card-logo { width: 36px; height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.5px; flex-shrink: 0; }
    .vs-card-sky .vs-card-logo { background: linear-gradient(135deg, #ffbf00, #ff8c00); color: #1a0a3e; }
    .vs-card-stake .vs-card-logo { background: linear-gradient(135deg, #7c4dff, #00e5ff); color: #0a0a1a; }
    .vs-card-playamo .vs-card-logo { background: linear-gradient(135deg, #00c853, #00e5ff); color: #0a0a1a; }
    .vs-card-joefortune .vs-card-logo { background: linear-gradient(135deg, #e53935, #ff8c00); color: #fff; }
    .vs-card-kingbilly .vs-card-logo { background: linear-gradient(135deg, #9c27b0, #ce93d8); color: #fff; }
    .vs-card-name { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); }
    .vs-card-sub { font-size: 0.8rem; color: var(--text-muted); }
    .vs-card ul { list-style: none; padding: 0; margin: 0; }
    .vs-card ul li { padding: 8px 0 8px 26px; position: relative; line-height: 1.6; color: var(--text-primary); font-size: 0.97rem; border-bottom: 1px dashed rgba(255,255,255,0.06); }
    .vs-card ul li:last-child { border-bottom: none; }
    .vs-card ul li::before { content: ""; position: absolute; left: 0; top: 13px; width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,0.06); }
    .vs-card.vs-card-sky ul li::before { background: radial-gradient(circle, #ffbf00 0 35%, transparent 36%); }
    .vs-card.vs-card-stake ul li::before { background: radial-gradient(circle, #7c4dff 0 35%, transparent 36%); }
    .vs-card.vs-card-playamo ul li::before { background: radial-gradient(circle, #00c853 0 35%, transparent 36%); }
    .vs-card.vs-card-joefortune ul li::before { background: radial-gradient(circle, #e53935 0 35%, transparent 36%); }
    .vs-card.vs-card-kingbilly ul li::before { background: radial-gradient(circle, #9c27b0 0 35%, transparent 36%); }
    .vs-card ul li strong { color: var(--accent-gold-bright); font-weight: 600; }
    .vs-card.vs-card-stake ul li strong { color: #b39dff; }
    .vs-card.vs-card-playamo ul li strong { color: #69f0ae; }
    .vs-card.vs-card-joefortune ul li strong { color: #ff8a80; }
    .vs-card.vs-card-kingbilly ul li strong { color: #ce93d8; }
    .vs-intro { max-width: 820px; margin: 0 auto 28px; text-align: center; color: var(--text-primary); line-height: 1.7; font-size: 1.05rem; }
    .vs-edge { margin: 24px auto 0; max-width: 1080px; padding: 16px 22px; border-radius: 10px; background: rgba(255,191,0,0.08); border: 1px solid rgba(255,191,0,0.25); display: flex; gap: 14px; align-items: center; }
    .vs-edge-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-gold); font-weight: 800; flex-shrink: 0; }
    .vs-edge-text { color: var(--text-primary); line-height: 1.55; font-size: 0.98rem; }
    @media (max-width: 560px) { .vs-edge { flex-direction: column; align-items: flex-start; gap: 6px; } }

    /* Methodology box */
    .vs-methodology { border-left: 4px solid var(--accent-gold); padding: 22px 26px; background: rgba(255,191,0,0.05); border-radius: 8px; text-align: left; max-width: 900px; margin: 0 auto; }
    .vs-methodology p { margin: 0 0 0.9em !important; max-width: none; text-align: left; }
    .vs-methodology ul { margin: 0.4em 0 0 1.25em; }
    .vs-methodology ul li { margin-bottom: 0.65em; line-height: 1.7; }
    .vs-methodology ul li:last-child { margin-bottom: 0; }
    /* Compare-page CTA card (also reused on home via .compare-cta) */
    .compare-cta { display: block; padding: 28px 32px; background: linear-gradient(135deg, rgba(124,77,255,0.18), rgba(255,191,0,0.12)); border: 1px solid rgba(255,191,0,0.35); border-radius: 14px; text-align: center; text-decoration: none; color: var(--text-primary); transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .compare-cta:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
    .compare-cta .compare-tag { display: inline-block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold); font-weight: 700; margin-bottom: 8px; }
    .compare-cta h3 { font-size: 1.4rem; margin: 0 0 8px; color: var(--text-primary); }
    .compare-cta p { font-size: 0.98rem; color: var(--text-muted); margin: 0 0 14px; }
    .compare-cta .compare-arrow { color: var(--accent-gold); font-weight: 700; }
  
/* =================================================================
   KYC & Verification section redesign
   ================================================================= */
.kyc-section { padding: 64px 0; }

/* Document requirement cards */
.kyc-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
@media (max-width: 768px) { .kyc-docs-grid { grid-template-columns: 1fr; } }

.kyc-doc-card {
  background: linear-gradient(145deg, rgba(255,191,0,0.06), rgba(15,52,96,0.4));
  border: 1px solid rgba(255,191,0,0.2);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.kyc-doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,191,0,0.45);
  box-shadow: 0 8px 32px rgba(255,191,0,0.12);
}
.kyc-doc-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(255,191,0,0.08), transparent 70%);
  border-radius: 0 16px 0 0;
}
.kyc-doc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,191,0,0.12);
  border: 1px solid rgba(255,191,0,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.kyc-doc-icon svg { width: 26px; height: 26px; fill: var(--accent-gold); }
.kyc-doc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.kyc-doc-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.kyc-doc-card ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.kyc-doc-card ul li::before {
  content: '›';
  position: absolute; left: 0; top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
.kyc-doc-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.kyc-badge-required { background: rgba(255,191,0,0.15); color: var(--accent-gold); border: 1px solid rgba(255,191,0,0.3); }
.kyc-badge-optional { background: rgba(176,176,176,0.1); color: var(--text-muted); border: 1px solid rgba(176,176,176,0.2); }

/* Verification timeline */
.kyc-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 44px 0 20px;
  position: relative;
}
.kyc-timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.kyc-timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,191,0,0.5), rgba(255,191,0,0.15));
  z-index: 0;
}
.kyc-timeline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  position: relative; z-index: 1;
  margin-bottom: 12px;
  border: 2px solid;
  transition: transform 0.2s;
}
.kyc-timeline-dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(255,191,0,0.4);
}
.kyc-timeline-dot.pending {
  background: rgba(255,191,0,0.1);
  border-color: rgba(255,191,0,0.3);
  color: var(--accent-gold);
}
.kyc-timeline-dot.success {
  background: rgba(0,200,83,0.15);
  border-color: rgba(0,200,83,0.5);
  color: #00c853;
}
.kyc-timeline-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.kyc-timeline-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 100px;
}
@media (max-width: 600px) {
  .kyc-timeline { flex-direction: column; gap: 20px; align-items: flex-start; padding-left: 20px; }
  .kyc-timeline-step { flex-direction: row; text-align: left; align-items: center; gap: 16px; width: 100%; }
  .kyc-timeline-step:not(:last-child)::after {
    top: 44px; left: 22px; width: 2px; height: 100%; background: linear-gradient(180deg, rgba(255,191,0,0.5), rgba(255,191,0,0.15));
  }
  .kyc-timeline-dot { margin-bottom: 0; flex-shrink: 0; }
  .kyc-timeline-label, .kyc-timeline-sub { max-width: none; }
}

/* Rejection warning box */
.kyc-warning {
  background: linear-gradient(135deg, rgba(255,82,82,0.08), rgba(255,82,82,0.03));
  border: 1px solid rgba(255,82,82,0.25);
  border-left: 4px solid #ff5252;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 36px;
}
.kyc-warning-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.kyc-warning-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,82,82,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.kyc-warning-icon svg { width: 18px; height: 18px; fill: #ff5252; }
.kyc-warning-head h3 { margin: 0; font-size: 1rem; color: #ff7070; }
.kyc-warning ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.kyc-warning ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.kyc-warning ul li::before {
  content: '✕';
  position: absolute; left: 0; top: 1px;
  color: #ff5252;
  font-size: 0.75rem;
  font-weight: 700;
}

/* KYC pro-tip strip */
.kyc-tip {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(0,200,83,0.06);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 20px;
}
.kyc-tip-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(0,200,83,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.kyc-tip-icon svg { width: 18px; height: 18px; fill: #00c853; }
.kyc-tip p { margin: 0; font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
.kyc-tip p strong { color: #00c853; }


/* ===== REVIEW PAGE: REDESIGNED SECTIONS ===== */

/* Shared score header row */
.rv-score-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rv-score-header .section-title { margin-bottom: 0; }
.rv-score-pill {
  background: linear-gradient(135deg, rgba(255,191,0,0.15), rgba(255,191,0,0.04));
  border: 1px solid rgba(255,191,0,0.4);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255,191,0,0.12);
}
.rv-score-pill span { font-size: 0.88rem; color: var(--text-muted); font-weight: 600; }
.rv-score-pill--amber {
  background: linear-gradient(135deg, rgba(255,140,0,0.15), rgba(255,140,0,0.04));
  border-color: rgba(255,140,0,0.4);
  color: var(--accent-warm);
  box-shadow: 0 0 20px rgba(255,140,0,0.12);
}

/* ===== MOBILE EXPERIENCE ===== */
.mobile-stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 20px;
}
@media (min-width: 600px) { .mobile-stat-row { grid-template-columns: repeat(4, 1fr); } }
.mobile-stat {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mobile-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-stat:hover::after { opacity: 1; }
.mobile-stat:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.mobile-stat--gold .mobile-stat-num { color: var(--accent-gold); }
.mobile-stat--gold::after { background: linear-gradient(90deg, transparent, var(--accent-gold), transparent); }
.mobile-stat--gold:hover { border-color: rgba(255,191,0,0.2); }
.mobile-stat-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 7px;
  font-variant-numeric: tabular-nums;
}
.mobile-stat-lbl { font-size: 0.75rem; color: var(--text-muted); line-height: 1.35; }

.mobile-tested-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mobile-tested-label { font-size: 0.84rem; color: var(--text-muted); font-weight: 600; }
.mobile-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  font-size: 0.81rem;
  color: var(--text-primary);
}
.mobile-device-chip svg { width: 14px; height: 14px; fill: var(--text-muted); flex-shrink: 0; }

.mobile-features { display: flex; flex-direction: column; gap: 9px; }
.mobile-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.mf-check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800;
  color: var(--success);
}
.mf-check--minus { background: rgba(255,82,82,0.08); border-color: rgba(255,82,82,0.22); color: var(--danger); }
.mf-minus { color: var(--text-muted); }

/* ===== CUSTOMER SUPPORT ===== */
.support-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 20px;
}
@media (min-width: 640px) { .support-channels { grid-template-columns: 3fr 2fr; } }
.support-channel {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: all var(--transition);
}
.support-channel--hero {
  background: linear-gradient(135deg, rgba(0,229,255,0.06), rgba(21,21,48,0.9));
  border-color: rgba(0,229,255,0.2);
}
.support-channel--hero:hover { box-shadow: 0 8px 32px rgba(0,229,255,0.07); }
.sc-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,229,255,0.18), rgba(0,229,255,0.04));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sc-icon svg { width: 22px; height: 22px; fill: var(--accent-cyan); }
.sc-icon--muted { background: rgba(255,255,255,0.05); }
.sc-icon--muted svg { fill: var(--text-muted); }
.sc-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.sc-response { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.sc-response-num { font-size: 1.1rem; font-weight: 800; color: var(--accent-cyan); }
.sc-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.sc-features li {
  font-size: 0.84rem; color: var(--text-muted);
  padding-left: 16px; position: relative;
}
.sc-features li::before { content: "·"; position: absolute; left: 4px; color: var(--accent-cyan); font-weight: 800; }
.sc-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px;
}
.sc-badge--live {
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.28);
  color: var(--success);
  animation: pulse-badge 2.2s ease infinite;
}
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:0.55} }

.support-test-block {
  background: rgba(0,230,118,0.03);
  border: 1px solid rgba(0,230,118,0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.stb-header {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px;
  background: rgba(0,230,118,0.07);
  border-bottom: 1px solid rgba(0,230,118,0.1);
  font-weight: 700; font-size: 0.88rem; color: var(--success);
}
.stb-header svg { width: 17px; height: 17px; fill: var(--success); flex-shrink: 0; }
.stb-rows { padding: 2px 0; }
.stb-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 20px;
  font-size: 0.86rem; color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.stb-row:last-child { border-bottom: none; }
.stb-pass {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.22);
  color: var(--success);
  border-radius: 4px; padding: 2px 7px; flex-shrink: 0;
}

/* ===== LICENCE & SECURITY ===== */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0 16px;
}
@media (min-width: 768px) { .security-grid { grid-template-columns: 5fr 4fr; } }
.security-licence {
  background: linear-gradient(135deg, rgba(124,77,255,0.1), rgba(21,21,48,0.8));
  border: 1px solid rgba(124,77,255,0.22);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
}
.sl-logo {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(124,77,255,0.22), rgba(124,77,255,0.04));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(124,77,255,0.18);
}
.sl-logo svg { width: 26px; height: 26px; fill: var(--accent-purple); }
.sl-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.sl-value { font-size: 1.1rem; font-weight: 800; margin-top: 3px; }
.sl-number { font-size: 0.8rem; color: var(--text-muted); font-family: 'Courier New', monospace; margin-top: 2px; }
.sl-details { display: flex; flex-direction: column; gap: 0; }
.sl-detail {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.86rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sl-detail:last-child { border-bottom: none; padding-bottom: 0; }
.sl-detail span { color: var(--text-muted); }
.sl-detail strong { color: var(--text-primary); font-weight: 600; }

.security-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sec-tile {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: all var(--transition);
}
.sec-tile:hover { border-color: rgba(255,191,0,0.2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.sec-tile-icon {
  width: 36px; height: 36px;
  background: rgba(255,191,0,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sec-tile-icon svg { width: 18px; height: 18px; fill: var(--accent-gold); }
.sec-tile-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; }
.sec-tile-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }

.security-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,191,0,0.03);
  border: 1px solid rgba(255,191,0,0.1);
  border-left: 3px solid rgba(255,191,0,0.35);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 15px 18px;
}
.sn-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(255,191,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: var(--accent-gold);
}
.security-note p { margin: 0; font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ===== VIP TIERS ===== */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 28px 0 18px;
}
@media (min-width: 640px) { .vip-tiers { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .vip-tiers { grid-template-columns: repeat(5, 1fr); } }
.vip-tier {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 26px 14px 18px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}
.vip-tier:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.vip-tier--bronze  { border-top: 3px solid #cd7f32; }
.vip-tier--silver  { border-top: 3px solid #b0b8c8; }
.vip-tier--gold    { border-top: 3px solid var(--accent-gold); }
.vip-tier--platinum { border-top: 3px solid var(--accent-cyan); }
.vip-tier--diamond {
  border-top: 3px solid var(--accent-purple);
  background: linear-gradient(160deg, rgba(124,77,255,0.09), var(--bg-card));
}
.vip-tier--featured {
  background: linear-gradient(160deg, rgba(255,191,0,0.07), var(--bg-card));
  border-color: rgba(255,191,0,0.18);
  box-shadow: 0 0 30px rgba(255,191,0,0.07);
}
.vt-popular {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.vt-badge { font-size: 2rem; margin-bottom: 8px; line-height: 1; }
.vt-name { font-weight: 800; font-size: 0.92rem; margin-bottom: 14px; }
.vt-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.vt-perks li {
  font-size: 0.76rem; color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.35;
}
.vt-perks li:last-child { border-bottom: none; }

.vip-cta-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 0.88rem; color: var(--text-muted);
  padding: 14px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.vip-cta-link {
  color: var(--accent-gold); font-weight: 700; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,191,0,0.28);
  padding-bottom: 1px;
  transition: all var(--transition);
}
.vip-cta-link:hover { color: var(--accent-gold-bright); border-color: var(--accent-gold); }


/* ===== BONUSES PAGE: REDESIGNED SECTIONS ===== */

/* Free Spin Drops */
.fs-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.fs-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,191,0,0.07);
  border: 1px solid rgba(255,191,0,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.fs-meta-chip svg { width: 14px; height: 14px; fill: var(--accent-gold); flex-shrink: 0; }
.fs-meta-chip span { color: var(--accent-gold); font-weight: 800; }

.fs-games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 600px) { .fs-games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .fs-games-grid { grid-template-columns: repeat(5, 1fr); } }
.fs-game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.fs-game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.fs-game-card:hover::before { opacity: 1; }
.fs-game-card:hover { border-color: rgba(255,191,0,0.18); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.fs-game-icon { font-size: 1.8rem; margin-bottom: 8px; line-height: 1; }
.fs-game-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.fs-game-provider { font-size: 0.72rem; color: var(--text-muted); }

.fs-schedule-note {
  display: flex; gap: 12px; align-items: center;
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 0.86rem; color: var(--text-muted);
}
.fs-schedule-note svg { width: 18px; height: 18px; fill: var(--accent-cyan); flex-shrink: 0; }

/* Tournaments */
.tournament-card {
  background: linear-gradient(135deg, rgba(124,77,255,0.1), rgba(21,21,48,0.8));
  border: 1px solid rgba(124,77,255,0.25);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.tournament-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-cyan));
}
.tc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tc-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.tc-subtitle { font-size: 0.84rem; color: var(--text-muted); }
.tc-pool {
  text-align: right;
  flex-shrink: 0;
}
.tc-pool-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,191,0,0.3);
}
.tc-pool-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.tc-entry-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}
.tc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.8rem; color: var(--text-primary);
}
.tc-chip svg { width: 13px; height: 13px; fill: var(--accent-gold); }

.prize-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 480px) { .prize-breakdown { grid-template-columns: 1fr; } }
.pb-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.pb-tier--gold { border-color: rgba(255,191,0,0.22); background: rgba(255,191,0,0.05); }
.pb-rank { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; font-weight: 700; }
.pb-amount { font-size: 1.15rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 2px; }
.pb-tier--gold .pb-amount { font-size: 1.4rem; text-shadow: 0 0 15px rgba(255,191,0,0.25); }
.pb-detail { font-size: 0.74rem; color: var(--text-muted); }

/* VIP Rewards on bonuses page — reuses .vip-tier styles, add bonus-specific overrides */
.vip-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin: 24px 0 18px;
}
@media (min-width: 640px) { .vip-bonus-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .vip-bonus-grid { grid-template-columns: repeat(5, 1fr); } }

/* Terms highlight cards */
.terms-key-rules {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}
@media (min-width: 560px) { .terms-key-rules { grid-template-columns: repeat(3, 1fr); } }
.tkr-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
}
.tkr-card--warn {
  background: rgba(255,82,82,0.05);
  border-color: rgba(255,82,82,0.18);
}
.tkr-card--warn::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--danger), transparent);
}
.tkr-card--info {
  background: rgba(255,191,0,0.05);
  border-color: rgba(255,191,0,0.18);
}
.tkr-card--info::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.tkr-icon { font-size: 1.6rem; margin-bottom: 8px; line-height: 1; }
.tkr-value { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; line-height: 1; }
.tkr-card--warn .tkr-value { color: var(--danger); }
.tkr-card--info .tkr-value { color: var(--accent-gold); }
.tkr-label { font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; }
.tkr-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; }

/* ===== GAME CATEGORY STAT CARDS ===== */
.game-card--stat {
  display: flex;
  flex-direction: column;
}
.card-stat-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(124,77,255,0.15), rgba(0,229,255,0.08));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124,77,255,0.25);
}
.card-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.card-stat-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
}
.game-card--stat .card-image {
  display: none;
}

/* ===== WALKTHROUGH STEPS (getting-started) ===== */
.walk-list {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 880px;
  display: grid;
  gap: 18px;
  counter-reset: walk;
  position: relative;
}
.walk-list::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,191,0,0.4), rgba(124,77,255,0.25), rgba(255,191,0,0.1));
  z-index: 0;
}
@media (max-width: 640px) {
  .walk-list::before { left: 23px; }
}
.walk-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.walk-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(255,191,0,0.35);
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--bg-primary), 0 4px 16px rgba(0,0,0,0.35);
  flex-shrink: 0;
  font-feature-settings: 'tnum';
}
.walk-num--gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
  color: var(--bg-primary);
  border-color: var(--accent-gold-bright);
  box-shadow: 0 0 0 4px var(--bg-primary), 0 0 24px rgba(255,191,0,0.5);
}
.walk-body {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
}
.walk-body::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-purple));
  opacity: 0.5;
}
.walk-step--final .walk-body {
  background: linear-gradient(135deg, rgba(255,191,0,0.08), rgba(124,77,255,0.06));
  border-color: rgba(255,191,0,0.25);
}
.walk-step--final .walk-body::before { opacity: 1; }
.walk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.walk-head h3 {
  font-size: 1.18rem;
  margin: 0;
  letter-spacing: -0.2px;
}
.walk-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 11px;
  background: rgba(0,229,255,0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.walk-pill--gold {
  background: rgba(255,191,0,0.12);
  color: var(--accent-gold);
  border-color: rgba(255,191,0,0.3);
}
.walk-body p {
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.walk-body p:last-child { margin-bottom: 0; }

/* Field rows */
.walk-fields {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}
.walk-field {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(255,191,0,0.4);
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem;
}
.wf-label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  align-self: center;
}
.wf-value { color: var(--text-muted); align-self: center; }
.wf-gold { color: var(--accent-gold); font-weight: 700; }
@media (max-width: 540px) {
  .walk-field { grid-template-columns: 1fr; gap: 2px; padding: 8px 12px; }
}

/* Single key/value action row */
.walk-key {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(124,77,255,0.08);
  border: 1px dashed rgba(124,77,255,0.3);
  border-radius: 8px;
}
.walk-key-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  font-weight: 800;
}
.walk-key-value { color: var(--text-primary); font-size: 0.95rem; }

/* Callouts */
.walk-callout {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-primary);
  border-left: 3px solid;
}
.walk-callout--warn {
  background: rgba(255, 82, 82, 0.07);
  border-color: var(--danger);
}
.walk-callout--warn strong { color: var(--danger); }
.walk-callout--info {
  background: rgba(0,229,255,0.06);
  border-color: var(--accent-cyan);
}
.walk-callout--info strong { color: var(--accent-cyan); }

/* Tag chips */
.walk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.walk-tag {
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.walk-tag--gold {
  background: rgba(255,191,0,0.12);
  border-color: rgba(255,191,0,0.4);
  color: var(--accent-gold);
}
.walk-tag--cyan {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.3);
  color: var(--accent-cyan);
}

/* Stat row */
.walk-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.walk-stat {
  text-align: center;
  padding: 14px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.walk-stat--gold {
  background: linear-gradient(135deg, rgba(255,191,0,0.12), rgba(255,140,0,0.06));
  border-color: rgba(255,191,0,0.3);
}
.ws-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.walk-stat--gold .ws-num { color: var(--accent-gold); }
.ws-lbl {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
@media (max-width: 540px) {
  .walk-stat-row { grid-template-columns: 1fr; }
  .ws-num { font-size: 1.3rem; }
}

/* Contribution bars */
.walk-contrib {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.wc-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.wc-game { font-weight: 700; color: var(--text-primary); }
.wc-bar {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}
.wc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), #4dd86b);
  border-radius: 4px;
}
.wc-fill--mid { background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm)); }
.wc-fill--low { background: linear-gradient(90deg, var(--danger), #ff8a80); }
.wc-pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--text-primary);
}
.walk-foot {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem !important;
}

/* Payout times rows */
.payout-times {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}
.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.025);
  border-left: 3px solid;
  border-radius: 0 8px 8px 0;
}
.pt-row--fast { border-color: var(--success); }
.pt-row--mid { border-color: var(--accent-gold); }
.pt-row--slow { border-color: var(--accent-warm); }
.pt-method { font-weight: 600; color: var(--text-primary); font-size: 0.92rem; }
.pt-method small { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; }
.pt-time {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  white-space: nowrap;
}
.pt-row--fast .pt-time { color: var(--success); }
.pt-row--mid .pt-time { color: var(--accent-gold); }
.pt-row--slow .pt-time { color: var(--accent-warm); }
@media (max-width: 540px) {
  .pt-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 640px) {
  .walk-step { grid-template-columns: 48px 1fr; column-gap: 12px; }
  .walk-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .walk-body { padding: 18px 18px; }
  .walk-head h3 { font-size: 1.05rem; }
}



/* seo:author-bio-styles */
.author-bio-section { padding-top: 16px; }
.author-bio { background: var(--bg-card, #151530); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px 28px; }
.author-bio h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted, #9898b8); margin-bottom: 10px; }
.author-bio-name { font-size: 1.15rem; margin-bottom: 10px; }
.author-bio-desc { color: var(--text-primary, #f0f0ff); margin-bottom: 12px; }
.author-bio-meta-line { font-size: 0.92rem; color: var(--text-muted, #9898b8); }
.author-bio-meta-line a { color: var(--accent-gold, #ffbf00); text-decoration: none; }
.author-bio-meta-line a:hover { text-decoration: underline; }
.cite-link { border-bottom: 1px dotted currentColor; }


/* seo:sxo-additions */
.methodology-box { background: var(--bg-card, #151530); border: 1px solid rgba(255,191,0,0.18); border-radius: 14px; padding: 28px 32px; }
.methodology-heading { font-size: 1.35rem; margin-bottom: 14px; color: var(--accent-gold, #ffbf00); }
.methodology-points { list-style: none; padding: 0; margin: 16px 0; }
.methodology-points li { padding: 6px 0 6px 26px; position: relative; }
.methodology-points li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--accent-gold, #ffbf00); font-weight: 700; }
.methodology-caveat { background: rgba(255,140,0,0.08); border-left: 3px solid var(--accent-warm, #ff8c00); padding: 14px 18px; margin-top: 18px; border-radius: 4px; font-size: 0.95rem; }
.vip-diamond-detail { background: linear-gradient(135deg, rgba(124,77,255,0.08), rgba(255,191,0,0.06)); border: 1px solid rgba(124,77,255,0.25); border-radius: 12px; padding: 22px 26px; margin-top: 24px; }
.vip-diamond-detail h3 { color: var(--accent-gold, #ffbf00); margin-bottom: 10px; }
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 24px 0; }
.feedback-block { background: var(--bg-card, #151530); border-radius: 12px; padding: 22px 24px; border-top: 3px solid; }
.feedback-block--complaint { border-top-color: var(--accent-red, #e53935); }
.feedback-block--context { border-top-color: var(--accent-cyan, #00e5ff); }
.feedback-block--takeaway { border-top-color: var(--accent-gold, #ffbf00); }
.feedback-block h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feedback-block ol { padding-left: 1.2em; margin-top: 8px; }
.feedback-block ol li { margin: 6px 0; }
.feedback-note { font-style: italic; color: var(--text-muted, #9898b8); font-size: 0.92rem; margin-top: 16px; }


/* seo:scared-callout */
.scared-callout { background: rgba(229,57,53,0.06); border-left: 3px solid var(--accent-red, #e53935); padding: 14px 18px; margin-top: 18px; border-radius: 4px; font-size: 0.95rem; }
.scared-callout a { color: var(--accent-gold, #ffbf00); }
