/* ═══════════════════════════════════════════════════════════════════
   Big Bass Bonanza MX — Design System
   © 2026 big-bass-bonanza.com.mx | deportech-mexico.com.mx
   Theme: Deep Ocean Blue + Teal + Gold
   Skills: seo-audit, casino-betting, page-cro, schema-markup, ai-seo
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --ocean: #030D1A;
    --ocean-2: #071A2E;
    --ocean-3: #0A2540;
    --teal: #00BFA5;
    --teal-dark: #00897B;
    --teal-glow: rgba(0, 191, 165, .22);
    --gold: #FFD700;
    --gold-2: #F5C842;
    --gold-dark: #B8860B;
    --gold-glow: rgba(255, 215, 0, .18);
    --text: #E8F4F8;
    --muted: rgba(232, 244, 248, .5);
    --card-bg: rgba(7, 26, 46, .85);
    --border: rgba(0, 191, 165, .14);
    --border-gold: rgba(255, 215, 0, .22);
    --shadow-teal: 0 8px 40px rgba(0, 191, 165, .25);
    --shadow-gold: 0 8px 40px rgba(255, 215, 0, .2);
    --r-card: 18px;
    --r-btn: 50px;
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--ocean);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--teal);
    color: #000;
    padding: 8px 16px;
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    line-height: 1.2;
}

/* ── CONTAINER ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

/* ── TOPBAR ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(3, 13, 26, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    padding: 0 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: .02em;
}

.topbar-logo img {
    border-radius: 8px;
}

.topbar-logo .fish {
    color: var(--teal);
}

/* ── NAV ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(232, 244, 248, .75);
    transition: all .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--teal-glow);
    color: var(--teal);
}

.nav-cta {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
    color: #000 !important;
    font-weight: 900 !important;
    border-radius: 50px !important;
    padding: 7px 16px !important;
}

.nav-cta:hover {
    transform: scale(1.04);
}

/* ── BURGER ── */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 901;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.burger-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media(max-width:900px) {
    .burger-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: rgba(3, 13, 26, .98);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 2px solid var(--teal);
        z-index: 899;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
        font-size: .9rem;
    }
}

/* ── BREADCRUMB ── */
.breadcrumb {
    background: rgba(7, 26, 46, .6);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.breadcrumb-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
}

.breadcrumb-inner a {
    color: var(--teal);
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.breadcrumb-current {
    color: var(--gold-2);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: .55;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 13, 26, .95) 45%, rgba(3, 13, 26, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 20px 60px 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-glow);
    border: 1px solid var(--teal);
    color: var(--teal);
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .08em;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(232, 244, 248, .8);
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Social Proof Trust Bar (page-cro) */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 22px;
    font-size: .72rem;
    color: rgba(232, 244, 248, .5);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-item .check {
    color: var(--teal);
    font-weight: 700;
}

.trust-sep {
    color: rgba(232, 244, 248, .2);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .9rem;
    padding: 13px 26px;
    border-radius: var(--r-btn);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #07040A;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .9rem;
    padding: 13px 26px;
    border-radius: var(--r-btn);
    text-decoration: none;
    transition: all .2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 11px 24px;
    border-radius: var(--r-btn);
    text-decoration: none;
    transition: all .2s;
}

.btn-secondary:hover {
    background: var(--teal-glow);
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 191, 165, .35);
    }

    50% {
        box-shadow: 0 4px 36px rgba(0, 191, 165, .65);
    }
}

/* ── STATS ROW ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.stat-val {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
}

.stat-lbl {
    display: block;
    font-size: .7rem;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.3;
}

/* ── SECTION TITLES ── */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold-2);
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: .95rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 2px;
    margin: 0 auto 32px;
}

/* ── CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    padding: 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: .3s;
}

.card:hover {
    border-color: rgba(0, 191, 165, .3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 14px;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 10px;
}

.card-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── SYMBOL CARDS ── */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.symbol-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition: all .3s;
}

.symbol-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.symbol-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 8px;
}

.symbol-name {
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 4px;
}

.symbol-payout {
    font-size: .7rem;
    color: var(--teal);
    font-weight: 700;
}

/* ── TABLES ── */
.table-wrap {
    overflow-x: auto;
    border-radius: 14px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .83rem;
}

.data-table th {
    background: linear-gradient(135deg, var(--ocean-3), var(--ocean-2));
    color: var(--gold-2);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 12px 14px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid var(--teal);
}

.data-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: rgba(0, 191, 165, .04);
}

.td-name {
    font-weight: 700;
    color: var(--gold-2);
}

.td-teal {
    color: var(--teal);
    font-weight: 700;
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-green {
    color: #2ECC71;
    font-weight: 700;
}

.td-red {
    color: #E74C3C;
    font-weight: 700;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── PAGE HERO ── */
.page-hero {
    text-align: center;
    padding: 32px 0 40px;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--gold-2);
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-sub {
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
    font-size: .95rem;
}

/* ── HIGHLIGHT BOX ── */
.hl-box {
    background: rgba(0, 137, 123, .12);
    border: 1px solid rgba(0, 191, 165, .2);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: .85rem;
    color: rgba(232, 244, 248, .8);
    margin: 20px 0;
    line-height: 1.6;
}

.hl-gold {
    background: rgba(212, 175, 55, .07);
    border-color: rgba(255, 215, 0, .25);
    border-left-color: var(--gold);
}

/* ── FAQ ── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    background: rgba(7, 26, 46, .6);
    transition: border-color .3s;
}

.faq-item:hover {
    border-color: rgba(0, 191, 165, .3);
}

.faq-q {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: .9rem;
    color: var(--gold-2);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-a {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── DEMO SLOT MACHINE ── */
.demo-container {
    max-width: 720px;
    margin: 0 auto;
}

.slot-machine {
    background: linear-gradient(135deg, var(--ocean-3), var(--ocean-2));
    border: 2px solid var(--teal);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-teal), inset 0 0 60px rgba(0, 191, 165, .05);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 191, 165, .04) 0%, transparent 60%);
}

.slot-screen {
    background: rgba(0, 10, 20, .8);
    border: 2px solid rgba(0, 191, 165, .3);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
}

.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    color: var(--muted);
}

.slot-title {
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
}

.rtp-badge {
    background: rgba(0, 191, 165, .15);
    border: 1px solid rgba(0, 191, 165, .3);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
}

.reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.reel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(0, 191, 165, .2);
    border-radius: 10px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    position: relative;
}

.reel-symbol {
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
    transition: transform .1s;
}

.reel-symbol.win {
    background: rgba(255, 215, 0, .15);
    border-radius: 6px;
    animation: winPulse .5s 3;
}

@keyframes winPulse {

    0%,
    100% {
        background: rgba(255, 215, 0, .1);
    }

    50% {
        background: rgba(255, 215, 0, .3);
    }
}

.reel.spinning .reel-symbol {
    animation: spinAnim .08s linear infinite;
}

@keyframes spinAnim {
    0% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(6px);
    }
}

.win-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity .3s;
}

.win-line.active {
    opacity: 1;
}

.result-display {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    min-height: 30px;
    color: var(--gold);
}

.result-display.win {
    color: var(--teal);
    animation: resultPop .3s ease;
}

.result-display.loss {
    color: var(--muted);
}

@keyframes resultPop {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.bet-panel {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: rgba(0, 137, 123, .2);
    color: var(--teal);
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    font-weight: 900;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip:hover,
.chip.active {
    background: var(--teal);
    color: #000;
    transform: scale(1.1);
}

.chip.gold-chip {
    border-color: var(--gold);
    background: rgba(255, 215, 0, .1);
    color: var(--gold);
}

.chip.gold-chip:hover,
.chip.gold-chip.active {
    background: var(--gold);
    color: #000;
}

.bet-info {
    flex: 1;
    min-width: 120px;
}

.bet-label {
    font-size: .68rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.bet-value {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
}

.balance-info {
    text-align: right;
}

.balance-label {
    font-size: .68rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.balance-value {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--teal);
}

.controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-spin {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    min-width: 160px;
}

.btn-spin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-spin:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.btn-maxbet {
    background: rgba(0, 191, 165, .15);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: .8rem;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
}

.btn-maxbet:hover {
    background: var(--teal-glow);
}

.session-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.session-stat {
    background: rgba(0, 10, 20, .5);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.session-stat-val {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.session-stat-lbl {
    font-size: .62rem;
    color: var(--muted);
    margin-top: 2px;
    display: block;
}

.demo-badge {
    text-align: center;
    padding: 10px;
    background: rgba(0, 191, 165, .06);
    border-radius: 10px;
    font-size: .75rem;
    color: var(--teal);
    margin-top: 16px;
    border: 1px solid rgba(0, 191, 165, .2);
}

/* ── SEO CONTENT / Z-PATTERN ── */
.seo-content {
    background: rgba(7, 26, 46, .3);
}

.seo-article {
    max-width: 900px;
}

.seo-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 14px;
    margin-top: 32px;
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin: 20px 0 10px;
}

.seo-article p {
    color: rgba(232, 244, 248, .75);
    font-size: .9rem;
    margin-bottom: 14px;
    line-height: 1.75;
}

.text-link {
    color: var(--teal);
    border-bottom: 1px dashed rgba(0, 191, 165, .4);
    transition: border-color .2s;
}

.text-link:hover {
    border-bottom-color: var(--teal);
}

.related-sports {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.sport-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 191, 165, .08);
    border: 1px solid rgba(0, 191, 165, .2);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--teal);
    transition: all .2s;
}

.sport-link:hover {
    background: var(--teal-glow);
    border-color: var(--teal);
}

.sport-link span {
    color: var(--gold-2);
}

/* ── CASINO CARD ── */
.casino-card {
    background: linear-gradient(135deg, rgba(7, 26, 46, .95), rgba(3, 13, 26, .98));
    border: 1px solid rgba(255, 215, 0, .35);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.casino-rank {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, .2);
    line-height: 1;
    margin-bottom: 4px;
}

.casino-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-2);
}

.casino-stars {
    color: var(--gold);
    font-size: 1rem;
}

.casino-bonus {
    background: rgba(0, 137, 123, .15);
    border: 1px solid rgba(0, 191, 165, .25);
    border-radius: 10px;
    padding: 10px 14px;
    margin: 12px 0;
}

.casino-bonus-amount {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold);
}

.casino-bonus-terms {
    font-size: .68rem;
    color: var(--muted);
    margin-top: 2px;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin: 12px 0;
}

.casino-feature {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 7px 10px;
    text-align: center;
}

.casino-feature-val {
    font-family: 'Cinzel', serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold-2);
    display: block;
}

.casino-feature-lbl {
    font-size: .62rem;
    color: var(--muted);
    display: block;
}

.casino-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.casino-tag {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .67rem;
    color: rgba(232, 244, 248, .7);
}

.casino-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #07040A;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .88rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    animation: ctaPulse 2.5s ease-in-out infinite;
    transition: transform .2s;
}

.casino-cta:hover {
    transform: translateY(-2px);
}

.editor-pick {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #000;
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 0 0 10px 10px;
    letter-spacing: .04em;
}

/* ── INFO BADGE (affiliation notice) ── */
.affiliate-notice {
    background: rgba(255, 215, 0, .06);
    border: 1px solid rgba(255, 215, 0, .18);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: 28px;
}

/* ── GAMBLING WARNING (casino-betting Step 8) ── */
.gambling-warning {
    background: rgba(180, 40, 30, .07);
    border-top: 1px solid rgba(180, 40, 30, .15);
    padding: 10px 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .72rem;
    color: rgba(232, 244, 248, .45);
    line-height: 1.5;
}

.gambling-warning span:first-child {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.gambling-warning a {
    color: rgba(232, 244, 248, .55);
}

/* ── STICKY CTA (page-cro) ── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--teal-dark), #005C52);
    padding: 12px 20px;
    text-align: center;
    z-index: 999;
    border-top: 2px solid var(--teal);
}

.sticky-cta a {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: .88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media(max-width:760px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 54px;
    }
}

/* ── CHART (inline RTP chart) ── */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    height: 180px;
    padding: 0 10px 10px;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    transition: height .8s cubic-bezier(.4, 0, .2, 1);
    position: relative;
}

.chart-bar-val {
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    text-align: center;
}

.chart-bar-lbl {
    font-size: .65rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
}

/* ── FOOTER ── */
footer {
    background: var(--ocean-2);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 20px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-desc {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.age-badge {
    display: inline-block;
    background: rgba(180, 40, 30, .2);
    border: 1px solid rgba(180, 40, 30, .4);
    color: #E74C3C;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: .7rem;
    padding: 3px 10px;
    border-radius: 6px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-2);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: .78rem;
    color: var(--muted);
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.footer-copy {
    font-size: .75rem;
    color: rgba(232, 244, 248, .3);
}

.footer-developer {
    font-size: .75rem;
    color: rgba(232, 244, 248, .35);
}

.footer-developer a {
    color: var(--teal);
}

.footer-legal {
    font-size: .72rem;
    color: rgba(232, 244, 248, .25);
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .session-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-spin {
        min-width: 120px;
        font-size: .85rem;
    }
}