/* =============================================
   BETTING BRAINIAC: DARK LUXURY DESIGN SYSTEM
   Navy + Gold · Inter · freebets.com-inspired
   ============================================= */

:root {
    --navy-900: #060f21;
    --navy-800: #0c1b35;
    --navy-700: #122548;
    --navy-600: #1a3060;
    --gold:     #c9a84c;
    --gold-lt:  #f0c040;
    --gold-dk:  #a8892e;
    --white:    #ffffff;
    --gray-50:  #f8f9fc;
    --gray-100: #eef0f5;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #374151;
    --gray-900: #111827;
    --green:    #10b981;
    --green-bg: #d1fae5;
    --red:      #ef4444;
    --font:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-full: 9999px;
    --sh-sm: 0 1px 3px rgba(0,0,0,.08);
    --sh-md: 0 4px 12px rgba(0,0,0,.1);
    --sh-lg: 0 8px 24px rgba(0,0,0,.12);
    --sh-xl: 0 16px 40px rgba(0,0,0,.18);
    --t: 200ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 22px; border-radius: var(--r-md); font-weight: 600; font-size: .95rem; border: 2px solid transparent; transition: all var(--t); white-space: nowrap; cursor: pointer; }
.btn-gold { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,.4); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-outline-navy { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }

/* Compliance Bar */
.compliance-bar { background: var(--navy-900); color: rgba(255,255,255,.7); font-size: .78rem; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.compliance-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.compliance-link { color: var(--gold); font-weight: 600; }
.compliance-link:hover { color: var(--gold-lt); }

/* Header */
.site-header { background: var(--navy-800); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 16px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 1rem; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1.1; }
.logo-tagline { font-size: .68rem; color: var(--gold); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; }
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--gold-lt); font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta { background: var(--gold); color: var(--navy-900); padding: 8px 18px; border-radius: var(--r-md); font-size: .85rem; font-weight: 700; }
.nav-cta:hover { background: var(--gold-lt); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; flex-direction: column; background: var(--navy-700); border-top: 1px solid rgba(255,255,255,.08); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mobile-nav.open { max-height: 320px; }
.mobile-link { padding: 13px 20px; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-link:hover { color: var(--gold-lt); }
.mobile-help { color: var(--gold) !important; }

/* Hero */
.hero { background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 55%, #1e1b4b 100%); padding: 5rem 0 4rem; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(201,168,76,.06) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.hero-badge { display: inline-block; background: rgba(201,168,76,.18); color: var(--gold-lt); border: 1px solid rgba(201,168,76,.4); border-radius: var(--r-full); padding: 5px 14px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.hero-h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; color: var(--white); }
.hero-accent { color: var(--gold-lt); }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.75); max-width: 580px; margin: 0 auto 2rem; }
.hero-total-wrap { display: inline-flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-xl); padding: 14px 24px; margin-bottom: 2rem; backdrop-filter: blur(8px); }
.hero-total-val { font-size: 2.2rem; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.hero-total-label { font-size: .85rem; color: rgba(255,255,255,.7); text-align: left; max-width: 200px; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2rem; }
.trust-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.9); border-radius: var(--r-full); padding: 7px 14px; font-size: .8rem; font-weight: 500; }
.hero-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.h-stat { text-align: center; }
.h-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.h-stat span { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

/* Offers Section */
.offers-section { padding: 3rem 0 4rem; background: var(--gray-50); }
.offers-toolbar { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap; }
.toolbar-left { display: flex; flex-direction: column; gap: .2rem; }
.toolbar-title { font-size: 1.5rem; font-weight: 800; color: var(--navy-800); }
.results-info { font-size: .85rem; color: var(--gray-500); }
.results-info strong { color: var(--navy-800); }
.toolbar-right { display: flex; align-items: center; gap: .6rem; }
.sort-select { padding: 9px 32px 9px 12px; border: 2px solid var(--gray-200); border-radius: var(--r-md); font-size: .88rem; font-weight: 500; color: var(--gray-700); background: var(--white); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.sort-select:focus { outline: none; border-color: var(--gold); }
.filter-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 2px solid var(--gray-200); border-radius: var(--r-md); background: var(--white); font-size: .88rem; font-weight: 600; color: var(--gray-700); transition: all var(--t); }
.filter-toggle:hover, .filter-toggle.active { border-color: var(--navy-600); color: var(--navy-600); }

/* Filter Panel */
.filter-panel { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; display: none; animation: slideDown .2s ease; }
.filter-panel.open { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.filter-search-row { display: flex; align-items: center; gap: 8px; border: 2px solid var(--gray-200); border-radius: var(--r-md); padding: 8px 12px; margin-bottom: 1.25rem; background: var(--gray-50); }
.filter-search { border: none; background: transparent; font-size: .9rem; width: 100%; color: var(--gray-700); }
.filter-search:focus { outline: none; }
.filter-groups { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filter-group { display: flex; flex-direction: column; gap: .5rem; }
.filter-label { font-size: .75rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .07em; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { padding: 5px 14px; border: 2px solid var(--gray-200); border-radius: var(--r-full); font-size: .82rem; font-weight: 600; color: var(--gray-700); background: var(--white); transition: all var(--t); cursor: pointer; }
.chip:hover { border-color: var(--navy-600); color: var(--navy-600); }
.chip.active { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.filter-checks { display: flex; flex-wrap: wrap; gap: .5rem .75rem; }
.fcheck { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 500; color: var(--gray-700); cursor: pointer; }
.fcheck input { width: 15px; height: 15px; accent-color: var(--navy-800); cursor: pointer; }
.filter-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--gray-200); }
.filter-count { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.clear-btn { background: none; border: none; color: var(--red); font-size: .85rem; font-weight: 600; padding: 0; }
.clear-btn:hover { color: #c53030; }

/* Compare Bar */
.compare-bar { display: none; align-items: center; gap: 1rem; background: var(--navy-800); color: var(--white); border-radius: var(--r-md); padding: 12px 20px; margin-bottom: 1rem; font-size: .9rem; font-weight: 500; }
.compare-bar.visible { display: flex; }
.compare-bar strong { color: var(--gold-lt); }
.compare-clear { background: none; border: none; color: rgba(255,255,255,.6); font-size: .85rem; margin-left: auto; }
.compare-clear:hover { color: var(--white); }

/* Offer Cards */
.offers-list { display: flex; flex-direction: column; gap: 1rem; }
.offer-card {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    position: relative;
}
.offer-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gray-200);
    border-radius: var(--r-xl) 0 0 var(--r-xl);
    transition: background 220ms ease;
}
.offer-card:hover {
    border-color: rgba(201,168,76,.5);
    box-shadow: 0 6px 24px rgba(0,0,0,.11);
    transform: translateY(-2px);
}
.offer-card:hover::before { background: var(--gold); }
.offer-card[data-rank="1"] {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,.2);
}
.offer-card[data-rank="1"]::before { background: var(--gold); }
.offer-card[data-rank="1"]::after {
    content: 'TOP PICK';
    position: absolute;
    top: 10px; right: -24px;
    background: var(--gold);
    color: var(--navy-900);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 3px 30px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 10;
}

.offer-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-width: 44px;
    background: var(--navy-800);
    color: var(--gold-lt);
    font-size: 1rem;
    font-weight: 800;
    align-self: stretch;
    flex-shrink: 0;
}
.offer-card[data-rank="1"] .offer-rank { background: var(--gold); color: var(--navy-900); font-size: 1.1rem; }

/* ── Brand Logo Box ───────────────────────────────────────────────────── */
.offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-width: 120px;
    height: 120px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    padding: 0;
    align-self: center;
    flex-shrink: 0;
    margin: 12px 10px 12px 16px;
    position: relative;
    overflow: hidden;
}
/* very subtle brand-tinted wash behind the wordmark */
.offer-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bm-color, transparent);
    opacity: 0.05;
    pointer-events: none;
}
/* coloured bottom accent strip */
.offer-logo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--bm-color, #94a3b8);
}
.offer-logo span {
    position: relative; /* sit above ::before wash */
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--bm-color, #374151);
    hyphens: auto;
    word-break: break-word;
    max-width: 112px;
}
.offer-logo img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    box-sizing: border-box;
    display: block;
}
/* ── Brand colours (sets --bm-color on each logo class) ─────────────── */
.logo-wh   { --bm-color: #004834; }
.logo-888  { --bm-color: #ff6500; }
.logo-32r  { --bm-color: #cc0000; }
.logo-bsn  { --bm-color: #003087; }
.logo-10b  { --bm-color: #e87722; }
.logo-ub   { --bm-color: #007a33; }
.logo-pps  { --bm-color: #1b1f3b; }
.logo-bwn  { --bm-color: #d52b1e; }
/* Betting */
.logo-lb   { --bm-color: #c0392b; }
.logo-jb   { --bm-color: #1a237e; }
.logo-bsf  { --bm-color: #e8351e; }
.logo-co   { --bm-color: #e85f25; }
.logo-bob  { --bm-color: #1b5e20; }
.logo-bno  { --bm-color: #b71c1c; }
/* Casino */
.logo-cs   { --bm-color: #8e24aa; }
.logo-nc   { --bm-color: #0d47a1; }
.logo-hpa  { --bm-color: #e53935; }
.logo-bf   { --bm-color: #003c32; }
.logo-777  { --bm-color: #f57c00; }
.logo-bth  { --bm-color: #7b1fa2; }
.logo-bv   { --bm-color: #002d72; }
/* Bingo */
.logo-swb  { --bm-color: #9c27b0; }
.logo-amb  { --bm-color: #e65100; }
.logo-mrq  { --bm-color: #1565c0; }
.logo-888l { --bm-color: #c2185b; }
.logo-bbz  { --bm-color: #f57f17; }
.logo-jj   { --bm-color: #c62828; }
.logo-zeus { --bm-color: #1a237e; }
/* Casino additions */
.logo-crl  { --bm-color: #00897b; }
.logo-bdm  { --bm-color: #283593; }
.logo-rbn  { --bm-color: #2e7d32; }
.logo-nmn  { --bm-color: #6a1b9a; }
.logo-lbr  { --bm-color: #0277bd; }
.logo-bkb  { --bm-color: #c62828; }
/* Poker */
.logo-ps   { --bm-color: #d50000; }
.logo-gg   { --bm-color: #b8860b; }
/* African */
.logo-1x   { --bm-color: #1565c0; }
.logo-btk  { --bm-color: #00796b; }
.logo-mb   { --bm-color: #1976d2; }
.logo-hb   { --bm-color: #388e3c; }
.logo-22b  { --bm-color: #e64a19; }

.offer-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.offer-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem .85rem;
    flex-wrap: wrap;
}
.offer-brand { min-width: 140px; flex-shrink: 0; }
.offer-name { font-size: 1.05rem; font-weight: 800; color: var(--navy-800); margin-bottom: .2rem; letter-spacing: -.01em; }
.offer-stars { display: flex; align-items: center; gap: 5px; margin-bottom: .3rem; }
.stars { color: #f59e0b; font-size: .9rem; }
.rating-num { font-size: .78rem; color: var(--gray-500); font-weight: 600; }
.badge { display: inline-block; padding: 3px 10px; border-radius: var(--r-full); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-pick    { background: rgba(201,168,76,.14); color: #7a580e; border: 1px solid rgba(201,168,76,.4); }
.badge-value   { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.badge-popular { background: #ede9fe; color: #5b21b6; border: 1px solid #c4b5fd; }

.offer-val-col {
    flex: 1;
    min-width: 150px;
    padding: .25rem 1rem;
    border-left: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
}
.offer-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: .2rem;
    letter-spacing: -.03em;
}
.offer-card[data-rank="1"] .offer-amount { font-size: 2.7rem; }
.offer-headline { font-size: .88rem; font-weight: 700; color: var(--navy-800); margin-bottom: .25rem; line-height: 1.35; }
.offer-valid { font-size: .76rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 3px; }

.offer-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    padding: 0 .25rem;
}
.claim-btn {
    padding: 13px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    border-radius: var(--r-lg) !important;
    position: relative;
    overflow: hidden;
    min-width: 148px;
}
.claim-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 500ms ease;
}
.claim-btn:hover::after { transform: translateX(100%); }
.compare-label { display: flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--gray-500); font-weight: 500; cursor: pointer; white-space: nowrap; }
.compare-label input { accent-color: var(--navy-800); width: 14px; height: 14px; cursor: pointer; }
.compare-label:hover { color: var(--navy-800); }

.offer-terms-row {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .55rem 1.25rem;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}
.term-chip {
    background: var(--white);
    color: var(--gray-700);
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: .74rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
}

.offer-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: .5rem 1.25rem;
    border-top: 1px solid var(--gray-100);
}
.feat-pill {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: .73rem;
    font-weight: 700;
}

.offer-expand { display: none; }
.offer-expand.open { display: block; }
.expand-body { padding: 1rem 1.25rem; border-top: 1px solid var(--gray-200); background: var(--gray-50); }
.expand-terms { font-size: .82rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; }
.expand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .4rem; }
.expand-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; background: var(--white); border-radius: var(--r-sm); border: 1px solid var(--gray-200); font-size: .8rem; }
.expand-row span:first-child { color: var(--gray-500); font-weight: 500; }
.ev-yes { color: var(--green); font-weight: 700; }
.ev-no  { color: var(--red); font-weight: 700; }

.see-more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px;
    background: none;
    border: none;
    border-top: 1px solid var(--gray-100);
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy-600);
    transition: all 200ms ease;
    cursor: pointer;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.see-more:hover { background: var(--gray-50); color: var(--navy-800); }
.sm-arrow { transition: transform 200ms ease; display: inline-block; }
.see-more.open .sm-arrow { transform: rotate(180deg); }
.load-more-wrap { text-align: center; margin-top: 2rem; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--navy-800); margin-bottom: .5rem; }
.section-sub { font-size: 1rem; color: var(--gray-500); }

/* How To */
.how-to-section { padding: 4.5rem 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.step-card { background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.75rem; position: relative; }
.step-num { font-size: 2.5rem; font-weight: 900; color: var(--gray-200); position: absolute; top: 1rem; right: 1.25rem; line-height: 1; }
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; }
.step-card p { font-size: .88rem; color: var(--gray-500); margin: 0; line-height: 1.65; }

/* Offer Types */
.types-section { padding: 4.5rem 0; background: var(--gray-50); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.type-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border-left: 4px solid var(--gold); box-shadow: var(--sh-sm); }
.type-icon { font-size: 2rem; margin-bottom: .75rem; }
.type-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; }
.type-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: .75rem; line-height: 1.65; }
.type-eg { font-size: .8rem; font-weight: 600; color: var(--navy-700); background: var(--gray-100); padding: 7px 12px; border-radius: var(--r-sm); font-style: italic; }

/* Why Us */
.why-us-section { padding: 4.5rem 0; background: var(--navy-800); }
.why-us-section .section-header h2 { color: var(--white); }
.why-us-section .section-sub { color: rgba(255,255,255,.6); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.trust-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 1.75rem; transition: background var(--t); }
.trust-card:hover { background: rgba(255,255,255,.1); }
.trust-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.trust-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.trust-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

/* Tools */
.tools-section { padding: 4.5rem 0; background: var(--white); }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.tool-card { background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.75rem; text-align: center; transition: all var(--t); }
.tool-card:hover { border-color: var(--gold); box-shadow: var(--sh-md); transform: translateY(-3px); }
.tool-icon { font-size: 2rem; margin-bottom: .75rem; }
.tool-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; }
.tool-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.65; }
.tool-link { color: var(--navy-600); font-weight: 700; font-size: .88rem; }
.tool-link:hover { color: var(--gold-dk); }

/* Sports */
.sports-section { padding: 4.5rem 0; background: var(--gray-50); }
.sports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.sport-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; border-top: 4px solid var(--navy-600); box-shadow: var(--sh-sm); transition: all var(--t); }
.sport-card:hover { border-top-color: var(--gold); transform: translateY(-3px); box-shadow: var(--sh-md); }
.sport-icon { font-size: 2rem; margin-bottom: .75rem; }
.sport-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; }
.sport-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.65; }
.sport-link { color: var(--navy-600); font-weight: 700; font-size: .88rem; }
.sport-link:hover { color: var(--gold-dk); }

/* News */
.news-section { padding: 4.5rem 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.news-card { border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1.5rem; transition: all var(--t); display: flex; flex-direction: column; }
.news-card:hover { border-color: var(--navy-600); box-shadow: var(--sh-md); }
.news-meta { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; }
.news-cat { background: rgba(30,58,138,.1); color: var(--navy-600); padding: 3px 10px; border-radius: var(--r-full); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.news-date { font-size: .78rem; color: var(--gray-500); }
.news-card h3 { font-size: .95rem; font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; line-height: 1.4; }
.news-card p { font-size: .87rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.news-link { color: var(--navy-600); font-weight: 700; font-size: .85rem; }
.news-link:hover { color: var(--gold-dk); }

/* FAQ */
.faq-section { padding: 4.5rem 0; background: var(--gray-50); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }
.faq-item { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.25rem; background: none; border: none; text-align: left; font-size: .93rem; font-weight: 600; color: var(--navy-800); transition: background var(--t); gap: 1rem; }
.faq-btn:hover { background: var(--gray-50); }
.faq-btn[aria-expanded="true"] { background: var(--navy-800); color: var(--white); }
.faq-icon { font-size: 1.1rem; flex-shrink: 0; font-weight: 400; transition: transform var(--t); }
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-ans { display: none; padding: 1rem 1.25rem; border-top: 1px solid var(--gray-200); }
.faq-ans.open { display: block; }
.faq-ans p { font-size: .9rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* Responsible Gambling */
.responsible-section { padding: 4rem 0; background: linear-gradient(135deg, #f8f9fc 0%, #eef0f5 100%); }
.rg-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.rg-inner h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy-800); margin-bottom: .75rem; }
.rg-inner > p { font-size: .95rem; color: var(--gray-500); margin-bottom: 2rem; line-height: 1.7; }
.rg-resources { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.rg-card { display: flex; align-items: center; gap: .7rem; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--r-lg); padding: 1rem 1.1rem; transition: all var(--t); }
.rg-card:hover { border-color: var(--navy-600); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.rg-icon { font-size: 1.4rem; flex-shrink: 0; }
.rg-card div { display: flex; flex-direction: column; text-align: left; }
.rg-card strong { font-size: .88rem; font-weight: 700; color: var(--navy-800); }
.rg-card span { font-size: .78rem; color: var(--gray-500); }
.rg-disclaimer { font-size: .82rem; color: var(--gray-500); background: var(--white); border-left: 4px solid var(--red); padding: .875rem 1.25rem; border-radius: 0 var(--r-md) var(--r-md) 0; text-align: left; }

/* Footer */
.site-footer { background: var(--navy-900); color: var(--white); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 1rem 0; }
.footer-logo-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-logo-img { width: 36px; height: 36px; border-radius: 6px; object-fit: contain; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-badges span { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); padding: 4px 12px; border-radius: var(--r-full); font-size: .73rem; color: rgba(255,255,255,.7); }
.footer-col h5 { font-size: .78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.55); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: .75rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.5); }

/* Scroll to Top */
.scroll-top-btn { position: fixed; bottom: 24px; right: 24px; z-index: 300; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-800); color: var(--white); border: 2px solid var(--gold); font-size: 1.4rem; display: none; align-items: center; justify-content: center; box-shadow: var(--sh-lg); transition: all var(--t); cursor: pointer; }
.scroll-top-btn.visible { display: flex; }
.scroll-top-btn:hover { background: var(--gold); color: var(--navy-900); }

/* Compare Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 400; backdrop-filter: blur(4px); }
.modal-overlay.open { display: block; }
.compare-modal { display: none; position: fixed; top: 50%; left: 50%; z-index: 500; transform: translate(-50%, -50%); background: var(--white); border-radius: var(--r-xl); width: min(90vw, 680px); max-height: 80vh; overflow: hidden; flex-direction: column; box-shadow: var(--sh-xl); }
.compare-modal.open { display: flex; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 2px solid var(--gray-200); background: var(--navy-800); }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.modal-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1; }
.modal-close:hover { color: var(--white); }
.modal-body { padding: 1.5rem; overflow-y: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.compare-table th { background: var(--navy-800); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 700; }
.compare-table td { padding: 9px 14px; border-bottom: 1px solid var(--gray-200); }
.compare-table tr:nth-child(even) td { background: var(--gray-50); }
.compare-table .val-cell { font-size: 1.2rem; font-weight: 800; color: var(--green); }

/* Responsive */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .site-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .logo-tagline { display: none; }
    .hero { padding: 3rem 0 2.5rem; }
    .hero-total-wrap { flex-direction: column; gap: .3rem; }
    .hero-stats { gap: 1.25rem; }
    .h-stat strong { font-size: 1.5rem; }
    .offers-toolbar { flex-direction: column; align-items: flex-start; }
    .toolbar-right { width: 100%; }
    .sort-select { flex: 1; }
    .offer-card { flex-direction: column; }
    .offer-rank { width: 100%; min-width: unset; height: 28px; flex-direction: row; gap: .5rem; padding: 0 14px; font-size: .78rem; }
    .offer-rank::before { content: 'RANK '; font-size: .65rem; font-weight: 500; opacity: .7; letter-spacing: .1em; }
    .offer-card::before { width: 100%; height: 4px; bottom: unset; top: 0; border-radius: var(--r-xl) var(--r-xl) 0 0; }
    .offer-card::after { display: none; }
    .offer-logo { width: 80px; min-width: 80px; height: 80px; border: 1px solid var(--gray-200); border-radius: 10px; margin: 10px 0 10px 12px; padding: 0; flex-direction: column; justify-content: center; align-self: center; }
    .offer-logo::after { bottom: 0; top: unset; left: 0; right: 0; height: 3px; width: unset; }
    .offer-top { flex-direction: column; gap: .75rem; }
    .offer-val-col { border-left: none; border-right: none; border-top: 1px solid var(--gray-100); padding: .75rem 0; width: 100%; }
    .offer-amount { font-size: 2rem; }
    .offer-card[data-rank="1"] .offer-amount { font-size: 2.2rem; }
    .offer-actions { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
    .claim-btn { min-width: unset !important; flex: 1; }
    .offer-actions .btn-gold { flex: 1; }
    .steps-grid, .types-grid, .trust-grid, .tools-grid, .sports-grid, .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .filter-groups { flex-direction: column; }
}
@media (max-width: 480px) {
    .compliance-inner { flex-direction: column; gap: .25rem; text-align: center; }
    .hero-trust { flex-direction: column; align-items: center; }
    .hero-stats { gap: 1rem; }
    .section-header h2 { font-size: 1.4rem; }
    .rg-resources { grid-template-columns: 1fr; }
    .compare-table { font-size: .78rem; }
    .offer-top { padding: .85rem 1rem .7rem; }
    .offer-terms-row, .offer-features-row { padding: .45rem 1rem; }
}

/* ── Card fade-in on load ────────────────────────────────────────────── */
@keyframes cardIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.offer-card {
    animation: cardIn 350ms ease both;
}
.offer-card:nth-child(1)  { animation-delay:  0ms; }
.offer-card:nth-child(2)  { animation-delay: 60ms; }
.offer-card:nth-child(3)  { animation-delay: 120ms; }
.offer-card:nth-child(4)  { animation-delay: 180ms; }
.offer-card:nth-child(5)  { animation-delay: 240ms; }
.offer-card:nth-child(6)  { animation-delay: 300ms; }
.offer-card:nth-child(7)  { animation-delay: 350ms; }
.offer-card:nth-child(8)  { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
    .offer-card { animation: none; }
    .claim-btn::after { display: none; }
}

/* ── 768px–1024px mid-range tweaks ─────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
    .offer-logo { width: 104px; min-width: 104px; height: 104px; }
    .offer-amount { font-size: 2.1rem; }
    .claim-btn { padding: 11px 18px !important; font-size: .92rem !important; min-width: 130px; }
}
