/* GLOBAL CRISP RENDERING MANDATE */
html, body {
    /* Your existing rules (like font-family, background, margin) stay here */
    
    /* Add these 3 lines to force razor-sharp text everywhere: */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Force hardware acceleration on all images and icons so they never blur during scroll */
img, svg, i {
    transform: translateZ(0);
    backface-visibility: hidden;
}
/* ═══════════════════════════════════════════════════════
   GLOBAL VARIABLES & RESET
   ═══════════════════════════════════════════════════════ */
:root {
    --bg-main: #061a16;
    --bg-panel: #0a221d;
    --card-bg: #0f2a24;
    --card-bg-hover: #133028;
    --card-border: rgba(255, 255, 255, 0.06);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.55);
    --text-primary: #f0f0f0;
    --text-secondary: #94a3a0;
    --green: #2DB84C;
    --green-dark: #1A7A35;
    --gold: #C8962E;
    --gold-light: #E0B84A;
    --accent: var(--green);
    --accent-glow: rgba(45, 184, 76, 0.25);
    --accent-gradient: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
    --gold-gradient: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── ULTIMATE MOBILE SLIDING FIX ─── */
html, body {
    width: 100%;
    max-width: 100%; 
    /* 'clip' stops sliding but preserves the sticky sidebar! */
    overflow-x: clip !important; 
    position: relative;
    overscroll-behavior-x: none;
}

/* Fallback for mobile phones where sticky sidebar isn't used anyway */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden !important; 
    }
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, #061a16 0%, #02110f 100%) fixed;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ─── MISSING CONTAINER CLASS FIX ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glow {
    pointer-events: none !important;
}

/* ─── SLEEK CUSTOM SCROLLBARS FOR CHROME/SAFARI/EDGE/FIREFOX ─── */
.table-responsive, 
.comparison-container, 
.bonus-table-wrap,
.table-wrap {
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Firefox custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
}

.table-responsive::-webkit-scrollbar, 
.comparison-container::-webkit-scrollbar, 
.bonus-table-wrap::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar {
    height: 8px; /* Makes the scrollbar nice and thin */
}

.table-responsive::-webkit-scrollbar-track, 
.comparison-container::-webkit-scrollbar-track, 
.bonus-table-wrap::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb, 
.comparison-container::-webkit-scrollbar-thumb, 
.bonus-table-wrap::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb {
    background: var(--accent); /* Glowing green handle */
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover, 
.comparison-container::-webkit-scrollbar-thumb:hover, 
.bonus-table-wrap::-webkit-scrollbar-thumb:hover,
.table-wrap::-webkit-scrollbar-thumb:hover {
    background: #34cc56; 
}

/* ─── SAFELY FULL-WIDTH PANELS ─── */
.section-panel {
    background: var(--bg-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1200px) {
    .section-panel {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
    }
}

/* ────────────────────────────────────────────────
   HEADER & NAV
   ──────────────────────────────────────────────── */
header {
    padding: 0;
    border-bottom: 1px solid var(--card-border);
    background: rgba(11, 18, 16, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* This adds the smooth glide animation! */
    transition: transform 0.3s cubic-bezier(0.3, 0, 0.2, 1); 
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 72px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    mix-blend-mode: lighten;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    display: inline-block; /* Forces the browser to draw the active line */
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    position: relative; /* Needed to attach the underline */
}

nav a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Make the active text bold and white */
nav a.active {
    color: #fff !important;
    font-weight: 800;
    background: transparent; 
}

/* Draw the sleek underline */
nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--accent); /* Glowing green line */
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-glow);
}

.header-search {
    flex-grow: 1;
    max-width: 400px;
    position: relative;
    margin: 0 24px;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    border-radius: 20px;
    padding: 10px 16px 10px 40px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(0, 0, 0, 0.2);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-signup {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-signup:hover {
    background: #34cc56;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 184, 76, 0.25);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 1.4rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .header-left { gap: 16px; }
    .header-search { display: none; }
    
    nav {
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0;
        background: rgba(11, 18, 16, 0.97); 
        backdrop-filter: blur(16px);
        flex-direction: column; 
        padding: 16px 20px; 
        border-bottom: 1px solid var(--card-border); 
        gap: 4px;
        
        /* FIX: These two lines center everything and remove bullets */
        align-items: center; 
        list-style: none;
    }

    nav.open { display: flex; }

    /* FIX: Make sure the links are centered and clean */
    nav a { 
        padding: 12px 16px; 
        font-size: 1rem; 
        width: 100%; 
        text-align: center;
        list-style: none; /* Extra insurance against dots */
    }

    nav a.active::after { display: none !important; } 
    .mobile-menu-btn { display: block; }
    .header-actions { display: none; }
}
    
    /* FIX: Hide dropdowns by default on mobile, show when toggled */
    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background-color: rgba(255,255,255,0.02);
        display: none; /* Changed from block to none */
        padding-left: 20px;
    }
    
    /* Reveal content when active */
    .nav-dropdown.active-drop .nav-dropdown-content {
        display: block;
    }
    
    /* Flip the arrow icon */
    .nav-dropdown.active-drop .nav-dropbtn i {
        transform: rotate(180deg);
    }
    
    /* Push arrow to the right edge */
    .nav-dropbtn {
        justify-content: space-between;
    }
    }
    
    .rv-body { grid-template-columns: 1fr; }
    .rv-sidebar-sticky { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .rv-hero-inner { flex-direction: column; align-items: flex-start; }
}

/* ────────────────────────────────────────────────
   HERO (Matched perfectly to bonuses.css)
   ──────────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 80px 0 48px; /* Exact padding from bonus-hero */
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #fff;
}

.hero h1 .accent-text {
    color: var(--accent); /* Forces the green color back! */
}

.hero-intro-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 40px; /* Centers the paragraph and pushes the badges down perfectly */
    line-height: 1.7;
}

/* ────────────────────────────────────────────────
   SOCIAL PROOF / TRUST BAR (Tile-Free)
   ──────────────────────────────────────────────── */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px; /* Exact gap from bonus-hero-stats */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    /* We keep the background transparent to remove the tiles */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.trust-icon { 
    color: var(--accent);
    font-size: 1.4rem;
    display: flex;
}

.trust-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.trust-sub {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ────────────────────────────────────────────────
   COMPARISON TABLE
   ──────────────────────────────────────────────── */
.comparison-section { margin-bottom: 72px; }

.comparison-section h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
}

.table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 640px;
}

.comparison-table thead { background: rgba(45, 184, 76, 0.08); }

.comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
    white-space: nowrap;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.comparison-table tbody tr:hover { background: rgba(45, 184, 76, 0.04); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

#comparisonTable th.text-center, 
#comparisonTable td.table-check {
    text-align: center;
    justify-content: center; 
}

.table-rank {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    min-width: 30px;
}

.table-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.table-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    flex-shrink: 0;
}

.table-bonus {
    color: var(--green);
    font-weight: 600;
}

.table-check { font-size: 1.1rem; }

.table-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-bar {
    width: 48px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.rating-num {
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 24px;
}

.table-cta {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.table-cta:hover {
    background: #34cc56;
    transform: translateY(-1px);
}

/* ────────────────────────────────────────────────
   FILTERS
   ──────────────────────────────────────────────── */
.filters-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: rgba(45, 184, 76, 0.12);
    color: var(--green);
    border-color: rgba(45, 184, 76, 0.3);
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sort-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sort-group select {
    background: var(--bg-main);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

/* ────────────────────────────────────────────────
   SEARCH / FILTER BAR
   ──────────────────────────────────────────────── */
.search-filter-bar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem 1.8rem 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--card-shadow);
}
.filter-bar-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.filter-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    align-items: end;
}
.filter-bar-item label {
    display: block;
    font-size: .78rem;
    color: var(--text-secondary);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.filter-bar-item select {
    width: 100%;
    background: var(--bg-main);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    padding: .55rem .8rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
}
.filter-bar-item select:focus {
    border-color: var(--accent);
}
.slider-wrap {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.slider-wrap input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    outline: none;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 8px var(--accent-glow);
}
.slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}
.slider-val {
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    min-width: 55px;
    text-align: right;
}
.filter-bar-actions {
    display: flex;
    align-items: end;
}
.filter-reset-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text-secondary);
    padding: .55rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: .85rem;
    transition: all .2s;
    width: 100%;
}
.filter-reset-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.filter-result-count {
    margin-top: .8rem;
    font-size: .82rem;
    color: var(--text-secondary);
}

/* ────────────────────────────────────────────────
   BETTING CARDS GRID
   ──────────────────────────────────────────────── */
.betting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 96px;
}

.bet-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.bet-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.bet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bet-card:hover::before { opacity: 1; }

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 16px;
}

.brand-logo {
    width: 48px; height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    flex-shrink: 0;
}

.brand-fallback {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.bonus-block {
    background: rgba(45, 184, 76, 0.06);
    border: 1px solid rgba(45, 184, 76, 0.15);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.bonus-amount {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.rollover {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.features-list li {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    font-size: 0.8rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.82rem;
}

.info-item {
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--text-secondary);
    margin-bottom: 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-val { font-weight: 600; }

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.card-actions .cta-button {
    flex: 1;
    margin-top: 0;
}

.cta-button {
    display: block;
    text-align: center;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    margin-top: auto;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(45, 184, 76, 0.35);
    background: #34cc56;
}

.review-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 8px;
    border-radius: 12px;
    border: 1px solid rgba(45, 184, 76, 0.35);
    background: rgba(45, 184, 76, 0.06);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.review-link:hover {
    background: rgba(45, 184, 76, 0.15);
    border-color: var(--accent);
    transform: scale(1.02);
}

/* ────────────────────────────────────────────────
   WHY TRUST US
   ──────────────────────────────────────────────── */
.why-trust {
    padding: 72px 0;
    margin-bottom: 0;
    text-align: center;
}
.why-trust > h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 32px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.trust-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    background: var(--card-bg-hover);
}
.trust-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}
.trust-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.trust-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ────────────────────────────────────────────────
   HOW WE RANK
   ──────────────────────────────────────────────── */
.how-we-rank {
    margin-top: 0;
    padding: 72px 0;
    margin-bottom: 0;
    text-align: center;
}
.how-we-rank > h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.how-we-rank > p {
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 1rem;
}
.rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.rank-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.rank-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    background: var(--card-bg-hover);
}
.rank-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}
.rank-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.rank-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────── */
.faq-section {
    padding: 72px 0 60px;
    margin-bottom: 0;
    text-align: center;
}
.faq-section > h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 32px;
}
.faq-item {
    text-align: left;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}
.faq-question:hover { color: var(--accent); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.faq-answer strong { color: var(--text-primary); }

/* ────────────────────────────────────────────────
   RESPONSIBLE GAMBLING
   ──────────────────────────────────────────────── */
.responsible-gambling {
    background: rgba(255, 50, 50, 0.06);
    border: 1px solid rgba(255, 50, 50, 0.15);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 72px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.responsible-gambling h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.responsible-gambling p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}
.responsible-gambling strong { color: var(--text-primary); }

/* ────────────────────────────────────────────────
   AUTHOR BYLINE
   ──────────────────────────────────────────────── */
.author-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    box-shadow: var(--card-shadow);
}
.byline-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.byline-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.byline-name {
    font-size: 0.92rem;
    color: var(--text-primary);
}
.byline-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ────────────────────────────────────────────────
   AFFILIATE DISCLOSURE
   ──────────────────────────────────────────────── */
.affiliate-disclosure {
    margin-bottom: 28px;
    border: 1px solid rgba(200, 150, 46, 0.2);
    border-radius: 12px;
    background: rgba(200, 150, 46, 0.04);
    overflow: hidden;
}
.disclosure-toggle {
    width: 100%;
    padding: 12px 18px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}
.disclosure-toggle:hover { color: #fff; }
.disclosure-arrow { transition: transform 0.3s ease; }
.affiliate-disclosure.open .disclosure-arrow { transform: rotate(180deg); }
.disclosure-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
}
.affiliate-disclosure.open .disclosure-body {
    max-height: 200px;
    padding: 0 18px 16px;
}
.disclosure-body p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.disclosure-body strong { color: var(--text-primary); }

/* ────────────────────────────────────────────────
   PROS / CONS (inside bet-card)
   ──────────────────────────────────────────────── */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
.pros-list,
.cons-list {
    list-style: none;
    font-size: 0.82rem;
}
.pros-list li,
.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 5px;
    line-height: 1.4;
    color: #e0e0e0;
}
.pros-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}
.cons-list li::before {
    content: "✗";
    color: #e85555;
    font-weight: 700;
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   JUMP-TO-TOP FAB
   ──────────────────────────────────────────────── */
.jump-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(45, 184, 76, 0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    z-index: 200;
}
.jump-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.jump-top:hover {
    background: #34cc56;
    transform: translateY(-2px);
}

/* ────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────── */
.site-footer {
    margin-top: 80px;
    background: linear-gradient(180deg, rgba(11, 18, 16, 0) 0%, rgba(11, 18, 16, 1) 12%),
                rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--card-border);
    padding: 0 0 32px;
}
.footer-rg {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: 16px;
    padding: 24px;
    margin-top: 48px;
    margin-bottom: 48px;
}
.footer-rg-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c83232, #e05050);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(200, 50, 50, 0.35);
}
.footer-rg-body strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.footer-rg-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}
.footer-rg-body a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-rg-body a:hover { color: #34cc56; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--card-border);
}
.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-about {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-disclosure {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(45, 184, 76, 0.05);
    border: 1px solid rgba(45, 184, 76, 0.15);
    border-radius: 12px;
    padding: 14px;
}
.footer-disclosure-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 1px;
}
.footer-disclosure p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.footer-disclosure strong { color: var(--green); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '›';
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateX(-6px);
}
.footer-links a:hover { color: var(--text-primary); }
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-licence {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-licence strong { color: var(--text-primary); }
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}
.footer-bottom {
    padding-top: 24px;
    text-align: center;
}
.footer-bottom > p:first-child {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto 12px;
}
.footer-bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--green); }
.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════
   DYNAMIC NAVIGATION DROPDOWN
   DESKTOP DROPDOWNS
  ═══════════════════════════════════════════════════════ */
.nav-dropdown {
position: relative;
    display: inline-block;
    display: flex;
    align-items: center;
}

.nav-dropbtn {
display: flex;
align-items: center;
gap: 6px;
    cursor: pointer;
}

.nav-dropdown-content {
display: none;
position: absolute;
top: 100%;
    left: 0;
    background-color: var(--card-bg);
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 100;
    animation: fadeIn 0.2s ease-out;
}
.nav-dropdown-content a {
    color: var(--text-primary) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    border-bottom: none !important;
}
.nav-dropdown-content a:hover {
    background-color: rgba(45,184,76,0.1);
    color: var(--accent) !important;
}
.nav-dropdown:hover .nav-dropdown-content { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── FIX FOR DROPDOWN MENUS ─── */
.nav-dropdown-content a.active::after {
    display: none !important;
}
.nav-dropdown-content a.active {
    color: var(--accent) !important;
    font-weight: 600;
    background-color: rgba(45,184,76,0.1);
}

/* ────────────────────────────────────────────────
   PERMANENT SCROLLING STICKY CTA
   ──────────────────────────────────────────────── */
.sticky-scroll-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(45, 184, 76, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
}

.sticky-cta-icon {
    background: rgba(45, 184, 76, 0.15);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-cta-text strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
}

.sticky-cta-text span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.sticky-cta-button {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
}

.sticky-cta-button:hover {
    background: #34cc56;
    transform: scale(1.05);
}

/* ────────────────────────────────────────────────
   ADVANCED REVIEW UI COMPONENTS (NEW)
   ──────────────────────────────────────────────── */
.rv-key-features {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
}
.rv-key-features h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}
.rv-key-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}
.rv-key-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}
.rv-key-features li i {
    color: var(--accent);
}

/* Detailed Scores UI */
.rv-score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.rv-score-item {
    background: var(--card-bg);
    left: -10px;
    background: rgba(10, 34, 29, 0.98);
    backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: var(--card-shadow);
border: 1px solid var(--card-border);
    padding: 16px;
border-radius: 12px;
}
.rv-score-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}
.rv-score-val {
    color: var(--accent);
}
.rv-score-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
.rv-score-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
}

/* Payments & Withdrawals UI */
.rv-payments-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rv-payment-box h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.rv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.rv-chips span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
}
.rv-payment-info {
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Support & Mobile Info Cards */
.rv-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 16px;
}
.rv-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 1.2rem;
}
.rv-info-card ul {
    list-style: none;
}
.rv-info-card li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
}
.rv-info-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rv-info-card li strong {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ────────────────────────────────────────────────
   LONG-FORM EDITORIAL SEO ARTICLE TYPOGRAPHY
   ──────────────────────────────────────────────── */
.rv-editorial-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 32px;
    margin-top: 40px;
    box-shadow: var(--card-shadow);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.rv-editorial-content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rv-editorial-content h2:first-child {
    margin-top: 0; 
}

.rv-editorial-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.rv-editorial-content p {
    margin-bottom: 24px;
}

.rv-editorial-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.rv-editorial-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.rv-editorial-content li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.rv-editorial-content li::marker {
    color: var(--accent);
}

/* ────────────────────────────────────────────────
   RESPONSIVE — TABLET / MOBILE
   ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .mobile-menu-btn { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(11, 18, 16, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--card-border);
        gap: 4px;
    }
    nav.open { display: flex; }
    nav a { padding: 12px 16px; font-size: 1rem; }
    nav a.active::after { display: none !important; } /* Hide the line in mobile dropdown */
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero { padding: 48px 0 36px; }
    .hero h1 { font-size: 2rem; margin-bottom: 20px; }
    .hero-cta { width: 100%; padding: 16px 24px; font-size: 1.1rem; }
    
    .filters-panel {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }
    .filter-group { justify-content: flex-start; }
    .sort-group { justify-content: space-between; }
    
    .comparison-section h2 { font-size: 1.5rem; }
    .how-we-rank > h2, .faq-section > h2, .why-trust > h2 { font-size: 1.7rem; }
    
    .rank-grid { grid-template-columns: 1fr 1fr; }
    
    .betting-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Long-form editorial responsive sizing */
    .rv-editorial-content {
        padding: 24px 20px;
        font-size: 1rem;
    }
    .rv-editorial-content h2 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .filter-bar-grid { grid-template-columns: 1fr; }
    .rank-grid, .trust-grid { grid-template-columns: 1fr; }
    .trust-bar { flex-direction: column; align-items: stretch; }
    .hero h1 { font-size: 1.7rem; }
    .hero-intro-text { font-size: 1.05rem; padding: 0 10px; }
    .comparison-table { font-size: 0.82rem; }
    .comparison-table th, .comparison-table td { padding: 10px 10px; }
    .pros-cons { grid-template-columns: 1fr; }

    .footer-rg {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-badges { justify-content: center; }
    .footer-bottom-links { flex-direction: column; gap: 4px; }
    .footer-bottom-links span { display: none; }

    /* Make sticky CTA full width on mobile */
    .sticky-scroll-cta {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        border-bottom: none;
        justify-content: space-between;
        padding: 16px;
    }
}
/* ═══════════════════════════════════════════════════════
   REVIEW PAGE: STICKY JUMP NAVIGATION
   ═══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }

.rv-jump-nav {
    position: sticky;
    top: 72px; 
    background: rgba(6, 26, 22, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    z-index: 90;
padding: 12px 0;
    margin-bottom: 30px;
    /* Ensures the jump bar glides smoothly with the header */
    transition: transform 0.3s cubic-bezier(0.3, 0, 0.2, 1);
}

.rv-jump-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rv-jump-label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 200;
    margin-top: 24px; /* Space below the header */
}

.rv-jump-links {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hides scrollbar on Firefox */
/* Invisible bridge so the hover doesn't break when moving the mouse down */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
}

.rv-jump-links::-webkit-scrollbar {
    display: none; /* Hides scrollbar on Chrome/Safari */
.nav-dropdown-content a {
    display: block !important;
    padding: 12px 24px !important;
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.rv-jump-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
/* Kills the underline effect on sub-menus */
.nav-dropdown-content a::after {
    display: none !important; 
}

.rv-jump-link:hover, .rv-jump-link.active {
    background: rgba(45, 184, 76, 0.1);
    border-color: var(--accent);
    color: #fff;
.nav-dropdown-content a:last-child {
    border-bottom: none;
}

/* Offset so sections don't hide behind the sticky headers when clicked */
.scroll-offset {
    scroll-margin-top: 140px; 
}
/* ========================================= */
/* --- GLOBAL TOP LIST LAYOUT CARDS ---      */
/* ========================================= */
.top-list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.top-list-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    transition: transform 0.2s, background 0.2s;
}
.top-list-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(45, 184, 76, 0.4);
}
.tl-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tl-logo-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tl-logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.tl-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tl-rank-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 50px;
}
.tl-rank {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}
.tl-name {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tl-center {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tl-promo-label {
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: -4px;
}
.tl-bonus-title {
    margin: 0;
    line-height: 1.3;
}
.tl-bonus-title a {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s;
}
.tl-bonus-title a:hover {
.nav-dropdown-content a i {
color: var(--accent);
    margin-right: 8px;
    font-size: 1.1rem;
    vertical-align: text-bottom;
}
.tl-meta {
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.tl-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tl-meta-divider {
    color: rgba(255, 255, 255, 0.1);
}
/* Payment Pills */
.tl-payment-pills {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.pay-pill {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pay-mtn { background: rgba(250, 204, 21, 0.1); color: #facc15; border: 1px solid rgba(250, 204, 21, 0.2); }
.pay-telecel { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.pay-at { background: rgba(59, 130, 246, 0.1); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.2); }

.tl-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}
.tl-cta {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.tl-cta:hover {
    background: #249a3e;
}
.tl-read-review {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.tl-read-review:hover {
    color: #fff;
    text-decoration: underline;
/* Hover effect on sub-links */
.nav-dropdown-content a:hover {
    color: #fff !important;
    background: rgba(45, 184, 76, 0.05);
    padding-left: 30px !important; /* Smooth indent effect */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .top-list-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tl-left {
        width: 100%;
    }
    .tl-right {
        width: 100%;
    }
    .tl-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
/* Show on Hover (Desktop Only) */
@media (min-width: 993px) {
    .nav-dropdown:hover .nav-dropdown-content {
        display: block;
}
    .tl-meta-divider {
        display: none;
    .nav-dropdown:hover .nav-dropbtn {
        color: var(--accent);
}
}
/* ========================================= */
/* --- HOMEPAGE EXPANSION SECTIONS ---       */
/* ========================================= */

/* 1. Flat Timeline Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}
.step-card {
    position: relative;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 0;
    width: 38px;
    height: 38px;
    background: #0b1210; /* Matches body background */
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}
.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 16px;
    color: #fff;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 2. Flat News Grid */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}
.news-header-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.news-header-link:hover {
    opacity: 0.8;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.news-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}
.news-card:hover {
    transform: translateY(-4px);
}
.news-image {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.1);
}
.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}
.news-meta {
    color: #9ca3af;
    font-size: 0.85rem;
    display: flex;
    gap: 12px;
}
.news-card h3 {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s;
}
.news-card:hover h3 {
    color: var(--accent);
}

/* 3. Unboxed Editorial Content (No Pillow) */
.unboxed-editorial {
    max-width: 800px;
    margin: 80px auto;
}
.unboxed-editorial h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}
.unboxed-editorial h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #fff;
}
.unboxed-editorial p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.unboxed-editorial ul {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-left: 24px;
}
.unboxed-editorial li {
    margin-bottom: 12px;
}
.unboxed-editorial a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.unboxed-editorial a:hover {
    text-decoration: underline;
}
/* ========================================= */
/* --- EDGE-TO-EDGE COLOR BANDS ---          */
/* ========================================= */
.bg-band-dark {
    position: relative;
    padding: 60px 0; /* Adds breathing room top and bottom */
    margin: 40px 0;
}
.bg-band-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Stretches 100% of the screen width */
    height: 100%;
    background-color: rgba(255, 255, 255, 0.02); /* Very subtle premium highlight */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: -1; /* Pushes the color behind your content */
}
/* Disable all dropdown sub-folders on mobile */
/* Keep them completely hidden on Mobile */
@media (max-width: 992px) {
.nav-dropdown-content {
display: none !important;
}
.nav-dropbtn i {
        display: none; /* Removes the down arrow since there's no folder to open */
        display: none !important; /* Hides the dropdown arrow on mobile */
}
}
}
