/* =====================================================
   BonusUA — Main Stylesheet
   Mobile-first, dark casino theme
===================================================== */

/* ── CSS Variables ─────────────────────────────── */
:root {
  --bg:           #0D0F1E;
  --bg-card:      #161928;
  --bg-card2:     #1C1F35;
  --bg-header:    #080A14;
  --gold:         #F4C430;
  --gold-light:   #FFD960;
  --green:        #22C55E;
  --green-dark:   #16A34A;
  --red:          #EF4444;
  --text:         #FFFFFF;
  --text-2:       #B8C4D4;
  --text-muted:   #6B7A99;
  --border:       #252840;
  --border-gold:  rgba(244,196,48,.3);
  --border-green: rgba(34,197,94,.3);
  --shadow:       0 4px 28px rgba(0,0,0,.45);
  --shadow-sm:    0 2px 12px rgba(0,0,0,.3);
  --r:            12px;
  --r-sm:         8px;
  --font:         'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --transition:   .2s ease;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: 72px; /* catfish space */
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 0; }
button { font-family: inherit; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Layout ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }
.btn-gold {
  background: var(--gold);
  color: #0D0F1E;
  box-shadow: 0 2px 12px rgba(244,196,48,.3);
}
.btn-gold:hover { background: var(--gold-light); color: #0D0F1E; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(244,196,48,.4); }
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(34,197,94,.3);
}
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(34,197,94,.4); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #0D0F1E; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; display: flex; }

/* ── Age Notice ─────────────────────────────────── */
.age-notice {
  background: rgba(244,196,48,.08);
  border-bottom: 1px solid rgba(244,196,48,.15);
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.age-notice strong { color: var(--gold); }

/* ── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 12px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }
.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--gold); }
.main-nav { display: none; }
.main-nav ul { display: flex; list-style: none; gap: 4px; }
.main-nav a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(244,196,48,.08); }
.header-right { display: flex; align-items: center; gap: 10px; }
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.6);
  padding: 12px 16px 20px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-cta { margin-top: 16px; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0D0F1E 0%, #15103a 55%, #0f1525 100%);
  padding: 40px 0 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(244,196,48,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(34,197,94,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,196,48,.12);
  color: var(--gold);
  border: 1px solid rgba(244,196,48,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.5px;
}
.hero p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 24px;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-val {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 5px;
}

/* ── PAGE HEADER (subpages) ─────────────────────── */
.page-header {
  background: linear-gradient(160deg, #0D0F1E 0%, #15103a 55%, #0f1525 100%);
  padding: 36px 0 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 30%, rgba(244,196,48,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p { font-size: 14px; color: var(--text-2); max-width: 500px; margin: 0 auto; }

/* ── SECTION ─────────────────────────────────────── */
.section { padding: 40px 0; }
.section + .section { padding-top: 0; }
.section-head { margin-bottom: 24px; }
.section-head h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.section-head h2 em { color: var(--gold); font-style: normal; }
.section-head p { font-size: 14px; color: var(--text-2); }
.section-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 10px;
}

/* ── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 0 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb span:last-child { color: var(--text-2); }

/* ── FEATURED OFFER ─────────────────────────────── */
.featured-offer {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.featured-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #0D0F1E;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.featured-banner { width: 100%; height: 140px; object-fit: cover; }
.featured-body { padding: 18px; }
.featured-casino { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.featured-casino-logo {
  background: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  height: 40px;
  display: flex;
  align-items: center;
}
.featured-casino-logo img { height: 28px; width: auto; }
.featured-casino-name { font-size: 13px; color: var(--text-muted); }
.featured-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.featured-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.featured-body p { font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.featured-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }

/* ── BONUS CARDS ─────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}
.bonus-card-banner { width: 100%; height: 90px; object-fit: cover; }
.bonus-card-logo {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.bonus-card-logo img { max-height: 36px; width: auto; }
.bonus-card-body { padding: 14px; }
.bonus-card-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.bonus-card-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.bonus-card-desc { font-size: 13px; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.bonus-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}
.tag-gold { background: rgba(244,196,48,.12); color: var(--gold); border: 1px solid rgba(244,196,48,.2); }
.tag-green { background: rgba(34,197,94,.1); color: var(--green); border: 1px solid rgba(34,197,94,.2); }
.tag-blue { background: rgba(180,190,210,.08); color: var(--text-2); border: 1px solid rgba(180,190,210,.2); }
.bonus-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.wager-info { font-size: 11px; color: var(--text-muted); }

/* ── FS BANNER CARDS ─────────────────────────────── */
.fs-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.fs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.fs-card:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.fs-card-banner { width: 100%; height: 100px; object-fit: cover; }
.fs-card-body { padding: 14px; }
.fs-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}
.fs-number sup { font-size: 16px; vertical-align: super; }
.fs-card-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.fs-card-desc { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }

/* ── STEPS ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #0D0F1E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
}
.step-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--text-2); }

/* ── TABLE ───────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r);
  border: 1px solid var(--border);
  margin: 20px 0;
}
table { width: 100%; border-collapse: collapse; min-width: 500px; }
thead th {
  background: var(--bg-card);
  padding: 13px 16px;
  text-align: left;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr { background: var(--bg); transition: background var(--transition); }
tbody tr:nth-child(even) { background: rgba(22,25,40,.5); }
tbody tr:hover { background: var(--bg-card); }
td:first-child { color: var(--text); font-weight: 600; }
.td-logo {
  background: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  height: 30px;
  display: inline-flex;
  align-items: center;
}
.td-logo img { height: 22px; width: auto; }
.td-amount { color: var(--gold); font-weight: 700; }
.td-green { color: var(--green); font-weight: 700; }
.td-link { color: var(--green); font-weight: 700; font-size: 13px; }

/* ── INFO BOX ────────────────────────────────────── */
.info-box {
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin: 20px 0;
  border-left: 4px solid var(--gold);
  background: rgba(244,196,48,.07);
  border-top: 1px solid rgba(244,196,48,.15);
  border-right: 1px solid rgba(244,196,48,.15);
  border-bottom: 1px solid rgba(244,196,48,.15);
}
.info-box.green {
  border-left-color: var(--green);
  background: rgba(34,197,94,.07);
  border-color: rgba(34,197,94,.2);
  border-left-color: var(--green);
}
.info-box.red {
  border-left-color: var(--red);
  background: rgba(239,68,68,.07);
  border-color: rgba(239,68,68,.2);
  border-left-color: var(--red);
}
.info-box-title { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.info-box.green .info-box-title { color: var(--green); }
.info-box.red .info-box-title { color: var(--red); }
.info-box p, .info-box ul { font-size: 13px; color: var(--text-2); }

/* ── STYLED LIST ─────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 12px 0; }
.check-list li {
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--text-2);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.check-list.cross li::before { content: '✗'; color: var(--red); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { margin: 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  gap: 12px;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: rgba(244,196,48,.1);
  border: 1px solid rgba(244,196,48,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ── CATFISH ─────────────────────────────────────── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: linear-gradient(90deg, #09122a 0%, #0d1f42 50%, #09122a 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0,0,0,.6);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.catfish.visible { transform: translateY(0); }
.catfish-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.catfish-logo-wrap-mobile { display: none; }
.catfish-brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-right: 10px;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 2px;
}
.catfish-brand img { height: 14px; width: auto; filter: brightness(1.4); }
.catfish-brand-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.catfish-logo-wrap {
  flex-shrink: 0;
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  height: 38px;
  display: flex;
  align-items: center;
}
.catfish-logo-wrap img { height: 26px; width: auto; }
.catfish-text { flex: 1; min-width: 0; }
.catfish-label { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.catfish-value { display: block; font-size: 14px; font-weight: 900; color: var(--gold); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.catfish-sub { display: block; font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.catfish-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  margin-left: 2px;
  border-radius: 4px;
  transition: color var(--transition);
}
.catfish-close:hover { color: var(--text); }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding: 44px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-logo-wrap { margin-bottom: 12px; }
.footer-logo-wrap img { height: 32px; width: auto; }
.footer-logo-text { font-size: 18px; font-weight: 900; color: var(--text); }
.footer-logo-text span { color: var(--gold); }
.footer-about { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.footer-responsible img {
  height: 36px;
  width: auto;
  filter: grayscale(0.2) brightness(1.3);
  opacity: .85;
  transition: filter var(--transition), opacity var(--transition);
}
.footer-responsible img:hover { filter: grayscale(0) brightness(1.5); opacity: 1; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── REDIRECT PAGE ───────────────────────────────── */
.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 20px;
}
.redirect-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.redirect-logo-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.redirect-logo-wrap img { height: 40px; width: auto; }
.redirect-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.redirect-card p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.redirect-amount { font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 20px; display: block; }
.redirect-progress { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-top: 20px; }
.redirect-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  animation: prog 3s linear forwards;
}
@keyframes prog { from { width: 0 } to { width: 100% } }
.redirect-note { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ── UTILS ───────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 13px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 14px; }
.text-center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ── SLIDER ─────────────────────────────────────────── */
.slider-section { padding: 28px 0 8px; }
.slider-wrap { position: relative; overflow: hidden; border-radius: var(--r); }
.slider-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.slider-slide { min-width: 100%; }
.slider-slide-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.slide-banner { width: 100%; height: auto; display: block; transition: opacity .2s; }
.slide-banner-link { display: block; overflow: hidden; }
.slide-banner-link:hover .slide-banner { opacity: .85; }
.slide-body { padding: 16px 18px 20px; }
.slide-casino { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.slide-casino-logo {
  background: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  height: 36px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.slide-casino-logo img { height: 24px; width: auto; }
.slide-casino-name { font-size: 12px; color: var(--text-muted); }
.slide-amount { font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.slide-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.slide-desc { font-size: 12px; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.slide-cta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.slide-meta { font-size: 11px; color: var(--text-muted); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.slider-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 20px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ── CATEGORY NAV ─────────────────────────────────────── */
.cat-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 32px; }
.cat-nav-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), transform var(--transition), color var(--transition);
}
.cat-nav-item:hover { border-color: var(--border-gold); transform: translateY(-2px); color: var(--text); }
.cat-icon { font-size: 20px; line-height: 1; }
.cat-label { font-size: 13px; font-weight: 700; line-height: 1.2; }
.cat-count { font-size: 11px; color: var(--text-muted); }

/* ── PROMO CODE CARD ────────────────────────────────── */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
}
.promo-card:hover { border-color: var(--border-gold); }
.promo-head { display: flex; align-items: center; gap: 12px; }
.promo-logo { background: #fff; border-radius: 6px; padding: 6px 12px; height: 42px; display: flex; align-items: center; flex-shrink: 0; }
.promo-logo img { height: 28px; width: auto; }
.promo-info { flex: 1; min-width: 0; }
.promo-casino { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.promo-desc { font-size: 14px; font-weight: 700; margin-top: 2px; }
.promo-code-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.promo-code {
  background: rgba(244,196,48,.1);
  border: 2px dashed var(--gold);
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  min-width: 120px;
}
.copy-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.copy-btn:hover { border-color: var(--gold); color: var(--gold); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }
.promo-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }

/* ── SUBCATEGORY PILLS ───────────────────────────────── */
.subcat-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--transition);
}
.subcat-pill:hover, .subcat-pill.active { background: rgba(244,196,48,.1); border-color: var(--gold); color: var(--gold); }

/* ── RATING CARD ─────────────────────────────────────── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(244,196,48,.12);
  color: var(--gold);
  border: 1px solid rgba(244,196,48,.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
}
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: #0D0F1E;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 479px) {
  .catfish-logo-wrap { display: none; }
  .catfish-brand { padding-right: 8px; }
  .catfish-brand img { height: 12px; }
  .catfish-value { font-size: 13px; }
}
@media (min-width: 480px) {
  .cat-nav { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 600px) {
  .fs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: repeat(2, 1fr); }
  .promo-card { flex-direction: row; align-items: center; }
  .promo-head { flex-direction: row; flex: 1; }
  .promo-code-row { flex-wrap: nowrap; }
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .main-nav { display: flex; }
  .burger { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .hero-stat { padding: 0 24px; }
  .stat-val { font-size: 30px; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .fs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .slider-slide-inner { grid-template-columns: 1fr; }
  .slide-banner { height: 220px; object-fit: cover; object-position: center top; }
  .slide-body { padding: 20px 24px; }
  .slide-amount { font-size: 26px; }
  .slide-title { font-size: 16px; }
  .slide-desc { font-size: 13px; }
  .section-head h2 { font-size: 26px; }
  .page-header h1 { font-size: 30px; }
  .catfish-value { font-size: 16px; }
}
@media (min-width: 1024px) {
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .fs-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .hero h1 { font-size: 48px; }
  .page-header h1 { font-size: 36px; }
  .section-head h2 { font-size: 30px; }
  .container { padding: 0 24px; }
}
