/* =============================================================
   BOOMERANG CASINO — OFFIZIELL.DE — Main Stylesheet
   Brand: dark navy #0d1b2e | Pink #e91e8c | Purple #7c3cf8
   ============================================================= */

/* ----- Variables ----- */
:root {
  --bg:        #0b1626;
  --bg2:       #111f35;
  --bg3:       #162038;
  --card:      #1a2845;
  --card2:     #1e3054;
  --border:    rgba(255,255,255,0.07);
  --pink:      #e91e8c;
  --pink2:     #c41478;
  --purple:    #7c3cf8;
  --purple2:   #5b2ad6;
  --blue:      #2563eb;
  --gold:      #f59e0b;
  --green:     #10b981;
  --red:       #ef4444;
  --white:     #ffffff;
  --t1:        #f1f5f9;
  --t2:        #94a3b8;
  --t3:        #64748b;
  --grad:      linear-gradient(135deg, #e91e8c 0%, #7c3cf8 100%);
  --grad2:     linear-gradient(135deg, #7c3cf8 0%, #2563eb 100%);
  --grad-card: linear-gradient(135deg, rgba(233,30,140,.12) 0%, rgba(124,60,248,.12) 100%);
  --shadow:    0 8px 32px rgba(0,0,0,.45);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --glow:      0 0 40px rgba(233,30,140,.25);
  --glow2:     0 0 40px rgba(124,60,248,.25);
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      22px;
  --r-xl:      32px;
  --tr:        all .3s cubic-bezier(.25,.8,.25,1);
  --tr-fast:   all .15s ease;
  --container: 1200px;
  --header-h:  72px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--tr-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ----- Typography ----- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Exo 2', 'Arial Black', Impact, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title { margin-bottom: 2.5rem; text-align: center; }
.section-title span { display: block; color: var(--t2); font-size: 1rem; font-weight: 400; margin-top: .4rem; letter-spacing: 2px; text-transform: uppercase; }

/* ----- Layout ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

/* ----- Grid ----- */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5  { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px;
  border-radius: var(--r-xl); font-weight: 700; font-size: 1rem;
  transition: var(--tr); position: relative; overflow: hidden;
  white-space: nowrap; text-decoration: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: var(--tr-fast);
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--grad); color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,140,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(233,30,140,.55); }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

.btn-ghost {
  background: rgba(255,255,255,.06); color: var(--t1);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000; box-shadow: 0 4px 20px rgba(245,158,11,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.55); }

.btn-lg { padding: 18px 40px; font-size: 1.15rem; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-block { width: 100%; }

/* ----- CTA Tracker Button ----- */
.btn-cta {
  background: var(--grad); color: var(--white);
  padding: 12px 26px; border-radius: var(--r-xl);
  font-weight: 800; font-size: .95rem;
  box-shadow: 0 4px 18px rgba(233,30,140,.45);
  transition: var(--tr); display: inline-flex; align-items: center; gap: 6px;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(233,30,140,.6); }
.btn-cta .pulse { animation: pulse-dot 1.5s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,22,38,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600; color: var(--t2);
  transition: var(--tr-fast);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.08); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-login {
  padding: 9px 20px; border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--t1); font-weight: 600; font-size: .9rem;
  transition: var(--tr-fast);
}
.header-login:hover { border-color: var(--pink); color: var(--pink); }

/* Mobile top bar (tracker link) */
.mobile-top-bar {
  display: none;
  background: var(--grad);
  padding: 10px 20px; text-align: center;
}
.mobile-top-bar a {
  color: var(--white); font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
  background: rgba(255,255,255,.06); border-radius: var(--r-sm);
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--tr-fast);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 16px 20px 24px;
}
.mobile-nav a {
  padding: 12px 16px; border-radius: var(--r-sm);
  font-weight: 600; color: var(--t2); display: block;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-nav .mobile-cta-wrap { margin-top: 16px; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 80px; min-height: 560px;
  display: flex; align-items: center;
  background: var(--bg2);
}
.hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,60,248,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(233,30,140,.15); border: 1px solid rgba(233,30,140,.3);
  color: var(--pink); padding: 6px 16px; border-radius: var(--r-xl);
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--t2); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 500px; opacity: .9;
}

/* Hero variations */
.hero-inner {
  padding: 60px 0 50px; min-height: 340px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
}
.hero-inner .hero-content { max-width: 700px; }
.hero-inner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* Hero stats bar */
.hero-stats {
  display: flex; gap: 32px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-item .num {
  font-size: 1.9rem; font-weight: 900; font-family: 'Exo 2', sans-serif;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.hero-stat-item .lbl { font-size: .8rem; color: var(--t3); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(233,30,140,.2); }
.card-body { padding: 24px; }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; display: block; }

/* Bonus card */
.bonus-card {
  background: var(--grad-card); border: 1px solid rgba(233,30,140,.2);
  border-radius: var(--r-lg); padding: 28px; transition: var(--tr);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.bonus-badge {
  display: inline-block; background: var(--grad);
  color: var(--white); font-size: .75rem; font-weight: 800;
  padding: 4px 12px; border-radius: var(--r-xl); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}
.bonus-amount {
  font-size: 2.4rem; font-weight: 900; font-family: 'Exo 2', sans-serif;
  line-height: 1; margin-bottom: 6px;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.bonus-sub { color: var(--t2); font-size: .9rem; margin-bottom: 16px; }

/* Game card */
.game-card { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--card); cursor: pointer; }
.game-card-img { position: relative; overflow: hidden; }
.game-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: var(--tr); }
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--tr);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-info { padding: 12px 14px; }
.game-card-info h4 { font-size: .95rem; margin-bottom: 4px; }
.game-card-info .provider { font-size: .78rem; color: var(--t3); }

/* Feature card */
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 28px; text-align: center; transition: var(--tr);
}
.feature-card:hover { border-color: rgba(124,60,248,.3); box-shadow: var(--glow2); transform: translateY(-4px); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--grad-card); border: 1px solid rgba(124,60,248,.25);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--t2); }

/* Stat card */
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 24px; text-align: center;
}
.stat-card .stat-num {
  font-size: 2.5rem; font-weight: 900; font-family: 'Exo 2', sans-serif;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.stat-card .stat-label { color: var(--t2); font-size: .9rem; margin-top: 6px; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); }
.tbl {
  width: 100%; border-collapse: collapse; min-width: 520px;
  background: var(--card); border-radius: var(--r-md);
}
.tbl thead { background: var(--grad); }
.tbl thead th {
  padding: 14px 18px; text-align: left;
  font-size: .875rem; font-weight: 700; color: var(--white);
  white-space: nowrap;
}
.tbl tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.tbl tbody tr:last-child { border-bottom: none; }
.tbl tbody tr:hover { background: var(--card2); }
.tbl tbody td { padding: 13px 18px; font-size: .9rem; color: var(--t1); vertical-align: middle; }
.tbl td.highlight { color: var(--pink); font-weight: 700; }
.tbl td.green { color: var(--green); font-weight: 700; }
.tbl td.gold { color: var(--gold); font-weight: 700; }

.tbl-striped tbody tr:nth-child(even) { background: rgba(255,255,255,.03); }

/* Rating stars */
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }

/* Badges */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--r-xl);
  font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.badge-pink  { background: rgba(233,30,140,.2); color: var(--pink); border: 1px solid rgba(233,30,140,.3); }
.badge-green { background: rgba(16,185,129,.2); color: var(--green); border: 1px solid rgba(16,185,129,.3); }
.badge-gold  { background: rgba(245,158,11,.2); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }
.badge-blue  { background: rgba(37,99,235,.2); color: #60a5fa; border: 1px solid rgba(37,99,235,.3); }
.badge-gray  { background: rgba(100,116,139,.2); color: var(--t2); border: 1px solid rgba(100,116,139,.3); }

/* ============================================================
   CHARTS (CSS / SVG-based, no dependencies)
   ============================================================ */

/* Bar chart */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-label { width: 160px; font-size: .875rem; color: var(--t2); flex-shrink: 0; text-align: right; }
.bar-track {
  flex: 1; height: 10px; background: rgba(255,255,255,.08);
  border-radius: 10px; overflow: hidden; min-width: 80px;
}
.bar-fill {
  height: 100%; border-radius: 10px;
  background: var(--grad);
  transform-origin: left; animation: barGrow 1s ease forwards;
  transform: scaleX(0);
}
.bar-value { width: 50px; font-size: .875rem; font-weight: 700; color: var(--t1); flex-shrink: 0; }

@keyframes barGrow { to { transform: scaleX(1); } }

/* Horizontal bar chart alt */
.hbar-chart { display: flex; flex-direction: column; gap: 18px; }
.hbar-item {}
.hbar-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.hbar-name { font-size: .9rem; font-weight: 600; }
.hbar-pct  { font-size: .9rem; color: var(--pink); font-weight: 700; }
.hbar-track { height: 8px; background: rgba(255,255,255,.08); border-radius: 8px; overflow: hidden; }
.hbar-fill { height: 100%; border-radius: 8px; background: var(--grad); animation: barGrow 1.2s ease forwards; transform: scaleX(0); transform-origin: left; }

/* Donut / SVG chart */
.donut-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; }
.donut-leg-item { display: flex; align-items: center; gap: 10px; }
.donut-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.donut-leg-item span { font-size: .875rem; color: var(--t2); }
.donut-leg-item strong { margin-left: auto; padding-left: 24px; font-size: .875rem; }

/* Progress ring */
.progress-ring-wrap { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.prog-item { text-align: center; }
.prog-item .prog-label { font-size: .8rem; color: var(--t2); margin-top: 6px; }
.prog-item .prog-val { font-size: 1rem; font-weight: 800; fill: var(--white); }

/* Gauge bar */
.gauge-wrap { position: relative; height: 24px; background: rgba(255,255,255,.08); border-radius: 24px; overflow: hidden; margin: 8px 0; }
.gauge-fill { position: absolute; top: 0; left: 0; height: 100%; border-radius: 24px; }
.gauge-label { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: .78rem; font-weight: 700; color: var(--white); }

/* Timeline / steps */
.steps { display: flex; gap: 0; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 160px; text-align: center; padding: 0 16px;
  position: relative;
}
.step::after {
  content: ''; position: absolute; top: 22px; right: -1px;
  width: 24px; height: 2px; background: var(--border);
}
.step:last-child::after { display: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: var(--white);
  font-weight: 900; font-size: 1.1rem; font-family: 'Exo 2', sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; box-shadow: var(--glow);
}
.step-title { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.step-desc  { font-size: .83rem; color: var(--t2); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--t2); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06); border: 1.5px solid var(--border);
  color: var(--white); border-radius: var(--r-sm);
  font-size: 1rem; transition: var(--tr-fast);
  outline: none;
}
.form-control:focus { border-color: var(--pink); background: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(233,30,140,.15); }
.form-control::placeholder { color: var(--t3); }
.form-control.has-error { border-color: var(--red); }
.form-error { font-size: .8rem; color: var(--red); margin-top: 4px; }
.form-hint  { font-size: .8rem; color: var(--t3); margin-top: 4px; }

.input-group { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); opacity: .5; pointer-events: none; }
.input-group .form-control { padding-left: 44px; }
.input-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); opacity: .5; cursor: pointer; }

.checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.checkbox-wrap span { font-size: .875rem; color: var(--t2); }
.checkbox-wrap a { color: var(--pink); }
.checkbox-wrap a:hover { text-decoration: underline; }

.form-divider { text-align: center; margin: 20px 0; color: var(--t3); font-size: .875rem; position: relative; }
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%; width: calc(50% - 28px); height: 1px; background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* Auth card */
.auth-wrap {
  min-height: calc(100vh - var(--header-h) - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
}
.auth-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px; width: 100%; max-width: 480px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo img { height: 48px; margin: 0 auto; }
.auth-title { text-align: center; margin-bottom: 8px; }
.auth-sub { text-align: center; color: var(--t2); font-size: .9rem; margin-bottom: 32px; }

/* Social login */
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-weight: 600; font-size: .9rem; color: var(--t1); transition: var(--tr-fast);
  margin-bottom: 10px;
}
.social-btn:hover { border-color: var(--pink); background: rgba(233,30,140,.06); }

/* ============================================================
   PAYMENT ICONS ROW
   ============================================================ */
.payment-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.payment-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--tr-fast); min-width: 80px; height: 50px;
}
.payment-item:hover { border-color: rgba(233,30,140,.3); background: var(--card2); }
.payment-item img { max-height: 28px; width: auto; }
.payment-item span { font-size: .75rem; font-weight: 700; color: var(--t2); }

/* ============================================================
   AUTHOR SECTION
   ============================================================ */
.author-section {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; margin: 40px 0;
  display: flex; gap: 24px; align-items: flex-start;
}
.author-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 3px solid; border-image: var(--grad) 1;
  box-shadow: var(--glow);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.author-role { font-size: .82rem; color: var(--pink); font-weight: 600; margin-bottom: 10px; display: block; text-transform: uppercase; letter-spacing: 1px; }
.author-bio { font-size: .9rem; color: var(--t2); line-height: 1.6; }
.author-meta { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.author-meta-item { font-size: .8rem; color: var(--t3); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   SEO TEXT / ARTICLE
   ============================================================ */
.seo-article {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
  margin: 40px 0;
}
.seo-article h2 { font-size: 1.8rem; margin-bottom: 16px; margin-top: 32px; }
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 { font-size: 1.25rem; margin-bottom: 12px; margin-top: 24px; }
.seo-article p { font-size: .975rem; color: var(--t2); margin-bottom: 16px; line-height: 1.8; }
.seo-article ul, .seo-article ol { padding-left: 20px; margin-bottom: 16px; }
.seo-article ul { list-style: disc; }
.seo-article ol { list-style: decimal; }
.seo-article li { font-size: .95rem; color: var(--t2); margin-bottom: 8px; line-height: 1.7; }
.seo-article a { color: var(--pink); border-bottom: 1px solid rgba(233,30,140,.3); }
.seo-article a:hover { border-color: var(--pink); }
.seo-article strong { color: var(--t1); }
.seo-article blockquote {
  border-left: 3px solid var(--pink); padding-left: 20px;
  margin: 20px 0; color: var(--t2); font-style: italic;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px;
  font-weight: 700; font-size: .975rem; color: var(--t1);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .15s; cursor: pointer;
}
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-q.open { background: rgba(233,30,140,.07); color: var(--pink); }
.faq-q .faq-arrow { font-size: 1.2rem; flex-shrink: 0; transition: transform .25s; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; }
.faq-a.open { padding: 14px 20px 20px; max-height: 500px; }
.faq-a p { font-size: .9rem; color: var(--t2); line-height: 1.7; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--grad); border-radius: var(--r-lg);
  padding: 36px 40px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.promo-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.promo-banner::after {
  content: ''; position: absolute; bottom: -60px; left: 40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.07); border-radius: 50%;
}
.promo-banner h3 { font-size: 1.6rem; position: relative; z-index: 1; }
.promo-banner p { color: rgba(255,255,255,.85); margin-top: 6px; position: relative; z-index: 1; }
.promo-banner .promo-action { position: relative; z-index: 1; }

.info-banner {
  background: rgba(124,60,248,.1); border: 1px solid rgba(124,60,248,.25);
  border-radius: var(--r-md); padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start; margin: 24px 0;
}
.info-banner .icon { font-size: 1.3rem; flex-shrink: 0; }
.info-banner p { font-size: .9rem; color: var(--t2); }

/* ============================================================
   REVIEW CARD
   ============================================================ */
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px; }
.review-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.review-meta h4 { font-size: .975rem; }
.review-meta .review-date { font-size: .78rem; color: var(--t3); }
.review-body { font-size: .9rem; color: var(--t2); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080f1c;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; color: var(--t3); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--t1); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: var(--t3); transition: color .15s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; gap: 20px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.footer-legal { font-size: .78rem; color: var(--t3); max-width: 70%; line-height: 1.6; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 6px 12px;
  font-size: .75rem; color: var(--t2); white-space: nowrap; font-weight: 600;
}
.footer-cta-wrap { margin-top: 20px; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-pink   { color: var(--pink); }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.text-muted  { color: var(--t2); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.hidden { display: none !important; }

/* Divider */
.divider { width: 60px; height: 4px; background: var(--grad); border-radius: 4px; margin: 16px 0; }
.divider-center { margin: 16px auto; }

/* Tag */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-xl);
  font-size: .78rem; font-weight: 600; border: 1px solid;
}

/* Alert */
.alert {
  padding: 14px 18px; border-radius: var(--r-sm); font-size: .9rem; margin-bottom: 16px;
  display: flex; gap: 10px; align-items: flex-start;
}
.alert-success { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: #34d399; }
.alert-warning { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #fbbf24; }
.alert-info    { background: rgba(124,60,248,.12);  border: 1px solid rgba(124,60,248,.3);  color: #a78bfa; }

/* Highlight box */
.highlight-box {
  background: var(--grad-card); border: 1px solid rgba(233,30,140,.2);
  border-radius: var(--r-md); padding: 20px 24px; margin: 20px 0;
}

/* Provider logos */
.providers-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.provider-chip {
  background: var(--card); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 600; color: var(--t2);
  transition: var(--tr-fast);
}
.provider-chip:hover { border-color: var(--purple); color: var(--white); }

/* Sticky CTA mobile */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 16px; background: rgba(8,15,28,.95);
  border-top: 1px solid var(--border); backdrop-filter: blur(10px);
}
.sticky-mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Trust icons */
.trust-bar { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: center; padding: 20px 0; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--t2); }
.trust-item svg { opacity: .7; }

/* Breadcrumbs */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--t3); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--t3); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--t1); }

/* Loading bar (decorative) */
.loading-bar { height: 3px; background: var(--grad); position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transform: scaleX(0); transform-origin: left; }

/* Notification dot */
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  from { background-position: -200px 0; }
  to   { background-position: 200px 0; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(233,30,140,.3); }
  50% { box-shadow: 0 0 40px rgba(233,30,140,.6); }
}

.animate-in { animation: fadeInUp .6s ease forwards; opacity: 0; }
.animate-in-delay-1 { animation-delay: .1s; }
.animate-in-delay-2 { animation-delay: .2s; }
.animate-in-delay-3 { animation-delay: .3s; }
.animate-in-delay-4 { animation-delay: .4s; }
.float { animation: float 4s ease-in-out infinite; }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */

/* Home - category tabs */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.cat-tab {
  padding: 8px 18px; border-radius: var(--r-xl);
  font-size: .875rem; font-weight: 600; color: var(--t2);
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer; transition: var(--tr-fast);
}
.cat-tab:hover, .cat-tab.active { background: var(--grad); color: var(--white); border-color: transparent; }

/* App page - mockup */
.app-hero-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.app-mockup { position: relative; max-width: 320px; margin: 0 auto; }
.app-mockup img { width: 100%; animation: float 5s ease-in-out infinite; drop-shadow: 0 20px 40px rgba(0,0,0,.5); }

/* App badge */
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.app-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--r-md);
  transition: var(--tr-fast);
}
.app-badge:hover { border-color: var(--pink); }
.app-badge .app-badge-text small { display: block; font-size: .7rem; color: var(--t3); }
.app-badge .app-badge-text strong { font-size: .95rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .hero-img { width: 380px; opacity: .6; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .burger { display: flex; }
  .mobile-top-bar { display: block; }
  .sticky-mobile-cta { display: block; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-img { display: none; }
  .app-hero-layout { grid-template-columns: 1fr; }
  .app-mockup { max-width: 220px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .bar-label { width: 110px; font-size: .8rem; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { text-align: center; }
  .promo-banner { padding: 24px; }
  .promo-banner h3 { font-size: 1.3rem; }
  .author-section { flex-direction: column; }
  .seo-article { padding: 24px; }
  .seo-article h2 { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-legal { max-width: 100%; }
  .steps { flex-direction: column; gap: 20px; }
  .step::after { display: none; }
  .donut-wrap { flex-direction: column; }
  .auth-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat-item .num { font-size: 1.5rem; }
  .btn-lg { padding: 15px 28px; font-size: 1rem; }
  .bonus-amount { font-size: 2rem; }
  .payment-row { gap: 8px; }
  .payment-item { min-width: 65px; padding: 8px 10px; }
  .tbl thead th, .tbl tbody td { padding: 10px 12px; font-size: .82rem; }
}

/* ============================================================
   SKIP NAVIGATION (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 12px 22px; background: var(--pink); color: #fff;
  border-radius: var(--r-sm); font-weight: 700; font-size: .9rem;
  z-index: 99999; text-decoration: none;
  transition: top .2s ease; border: 2px solid #fff;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   FOCUS VISIBLE — WCAG AA
   ============================================================ */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ============================================================
   AUTH FORMS (login / registraciya pages)
   ============================================================ */
.auth-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.auth-header { margin-bottom: 28px; }
.auth-header h2 { margin-bottom: 6px; }
.auth-header p { color: var(--t2); font-size: .9rem; }
.auth-header p a { color: var(--pink); }
.auth-header p a:hover { text-decoration: underline; }

.auth-form label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--t2); margin-bottom: 6px;
}
.auth-form .form-group { margin-bottom: 18px; }
.auth-form input:not([type="checkbox"]),
.auth-form select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid var(--border);
  color: var(--white); border-radius: var(--r-sm);
  font-size: 1rem; transition: var(--tr-fast); outline: none;
  -webkit-appearance: none; appearance: none;
}
.auth-form input:focus:not([type="checkbox"]),
.auth-form select:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}
.auth-form input.has-error { border-color: var(--red); }
.auth-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.auth-form input[type="date"] { color-scheme: dark; }
.auth-form input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--pink); cursor: pointer; flex-shrink: 0; }

/* Password reveal button */
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 52px !important; }
.pass-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  opacity: .55; cursor: pointer; background: none; border: none;
  font-size: 1.1rem; padding: 4px; transition: opacity .15s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.pass-toggle:hover { opacity: 1; }

/* ============================================================
   COOKIE CONSENT BANNER (GDPR)
   ============================================================ */
.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: rgba(8,15,28,.97); border-top: 1px solid var(--border);
  padding: 20px 24px; display: none;
  align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.cookie-consent.cc-visible { display: flex; }
.cookie-consent-text {
  flex: 1; min-width: 260px;
  font-size: .875rem; color: var(--t2); line-height: 1.6;
}
.cookie-consent-text a { color: var(--pink); }
.cookie-consent-text a:hover { text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-consent-actions .btn-cookie-accept {
  padding: 11px 24px; border-radius: var(--r-xl);
  background: var(--grad); color: #fff; font-weight: 700;
  font-size: .875rem; border: none; cursor: pointer; transition: var(--tr);
}
.cookie-consent-actions .btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,30,140,.4); }
.cookie-consent-actions .btn-cookie-decline {
  padding: 11px 20px; border-radius: var(--r-xl);
  background: transparent; color: var(--t2);
  border: 1px solid var(--border); font-size: .875rem;
  cursor: pointer; transition: var(--tr-fast);
}
.cookie-consent-actions .btn-cookie-decline:hover { color: var(--t1); border-color: rgba(255,255,255,.3); }

@media (max-width: 600px) {
  .cookie-consent { padding: 16px; }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions .btn-cookie-accept,
  .cookie-consent-actions .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ============================================================
   HIDDEN ON MOBILE utility
   ============================================================ */
@media (max-width: 1024px) {
  .hidden-mobile { display: none !important; }
}

/* ============================================================
   MAIN LANDMARK
   ============================================================ */
main { display: block; min-height: 60vh; }

/* ============================================================
   FAQ — ARIA IMPROVEMENTS
   ============================================================ */
.faq-q[aria-expanded="true"] { background: rgba(233,30,140,.07); color: var(--pink); }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a[hidden] { display: none; }
.faq-a:not([hidden]) { padding: 14px 20px 20px; max-height: none; overflow: visible; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bar-fill, .hbar-fill { transform: scaleX(1) !important; }
  html { scroll-behavior: auto; }
}
