/* ============================================================
   BetMexico MX — bet-mexico.com.mx
   Ultra-Modern Dark Casino Design System
   ============================================================ */

:root {
    /* Colors */
    --green: #00C853;
    --green-dark: #009624;
    --green-glow: rgba(0, 200, 83, 0.35);
    --gold: #FFD700;
    --gold-dark: #FFA000;
    --gold-glow: rgba(255, 215, 0, 0.25);
    --red: #FF1744;
    --navy: #030D1A;
    --navy2: #061629;
    --navy3: #0A2040;
    --surface: #0D1F35;
    --surface2: #102440;
    --surface3: #152B4A;
    --border: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(0, 200, 83, 0.2);
    --text: #E8EFF8;
    --text-muted: #7891AE;
    --text-dim: #4A6380;
    --white: #ffffff;

    /* Typography */
    --font-head: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-pad: 80px 0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--navy);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--white);
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

details summary {
    cursor: pointer;
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: var(--green);
    color: #000;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top var(--trans);
}

.skip-link:focus {
    top: 20px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--green), #00E676);
    color: #000 !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px var(--green-glow);
    transition: all var(--trans);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.5);
    background: linear-gradient(135deg, #00E676, var(--green));
    color: #000 !important;
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text) !important;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    transition: all var(--trans);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green) !important;
    background: rgba(0, 200, 83, 0.05);
}

/* Pulse glow animation */
.pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--green-glow);
    }

    50% {
        box-shadow: 0 8px 40px rgba(0, 200, 83, 0.6), 0 0 60px rgba(0, 200, 83, 0.2);
    }
}

.pulse {
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 13, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--trans);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    overflow: hidden;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

.logo-badge {
    background: var(--green);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-top: -8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.header-cta {
    margin-left: auto;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--trans);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
    background: rgba(3, 13, 26, 0.98);
}

.mobile-nav.open {
    display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(3, 13, 26, 0.95) 0%,
            rgba(6, 22, 41, 0.85) 40%,
            rgba(3, 13, 26, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 60px 24px;
}

.hero-badge-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    letter-spacing: 0.02em;
}

.hero-badge.green {
    background: rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.3);
    color: var(--green);
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-sub strong {
    color: var(--green);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 100px;
    transition: all var(--trans);
}

.stat-item:hover {
    background: rgba(0, 200, 83, 0.06);
    border-color: var(--border-glow);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.trust-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-right: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 1.1rem;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */
.bonuses-section {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.bonus-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--trans);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.bonus-card.featured {
    border-color: rgba(0, 200, 83, 0.4);
    background: linear-gradient(145deg, var(--surface2), var(--surface3));
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.1);
}

.bonus-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.bonus-ribbon {
    position: absolute;
    top: 16px;
    right: -24px;
    background: linear-gradient(90deg, var(--green), #00E676);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 36px;
    transform: rotate(30deg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1;
}

.bonus-amount span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 40px;
}

.bonus-requirements {
    list-style: none;
    margin-bottom: 24px;
}

.bonus-requirements li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.bonus-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.bonus-disclaimer a {
    color: var(--text-dim);
    text-decoration: underline;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
    padding: var(--section-pad);
    background: var(--navy2);
}

.games-tabs {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background: var(--surface);
    padding: 6px;
    border-radius: var(--radius-lg);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-head);
    transition: all var(--trans);
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--green), #00E676);
    color: #000;
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--trans);
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 12px;
}

.game-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.game-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--green);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.sport-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--trans);
}

.sport-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.sport-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.sport-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sport-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers-section {
    padding: var(--section-pad);
    background: var(--navy);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.provider-badge {
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--trans);
}

.provider-badge:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 200, 83, 0.05);
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section {
    padding: var(--section-pad);
    background: var(--navy2);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    font-size: 0.9rem;
}

.compare-table caption {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-dim);
    padding: 12px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    font-style: italic;
}

.compare-table thead th {
    background: var(--surface2);
    padding: 16px 20px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.compare-table thead th:first-child {
    text-align: left;
}

.compare-table th[scope="row"] {
    background: var(--surface);
    padding: 14px 20px;
    text-align: left;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.compare-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td,
.compare-table tr:hover th[scope="row"] {
    background: rgba(255, 255, 255, 0.02);
}

.highlight-col {
    background: rgba(0, 200, 83, 0.04) !important;
    border-left: 1px solid rgba(0, 200, 83, 0.15);
    border-right: 1px solid rgba(0, 200, 83, 0.15);
}

.compare-table thead .highlight-col {
    background: rgba(0, 200, 83, 0.1) !important;
    color: var(--green) !important;
}

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

.cross {
    color: var(--red);
}

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payments-section {
    padding: var(--section-pad);
    background: var(--navy);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.payment-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: all var(--trans);
    position: relative;
}

.payment-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-glow);
}

.payment-card.featured {
    border-color: rgba(0, 200, 83, 0.35);
    background: linear-gradient(145deg, var(--surface2), var(--surface3));
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.payment-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.payment-badge {
    display: inline-block;
    background: var(--green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.83rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.payment-row:last-child {
    border-bottom: none;
}

.payment-row span {
    color: var(--text-muted);
}

.payment-row strong {
    color: var(--text);
}

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
    padding: var(--section-pad);
    background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
    overflow: hidden;
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.app-text p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

.app-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-features li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.app-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    transition: all var(--trans);
    text-decoration: none;
    min-width: 160px;
}

.btn-app.android {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: #000 !important;
}

.btn-app.ios {
    background: linear-gradient(135deg, #333, #555);
    color: var(--white) !important;
}

.btn-app.play {
    background: linear-gradient(135deg, #1565C0, #1E88E5);
    color: var(--white) !important;
}

.btn-app:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.app-btn-icon {
    font-size: 1.5rem;
}

.btn-app small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
}

.btn-app strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
}

.app-note {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.app-visual {
    display: flex;
    justify-content: center;
}

.app-visual img {
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
    max-height: 540px;
    object-fit: cover;
}

/* ============================================================
   RATING SECTION
   ============================================================ */
.rating-section {
    padding: var(--section-pad);
    background: var(--navy);
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rating-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    transition: all var(--trans);
}

.rating-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-glow);
}

.rating-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.score-9 {
    background: rgba(0, 200, 83, 0.15);
    color: var(--green);
    border: 2px solid rgba(0, 200, 83, 0.3);
}

.score-8 {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border: 2px solid rgba(255, 215, 0, 0.25);
}

.rating-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 99px;
    transition: width 1s ease-out;
}

.rating-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.total-rating {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, var(--surface2), var(--surface3));
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: var(--radius-xl);
}

.total-score {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 8px;
}

.total-rating p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ============================================================
   REGISTER STEPS
   ============================================================ */
.register-section {
    padding: var(--section-pad);
    background: var(--navy2);
}

.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    width: 200px;
    flex-shrink: 0;
    transition: all var(--trans);
}

.step-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--green);
    padding: 0 12px;
    flex-shrink: 0;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #00E676);
    color: #000;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.register-cta {
    text-align: center;
}

.register-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    padding: var(--section-pad);
    background: var(--navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--trans);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-item[open] {
    border-color: rgba(0, 200, 83, 0.3);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--green);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform var(--trans);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
    padding: var(--section-pad);
    background: var(--navy2);
    border-top: 1px solid var(--border);
}

.seo-article h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--white);
}

.seo-article p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.text-link {
    color: var(--green);
    text-decoration: underline dotted;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--gold);
}

.seo-news-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--green);
}

.seo-news-links a {
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 0;
    display: block;
    transition: all var(--trans);
}

.seo-news-links a:hover {
    color: var(--green);
    padding-left: 6px;
}

.related-sports {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.sport-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text) !important;
    transition: all var(--trans);
}

.sport-link:hover {
    border-color: var(--green);
    color: var(--green) !important;
    background: rgba(0, 200, 83, 0.04);
    transform: translateY(-2px);
}

.sport-link span {
    font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-dim);
    max-width: 320px;
    line-height: 1.65;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-dim);
    padding: 4px 0;
    transition: color var(--trans);
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    padding: 16px;
    background: rgba(255, 23, 68, 0.04);
    border: 1px solid rgba(255, 23, 68, 0.1);
    border-radius: var(--radius-md);
}

.footer-disclaimer a {
    color: var(--text-dim);
    text-decoration: underline;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.footer-legal a {
    color: var(--text-dim);
}

.footer-legal a:hover {
    color: var(--green);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    padding: 5px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .app-inner {
        grid-template-columns: 1fr;
    }

    .app-visual {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 56px 0;
    }

    /* ---- HEADER MOBILE ---- */
    .header-inner {
        gap: 8px;
        padding: 0 16px;
        justify-content: space-between;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
        order: 3;
    }

    .logo {
        order: 1;
        flex-shrink: 0;
    }

    .logo-img {
        height: 40px !important;
        max-width: 160px !important;
    }

    /* ---- HERO ---- */
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-cta,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stat-item {
        padding: 12px 10px;
        min-width: unset;
    }

    /* ---- TRUST BAR ---- */
    .trust-inner {
        flex-direction: column;
        gap: 0;
    }

    .trust-item {
        padding: 10px 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 100%;
        justify-content: flex-start;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    /* ---- BONUS CARDS ---- */
    .bonus-cards {
        grid-template-columns: 1fr;
    }

    /* ---- GAMES TABS ---- */
    .games-tabs {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ---- PAYMENTS ---- */
    .payments-grid {
        grid-template-columns: 1fr;
    }

    /* ---- APP SECTION ---- */
    .app-inner {
        grid-template-columns: 1fr;
    }

    .app-visual {
        display: none;
    }

    .app-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-app {
        justify-content: flex-start;
        width: 100%;
    }

    /* ---- RATING ---- */
    .rating-grid {
        grid-template-columns: 1fr;
    }

    /* ---- STEPS ---- */
    .steps-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .step-card {
        width: 100%;
    }

    .step-arrow {
        display: none;
    }

    /* ---- FAQ ---- */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* ---- PROVIDERS ---- */
    .providers-grid {
        gap: 8px;
    }

    .provider-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* ---- FOOTER ---- */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-badge-wrap {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ---- TABLE ---- */
    .compare-table {
        font-size: 0.75rem;
    }
    .compare-table td,
    .compare-table th {
        padding: 10px 12px;
    }

    /* ---- SEO LINKS ---- */
    .related-sports {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sports-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .btn-large {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .bonus-amount {
        font-size: 2rem;
    }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--surface3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
    background: rgba(0, 200, 83, 0.25);
    color: var(--white);
}
/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header scrolled */
.site-header.scrolled {
  background: rgba(3, 13, 26, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ============================================================
   EMOJI / UNICODE FALLBACK
   ============================================================ */
:root {
  font-synthesis: none;
}
/* Ensure emoji render on all Windows/Mac/Linux */
body, h1, h2, h3, h4, p, span, a, button, li, td, th {
  font-family: var(--font-body), 'Noto Color Emoji', 'Segoe UI Emoji',
               'Apple Color Emoji', 'Android Emoji', sans-serif;
}


/* ============================================================
   LOGO IMAGE — LARGE
   ============================================================ */
.logo-img {
  height: 56px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 0 8px rgba(0,200,83,0.18));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.logo:hover .logo-img {
  filter: brightness(1.1) drop-shadow(0 0 16px rgba(0,200,83,0.35));
  transform: scale(1.04);
}
.footer-brand .logo-img {
  height: 48px !important;
  max-width: 210px !important;
}

/* ============================================================
   SECTION HERO IMAGES
   ============================================================ */
.section-img-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}

.section-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.section-img-wrap:hover .section-hero-img {
  transform: scale(1.03);
}

.section-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(3, 13, 26, 0.7) 100%
  );
  pointer-events: none;
}

/* Page hero full-width banner */
.page-hero-img {
  position: relative;
  overflow: hidden;
  margin-bottom: -40px;
}

/* ============================================================
   SECTION IMAGES MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .section-hero-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .section-hero-img {
    height: 140px;
  }
}
