﻿/* ═══════════════════════════════════════════════════════════════════
   BetWin Landing — 1win.lat design system
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --bg-1:        #141415;
  --bg-2:        #1d1e20;
  --bg-3:        #2e3035;
  --bg-4:        #3b3d43;

  --blue:        #0075ff;
  --blue-hover:  #1381ff;
  --blue-dim:    rgba(0,117,255,.12);

  --green:       #00943e;
  --green-hover: #00b24b;
  --green-dim:   rgba(0,150,62,.12);

  --gold:        #ffc300;
  --gold-hover:  #ffd240;
  --gold-dim:    rgba(217,166,0,.12);

  --text-1:      #f0f2f5;
  --text-2:      #9aa1b1;
  --text-3:      #9aa1b1;

  --border:      rgba(179,182,189,.12);
  --border-soft: rgba(179,182,189,.08);

  --r-xs: 8px;
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  --shadow-s:  0 1px 2px rgba(0,0,0,.20);
  --shadow-m:  0 4px 16px rgba(0,0,0,.32);
  --shadow-l:  0 8px 32px rgba(0,0,0,.48);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.64);

  --transition: .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Poppins, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Bootstrap overrides ───────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: .55rem 1.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-hover);
  border-color: var(--green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,178,75,.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-light {
  border: 1px solid var(--border);
  color: var(--text-1);
  border-radius: var(--r-pill);
  padding: .55rem 1.5rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: var(--text-1);
}

.btn-outline-primary {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  border-radius: var(--r-pill);
  padding: .55rem 1.5rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-primary:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-gold {
  background: var(--gold);
  border: none;
  color: #000;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: .6rem 1.5rem;
  transition: all var(--transition);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,195,0,.4);
}

.accent { color: var(--green); }

/* ── Section helpers ───────────────────────────────────────────── */
section { padding: 80px 0; }

.section-dark { background: var(--bg-2); }

.section-header { max-width: 640px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}

.section-sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20,20,21,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(20,20,21,.97);
  box-shadow: var(--shadow-m);
}

.navbar { padding: .75rem 0; }
.navbar-toggler { border: 1px solid var(--border); border-radius: var(--r-xs); padding: .4rem .6rem; }
.navbar-toggler i { color: var(--text-1); font-size: 1.1rem; }

/* Logo */
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-fallback { display: none; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--green); }
.footer-logo .logo-img { height: 28px; }

/* Nav links */
.navbar-nav .nav-link {
  color: var(--text-2);
  font-size: .875rem;
  font-weight: 500;
  padding: .4rem .75rem !important;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--text-1);
  background: rgba(255,255,255,.06);
}

/* Auth buttons */
.btn-login {
  font-size: .8125rem;
  padding: .4rem 1rem;
  border-color: var(--border);
}
.btn-register {
  font-size: .8125rem;
  padding: .4rem 1rem;
}

/* Language switcher */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex; align-items: center; gap: .25rem;
  background: rgba(179,182,189,.12);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-1);
  padding: .35rem .7rem;
  font-size: .8125rem;
  font-weight: 500;
  transition: background var(--transition);
}
.lang-btn:hover { background: rgba(179,182,189,.2); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .35rem;
  min-width: 80px;
  display: none;
  box-shadow: var(--shadow-l);
  z-index: 100;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: block;
  padding: .4rem .75rem;
  border-radius: var(--r-xs);
  font-size: .8125rem;
  color: var(--text-2);
  transition: all var(--transition);
}
.lang-option:hover { background: rgba(255,255,255,.08); color: var(--text-1); }

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,117,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,178,75,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,178,75,.12);
  border: 1px solid rgba(0,178,75,.25);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Bonus card in hero */
.hero-bonus-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.bonus-icon {
  width: 48px; height: 48px;
  background: var(--green-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
}

.bonus-info { flex: 1; }
.bonus-label { font-size: .75rem; color: var(--text-2); font-weight: 500; }
.bonus-value { font-size: 1.75rem; font-weight: 900; color: var(--green); line-height: 1.1; }
.bonus-sub { font-size: .75rem; color: var(--text-2); }

.bonus-promo {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  padding: .4rem .75rem;
}
.promo-label { font-size: .7rem; color: var(--text-2); }
.promo-code {
  font-size: .9375rem; font-weight: 800;
  color: var(--gold); letter-spacing: .08em;
}
.promo-copy {
  color: var(--text-2);
  font-size: .8rem;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color var(--transition);
}
.promo-copy:hover { color: var(--text-1); }

/* Hero CTA group */
.hero-cta-group { display: flex; flex-wrap: wrap; gap: .75rem; }

.btn-cta-main {
  font-size: 1rem;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: var(--r-pill);
  letter-spacing: -.01em;
}
.btn-cta-sec {
  font-size: 1rem;
  font-weight: 500;
  padding: .75rem 1.75rem;
}

/* Hero visual / floating cards */
.hero-img-col { position: relative; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 420px;
}

.hero-main-img {
  width: 100%; max-width: 380px;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.hero-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: var(--shadow-m);
  animation: float 3s ease-in-out infinite;
}
.hero-card i { color: var(--green); }

.hero-card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero-card-2 { bottom: 20%; right: -8%; animation-delay: .8s; }
.hero-card-3 { top: 55%; left: -12%; animation-delay: 1.6s; }
.hero-card-3 i { color: #ff006a; }

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--text-3); font-size: .875rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -.02em;
  line-height: 1;
}

.stat-label {
  font-size: .8125rem;
  color: var(--text-2);
  margin-top: .25rem;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES CARDS
════════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l);
  border-color: rgba(0,117,255,.3);
}

.svc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .svc-img-wrap img { transform: scale(1.05); }

.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,21,.7) 0%, transparent 60%);
}

.svc-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(0,117,255,.85);
  color: #fff;
  font-size: .6875rem; font-weight: 700;
  padding: .25rem .6rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  letter-spacing: .04em;
}
.svc-tag.live-tag { background: rgba(255,0,106,.85); }
.svc-tag.tv-tag   { background: rgba(71,0,255,.85); }

.svc-body {
  padding: 1.25rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.svc-body h3 {
  font-size: 1.0625rem; font-weight: 700;
  margin-bottom: .5rem;
}
.svc-body p {
  font-size: .875rem; color: var(--text-2);
  flex: 1; margin-bottom: 1rem;
}
.svc-btn {
  font-size: .8125rem; font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.svc-btn:hover { color: var(--blue-hover); }

/* ════════════════════════════════════════════════════════════════
   BONUSES
════════════════════════════════════════════════════════════════ */
.bonuses-section { background: var(--bg-1); }

.bonus-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: rgba(0,117,255,.25); }
.bonus-card:hover::before { opacity: 1; }

.bonus-card.bonus-featured {
  border-color: rgba(0,178,75,.3);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(0,178,75,.06) 100%);
}
.bonus-card.bonus-featured::before {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 1;
}
.bonus-card.bonus-featured:hover { border-color: rgba(0,178,75,.5); }

.bonus-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue);
  margin-bottom: 1rem;
}
.cashback-icon { background: rgba(0,178,75,.12); color: var(--green); }
.fs-icon       { background: rgba(255,195,0,.12); color: var(--gold); }
.app-icon      { background: rgba(71,0,255,.12);  color: #7100ff; }
.sport-icon    { background: rgba(255,195,0,.12); color: var(--gold); }
.promo-icon    { background: var(--gold-dim);     color: var(--gold); }

.bonus-pct {
  font-size: 2.25rem; font-weight: 900;
  color: var(--text-1); letter-spacing: -.04em;
  line-height: 1; margin-bottom: .5rem;
}
.bonus-featured .bonus-pct { color: var(--green); }

.bonus-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.bonus-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

.bonus-pills {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: .25rem;
}
.bonus-pills span {
  background: rgba(0,178,75,.12);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: .2rem .7rem;
  font-size: .75rem; font-weight: 700;
  border: 1px solid rgba(0,178,75,.2);
}

.promo-code-display {
  font-size: 1.75rem; font-weight: 900;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: .5rem;
}

.promo-bonus-card { border-color: rgba(255,195,0,.2); }
.promo-bonus-card:hover { border-color: rgba(255,195,0,.4); }
.promo-bonus-card::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════════════════════ */
.step-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.3); }

.step-num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: .75rem; font-weight: 800;
  padding: .25rem .75rem;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
}

.step-icon {
  width: 64px; height: 64px;
  background: var(--blue-dim);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue);
  margin: 1rem auto 1rem;
}

.step-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .6rem; }
.step-card p  { font-size: .875rem; color: var(--text-2); }

/* ════════════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════════ */
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.25); }

.why-icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue);
  margin-bottom: 1rem;
}
.why-card:nth-child(2) .why-icon { background: var(--green-dim); color: var(--green); }
.why-card:nth-child(3) .why-icon { background: rgba(71,0,255,.12); color: #7100ff; }
.why-card:nth-child(4) .why-icon { background: var(--gold-dim); color: var(--gold); }
.why-card:nth-child(5) .why-icon { background: rgba(255,0,106,.1); color: #ff006a; }
.why-card:nth-child(6) .why-icon { background: var(--green-dim); color: var(--green); }

.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p  { font-size: .875rem; color: var(--text-2); }

/* ════════════════════════════════════════════════════════════════
   APP SECTION
════════════════════════════════════════════════════════════════ */
.app-img-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.app-img {
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative; z-index: 2;
}
.app-glow {
  position: absolute;
  width: 70%; height: 60%;
  background: radial-gradient(ellipse, rgba(0,117,255,.25) 0%, transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.app-features {
  list-style: none;
  display: flex; flex-direction: column; gap: .75rem;
  margin-bottom: 0;
}
.app-features li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9375rem; color: var(--text-2);
}
.app-features li i { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }

.btn-app {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-1);
  border-radius: var(--r-md);
  padding: .75rem 1.5rem;
  font-weight: 600;
  font-size: .9375rem;
  display: inline-flex; align-items: center;
  transition: all var(--transition);
}
.btn-app:hover {
  background: var(--bg-4);
  border-color: rgba(255,255,255,.2);
  color: var(--text-1);
  transform: translateY(-2px);
}
.btn-app.btn-app-ios { background: var(--bg-2); }

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem; font-weight: 600; color: var(--text-1);
  text-align: left;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--blue); }
.faq-question.active { color: var(--blue); }

.faq-icon {
  font-size: .75rem; color: var(--text-2);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.show { max-height: 500px; }
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .9375rem; color: var(--text-2);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,117,255,.15) 0%, transparent 60%),
    var(--bg-2);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; margin-bottom: .5rem; }
.cta-banner p { color: var(--text-2); font-size: 1rem; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-logo {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.25rem; font-weight: 800;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-2); font-size: .875rem;
  line-height: 1.7; max-width: 340px;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: .75rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  font-size: .875rem;
  transition: all var(--transition);
  cursor: pointer;
  padding: 0;
}
.footer-social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-heading {
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-2); margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem; color: var(--text-2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-1); }

.footer-lang-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-lang-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .35rem .75rem;
  font-size: .8125rem; font-weight: 600; color: var(--text-2);
  transition: all var(--transition);
}
.footer-lang-btn:hover {
  background: var(--blue-dim);
  border-color: rgba(0,117,255,.3);
  color: var(--blue);
}
.footer-lang-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-contacts { display: flex; flex-direction: column; gap: .5rem; }
.footer-contacts a {
  font-size: .875rem; color: var(--text-2);
  transition: color var(--transition);
}
.footer-contacts a:hover { color: var(--text-1); }

.footer-top { padding-bottom: 3rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-legal, .footer-copy {
  font-size: .75rem; color: var(--text-3); margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  box-shadow: var(--shadow-m);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--blue-hover); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════════════════════ */
.toast-notify {
  position: fixed;
  bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: .6rem 1.25rem;
  font-size: .875rem; font-weight: 600;
  color: var(--text-1);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: all .3s ease;
  box-shadow: var(--shadow-l);
  white-space: nowrap;
}
.toast-notify.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   PARTICLES
════════════════════════════════════════════════════════════════ */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,117,255,.15);
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-100vh) scale(.5); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1rem;
    margin-top: .5rem;
  }
  .navbar-nav .nav-link { padding: .6rem .75rem !important; }
  .hero-section { padding-top: 76px; }
  .hero-title { font-size: 2.5rem; }
  section { padding: 60px 0; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { text-align: center; }
  section { padding: 48px 0; }
  .hero-bonus-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .bonus-card { padding: 1.25rem; }
}

/* ── Collapse animation for mobile nav ─────────────────────────── */
.navbar-collapse.collapsing { transition: height .2s ease; }

/* ════════════════════════════════════════════════════════════════
   POPUP / TIMED BANNER
════════════════════════════════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.popup-overlay.visible {
  opacity: 1; pointer-events: auto;
}

.popup-modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  max-width: 480px; width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(30px) scale(.96);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.popup-overlay.visible .popup-modal {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--text-2);
  transition: all var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,.12); color: var(--text-1); }

.popup-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-dim);
  border: 1px solid rgba(0,178,75,.25);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: .3rem 1rem;
  font-size: .8125rem; font-weight: 700;
  margin-bottom: 1rem;
}

.popup-bonus-val {
  font-size: 4rem; font-weight: 900;
  color: var(--green); line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: .4rem;
}

.popup-title {
  font-size: 1.25rem; font-weight: 800;
  margin-bottom: .4rem;
  line-height: 1.3;
}

.popup-sub { font-size: .9rem; color: var(--text-2); margin-bottom: 1.5rem; }

.popup-promo-wrap {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--bg-3);
  border: 1px solid rgba(255,195,0,.25);
  border-radius: var(--r-lg);
  padding: .6rem 1rem;
  margin-bottom: 1.5rem;
}
.popup-promo-label { font-size: .75rem; color: var(--text-2); font-weight: 500; }
.popup-promo-code {
  font-size: 1.25rem; font-weight: 900;
  color: var(--gold); letter-spacing: .1em;
}
.popup-promo-copy {
  color: var(--text-2); font-size: .85rem;
  padding: 2px 5px;
  border-radius: 4px;
  transition: color var(--transition);
}
.popup-promo-copy:hover { color: var(--gold); }

.popup-cta-btn {
  width: 100%;
  font-size: 1.0625rem; font-weight: 800;
  padding: .85rem 1.5rem;
  border-radius: var(--r-pill);
  letter-spacing: -.01em;
  box-shadow: 0 6px 24px rgba(0,178,75,.4);
  margin-bottom: .75rem;
  animation: pulse-btn 2s ease-in-out infinite;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,178,75,.4); }
  50%       { box-shadow: 0 8px 32px rgba(0,178,75,.65); }
}

.popup-dismiss {
  font-size: .8125rem; color: var(--text-3);
  cursor: pointer; text-decoration: underline;
  margin: 0;
  transition: color var(--transition);
}
.popup-dismiss:hover { color: var(--text-2); }

/* ── Promo strip (always-visible at top) ───────────────────────── */
.promo-strip {
  background: linear-gradient(90deg, var(--green) 0%, #00d95b 100%);
  padding: .5rem 0;
  text-align: center;
  font-size: .8125rem; font-weight: 700;
  color: #fff;
  position: relative; z-index: 999;
}
.promo-strip-btn {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: .8125rem; font-weight: 700;
  padding: .2rem .85rem;
  margin-left: .6rem;
  transition: background var(--transition);
}
.promo-strip-btn:hover { background: rgba(0,0,0,.4); }

/* ── Skeleton / placeholder on image error ──────────────────────── */
img:not([src]), img[src=""] {
  background: var(--bg-3);
  min-height: 120px;
}

/* ════════════════════════════════════════════════════════════════
   LIVE BADGE (shared)
════════════════════════════════════════════════════════════════ */
.live-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,0,106,.12);
  border: 1px solid rgba(255,0,106,.25);
  color: #ff006a;
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .04em;
}
.live-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #ff006a;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

/* ════════════════════════════════════════════════════════════════
   SLOTS SECTION
════════════════════════════════════════════════════════════════ */
.slots-cat-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  display: flex; flex-direction: column;
  color: var(--text-1);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.slots-cat-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.3); box-shadow: var(--shadow-l); color: var(--text-1); }

.slots-cat-icon {
  width: 56px; height: 56px;
  background: var(--blue-dim);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--blue);
  margin: 0 auto 1rem;
}
.slots-cat-card:nth-child(1) .slots-cat-icon { background: rgba(255,195,0,.12); color: var(--gold); }
.slots-cat-card:nth-child(2) .slots-cat-icon { background: var(--blue-dim); color: var(--blue); }
.slots-cat-card:nth-child(3) .slots-cat-icon { background: rgba(0,178,75,.12); color: var(--green); }
.slots-cat-card:nth-child(4) .slots-cat-icon { background: rgba(255,0,106,.1); color: #ff006a; }

.slots-cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.slots-cat-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

.slots-feature-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  height: 100%;
  transition: border-color var(--transition);
}
.slots-feature-card:hover { border-color: rgba(0,117,255,.3); }

.slots-feat-icon {
  font-size: 1.4rem; color: var(--green);
  flex-shrink: 0; margin-top: .1rem;
}
.slots-feature-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .3rem; }
.slots-feature-card p  { font-size: .8125rem; color: var(--text-2); margin: 0; }

/* ════════════════════════════════════════════════════════════════
   TABLE GAMES
════════════════════════════════════════════════════════════════ */
.table-game-card {
  --tg-color: var(--blue);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.table-game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: rgba(var(--tg-color),.3); }

.tg-icon {
  width: 52px; height: 52px;
  background: rgba(0,0,0,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--tg-color);
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--tg-color) 15%, transparent);
}
.table-game-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.table-game-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

.tg-play-btn {
  font-size: .8125rem; font-weight: 600;
  color: var(--tg-color);
  transition: opacity var(--transition);
}
.tg-play-btn:hover { opacity: .7; }

/* ════════════════════════════════════════════════════════════════
   TVBET
════════════════════════════════════════════════════════════════ */
.tvbet-card {
  --tv-color: var(--blue);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition);
}
.tvbet-card:hover { transform: translateY(-3px); border-color: rgba(0,117,255,.25); }

.tvbet-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--tv-color);
  background: color-mix(in srgb, var(--tv-color) 14%, transparent);
  margin-bottom: .75rem;
}
.tvbet-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .35rem; }
.tvbet-card p  { font-size: .8125rem; color: var(--text-2); margin: 0; }

/* ════════════════════════════════════════════════════════════════
   POKER ROOM
════════════════════════════════════════════════════════════════ */
.poker-card {
  --pk-color: var(--blue);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.poker-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.25); }

.poker-icon {
  font-size: 2rem;
  color: var(--pk-color);
  margin-bottom: 1rem;
  display: block;
}
.poker-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.poker-card p  { font-size: .875rem; color: var(--text-2); }

.poker-freeroll-banner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(255,195,0,.08) 0%, rgba(0,178,75,.06) 100%);
  border: 1px solid rgba(255,195,0,.2);
  border-radius: var(--r-xl);
  padding: 1.5rem 2rem;
}
.pfb-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  flex-shrink: 0;
}
.pfb-text { flex: 1; }
.pfb-text h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .25rem; }
.pfb-text p  { font-size: .875rem; color: var(--text-2); margin: 0; }

/* ════════════════════════════════════════════════════════════════
   1WIN CRASH GAMES
════════════════════════════════════════════════════════════════ */
.crash-card {
  --cc-color: var(--blue);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.crash-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); border-color: rgba(0,117,255,.25); }
.crash-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, color-mix(in srgb, var(--cc-color) 20%, transparent) 0%, transparent 70%);
  pointer-events: none;
}

.crash-label {
  font-size: .7rem; font-weight: 800;
  color: var(--cc-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.crash-icon {
  font-size: 2rem;
  color: var(--cc-color);
  margin-bottom: 1rem;
}
.crash-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.crash-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

.provably-fair-bar {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  background: var(--bg-1);
  border: 1px solid rgba(0,178,75,.2);
  border-radius: var(--r-lg);
  padding: 1rem 2rem;
  font-size: .9375rem; font-weight: 600;
  color: var(--green);
}
.provably-fair-bar i { font-size: 1.25rem; }

/* ════════════════════════════════════════════════════════════════
   VIRTUAL SPORTS
════════════════════════════════════════════════════════════════ */
.virtual-card {
  --vi-color: var(--green);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  display: flex; flex-direction: column;
  color: var(--text-1);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}
.virtual-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.25); color: var(--text-1); }

.virtual-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--vi-color);
  background: color-mix(in srgb, var(--vi-color) 14%, transparent);
  margin: 0 auto 1rem;
}
.virtual-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.virtual-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

/* ════════════════════════════════════════════════════════════════
   CASES
════════════════════════════════════════════════════════════════ */
.cases-features { display: flex; flex-direction: column; gap: 1rem; }

.cases-feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.cases-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
}
.cases-feat-item h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .2rem; }
.cases-feat-item p  { font-size: .8125rem; color: var(--text-2); margin: 0; }

.cases-visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 280px;
}
.case-box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem;
  padding: 1.5rem;
  font-weight: 700; font-size: .875rem;
  transition: transform var(--transition), border-color var(--transition);
  cursor: pointer;
}
.case-box:hover { transform: translateY(-3px); }
.case-box i { font-size: 2rem; }
.case-box-1 { border-color: rgba(0,117,255,.3); }
.case-box-1 i { color: var(--blue); }
.case-box-2 { border-color: rgba(255,195,0,.3); }
.case-box-2 i { color: var(--gold); }
.case-box-3 { border-color: rgba(0,178,75,.3); }
.case-box-3 i { color: var(--green); }

.cases-cta-center {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   MOVIES
════════════════════════════════════════════════════════════════ */
.movies-free-badge {
  display: inline-flex; align-items: center;
  background: var(--green-dim);
  border: 1px solid rgba(0,178,75,.25);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: .3rem 1rem;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .04em;
}

.movies-card {
  --mv-color: var(--blue);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  display: flex; flex-direction: column;
  color: var(--text-1);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}
.movies-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.2); color: var(--text-1); }

.movies-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--mv-color);
  background: color-mix(in srgb, var(--mv-color) 14%, transparent);
  margin: 0 auto 1rem;
}
.movies-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.movies-card p  { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; }

/* ════════════════════════════════════════════════════════════════
   PAYMENTS
════════════════════════════════════════════════════════════════ */
.pay-method-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.pay-method-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.25); }

.pay-method-icon {
  width: 60px; height: 60px;
  background: var(--blue-dim);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue);
  margin: 0 auto 1rem;
}
.pay-method-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

.pay-logos {
  display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center;
}
.pay-logos span {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .3rem .6rem;
  font-size: .75rem; font-weight: 700;
  color: var(--text-2);
}

.pay-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.pay-stat {
  background: var(--bg-1);
  padding: 1.5rem;
  text-align: center;
}
.pay-stat-val {
  font-size: 1.5rem; font-weight: 900;
  color: var(--green); letter-spacing: -.02em;
  margin-bottom: .25rem;
}
.pay-stat-lbl {
  font-size: .8125rem; color: var(--text-2); font-weight: 500;
}

@media (max-width: 767px) {
  .pay-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   PROVIDERS
════════════════════════════════════════════════════════════════ */
.providers-grid {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
}
.provider-chip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: .5rem 1.25rem;
  font-size: .875rem; font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition);
  cursor: default;
}
.provider-chip:hover {
  background: var(--bg-3);
  border-color: rgba(0,117,255,.3);
  color: var(--text-1);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════════ */
.review-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.2); }

.review-stars {
  color: var(--gold);
  font-size: 1.1rem; letter-spacing: .05em;
  margin-bottom: .75rem;
}
.review-text {
  font-size: .9375rem; color: var(--text-2);
  line-height: 1.7; flex: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: .75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.review-avatar {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--blue);
}
.review-name { font-size: .9375rem; font-weight: 700; }
.review-verified { font-size: .75rem; color: var(--green); margin-top: .1rem; }

/* ════════════════════════════════════════════════════════════════
   LEGALITY / LICENSE
════════════════════════════════════════════════════════════════ */
.legal-card {
  --li-color: var(--green);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.legal-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.2); }

.legal-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--li-color);
  background: color-mix(in srgb, var(--li-color) 14%, transparent);
  margin: 0 auto 1rem;
}
.legal-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.legal-card p  { font-size: .875rem; color: var(--text-2); }

.legal-18-banner {
  display: flex; align-items: center; gap: .75rem; justify-content: center;
  background: rgba(255,0,106,.06);
  border: 1px solid rgba(255,0,106,.2);
  border-radius: var(--r-lg);
  padding: 1rem 2rem;
  font-size: .9375rem; font-weight: 700; color: #ff006a;
}

/* ════════════════════════════════════════════════════════════════
   EARNING TIPS
════════════════════════════════════════════════════════════════ */
.earn-card {
  --ei-color: var(--blue);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.earn-card:hover { transform: translateY(-4px); border-color: rgba(0,117,255,.25); }

.earn-num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
}
.earn-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--ei-color);
  background: color-mix(in srgb, var(--ei-color) 14%, transparent);
  margin-bottom: 1rem;
}
.earn-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.earn-card p  { font-size: .875rem; color: var(--text-2); }

.earn-warning {
  background: rgba(255,195,0,.06);
  border: 1px solid rgba(255,195,0,.2);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  text-align: center;
}
.earn-warning p {
  font-size: .9375rem; color: var(--gold);
  font-weight: 600; margin: 0;
}

/* ── Static Info Pages ─────────────────────────────────────────── */
.page-hero { padding: 2.5rem 0 1rem; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.info-subnav {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 70px; z-index: 99;
}
.info-subnav-links {
  display: flex; gap: .25rem; overflow-x: auto;
  padding: .5rem 0; scrollbar-width: none;
}
.info-subnav-links::-webkit-scrollbar { display: none; }
.info-subnav-link {
  white-space: nowrap;
  padding: .4rem .85rem;
  border-radius: var(--r-sm);
  font-size: .8125rem; font-weight: 600;
  color: var(--text-2);
  transition: all var(--transition);
  text-decoration: none;
}
.info-subnav-link:hover { color: var(--text-1); background: var(--bg-3); }
.info-subnav-link.active { background: var(--blue-dim); color: var(--blue); }

.page-content { min-height: calc(100vh - 220px); }

.content-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.content-card h2 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: .9rem; color: var(--text-1);
}
.content-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: .5rem; color: var(--text-1);
}
.content-card p { color: var(--text-2); line-height: 1.8; margin-bottom: .75rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul, .content-card ol { padding-left: 1.25rem; color: var(--text-2); }
.content-card li { margin-bottom: .4rem; line-height: 1.7; }
.content-card strong { color: var(--text-1); }

.stat-box {
  background: var(--bg-3);
  border-radius: var(--r-md);
  padding: 1rem;
  text-align: center;
  margin-bottom: .75rem;
}
.stat-box .stat-num { font-size: 1.65rem; font-weight: 800; color: var(--green); }
.stat-box .stat-lbl { font-size: .78rem; color: var(--text-2); margin-top: .15rem; }

.contact-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--blue-dim); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: .95rem; flex-shrink: 0;
}
.contact-label { font-size: .75rem; color: var(--text-3); margin-bottom: .1rem; }
.contact-value { color: var(--text-1); font-weight: 600; font-size: .875rem; }

.resp-tip {
  display: flex; gap: 1rem;
  background: var(--bg-3); border-radius: var(--r-md);
  padding: 1.1rem; margin-bottom: .75rem;
}
.resp-tip-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.resp-tip h3 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.resp-tip p  { font-size: .85rem; color: var(--text-2); margin: 0; }

.partner-card { text-align: center; }
.partner-card .partner-icon { font-size: 2rem; margin-bottom: .6rem; }
.commission-badge {
  display: inline-block;
  background: var(--green); color: #fff;
  border-radius: var(--r-sm);
  padding: .15rem .55rem;
  font-size: .78rem; font-weight: 700;
}

/* ── Mirror Section ────────────────────────────────────────────── */
.mirror-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.mirror-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,148,62,.07) 0%, transparent 70%);
  pointer-events: none;
}

.mirror-badge-row { margin-bottom: 1rem; }
.mirror-live-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(0,148,62,.12);
  border: 1px solid rgba(0,148,62,.3);
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .8rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .03em;
}
.mirror-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.mirror-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: .85rem;
}
.mirror-sub {
  font-size: 1rem; color: var(--text-2);
  line-height: 1.75; margin-bottom: 2rem;
  max-width: 520px;
}

.mirror-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.mirror-feat {
  display: flex; gap: .9rem; align-items: flex-start;
}
.mirror-feat-icon {
  font-size: 1.2rem; flex-shrink: 0; line-height: 1.3;
}
.mirror-feat strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: .15rem; }
.mirror-feat p { font-size: .85rem; color: var(--text-2); margin: 0; line-height: 1.6; }

.mirror-vpn-tip {
  font-size: .85rem; color: var(--text-3);
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: .65rem 1rem;
  margin: 0;
}

/* Mirror card */
.mirror-card {
  background: var(--bg-2);
  border: 1px solid rgba(0,148,62,.25);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: 0 8px 40px rgba(0,148,62,.12);
}
.mirror-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.mirror-card-logo { height: 32px; width: auto; }
.mirror-card-status {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; color: var(--green);
}
.mirror-card-dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.mirror-card-why {
  background: var(--bg-3); border-radius: var(--r-md);
  padding: 1rem; margin-bottom: 1.25rem;
}
.mirror-card-why h3 { font-size: .875rem; font-weight: 700; margin-bottom: .4rem; }
.mirror-card-why p  { font-size: .8rem; color: var(--text-2); margin: 0; line-height: 1.65; }

.mirror-cta-btn { font-size: 1rem; font-weight: 700; letter-spacing: .01em; }

.mirror-card-ssl {
  text-align: center; font-size: .75rem; color: var(--text-3);
  margin: .75rem 0 0;
}