/* ═══════════════════════════════════════════════════════════════
   BLAZING VOLCANOES POWER COMBO — CSS
   blazing-volcanoes-power-combo.com.mx | Deportech Mexico 2026
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;600;700;900&display=swap');

/* ── Design Tokens ── */
:root {
    --bg-0: #0a0200;
    --bg-1: #120500;
    --bg-2: #1a0800;
    --bg-3: #220e00;
    --card: #1e0a02;
    --card-2: #2a1004;

    --fire-1: #FF4500;
    --fire-2: #FF6B1A;
    --fire-3: #FF8C42;
    --lava: #FF2000;
    --gold: #FFD700;
    --gold-2: #FFC200;
    --obsidian: #2D1B00;

    --text: #FFE4CC;
    --text-muted: #C4906A;
    --text-dim: #7A5038;
    --border: rgba(255, 69, 0, 0.25);
    --border-gold: rgba(255, 215, 0, 0.35);

    --gradient-fire: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFD700 100%);
    --gradient-hero: linear-gradient(180deg, #0a0200 0%, #1a0500 40%, #0a0200 100%);
    --glow-fire: 0 0 30px rgba(255, 69, 0, 0.5);
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.4);

    --radius: 12px;
    --radius-lg: 20px;
    --trans: all .25s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-0);
    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
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--fire-1);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    z-index: 9999;
    transition: top .2s
}

.skip-link:focus {
    top: 16px
}

/* ── Particles ── */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: .5
}

/* ── Container ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2
}

/* ══ HEADER ══ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 2, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-logo img {
    border-radius: 8px
}

.nav-logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--gold)
}

.nav-logo-sub {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: .65rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .05em;
    margin-top: 2px
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-menu a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--trans)
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--fire-2);
    background: rgba(255, 69, 0, 0.1)
}

.nav-cta {
    background: var(--gradient-fire) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: 50px !important;
    box-shadow: var(--glow-fire)
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--trans)
}

/* ══ HERO ══ */
.hero {
    min-height: 94vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 2, 0, .95) 40%, rgba(10, 2, 0, .5) 100%), linear-gradient(to top, rgba(10, 2, 0, .9) 0%, transparent 50%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 24px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--fire-2);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-fire);
    color: #000;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: var(--glow-fire);
    transition: var(--trans);
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: .3s
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.7)
}

.btn-primary:hover::before {
    opacity: 1
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    transition: var(--trans)
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--gold)
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border)
}

.hero-stat {
    text-align: center
}

.hero-stat-value {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold)
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

/* ══ SECTIONS ══ */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1
}

.section-dark {
    background: var(--bg-1)
}

.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-eyebrow {
    display: inline-block;
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--fire-2);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 14px
}

.gold {
    color: var(--gold)
}

.fire {
    color: var(--fire-2)
}

.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto
}

/* ══ CARDS ══ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--trans)
}

.card:hover {
    border-color: var(--fire-2);
    box-shadow: var(--glow-fire);
    transform: translateY(-4px)
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px
}

.card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7
}

/* ══ SLOTS DEMO PREVIEW (stats section) ══ */
.stats-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center
}

.stat-item .stat-val {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-item .stat-lbl {
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 4px
}

/* ══ SYMBOLS GRID ══ */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px
}

.symbol-card {
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: var(--trans);
    cursor: default
}

.symbol-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold)
}

.symbol-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 12px;
    border-radius: 8px
}

.symbol-card .sym-name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px
}

.symbol-card .sym-pay {
    font-size: .75rem;
    color: var(--text-muted)
}

/* ══ TABLES ══ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border)
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

caption {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 20px;
    text-align: left;
    background: var(--bg-2)
}

thead th {
    background: rgba(255, 69, 0, 0.12);
    color: var(--fire-2);
    font-weight: 700;
    padding: 12px 16px;
    text-align: left;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--border)
}

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
    color: var(--text);
    vertical-align: middle
}

tbody tr:last-child td {
    border-bottom: none
}

tbody tr:hover td {
    background: rgba(255, 69, 0, 0.06)
}

.highlight {
    color: var(--gold);
    font-weight: 700
}

.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600
}

.tag-fire {
    background: rgba(255, 69, 0, 0.2);
    color: var(--fire-2);
    border: 1px solid rgba(255, 69, 0, 0.3)
}

.tag-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3)
}

.tag-green {
    background: rgba(0, 200, 100, 0.15);
    color: #00C864;
    border: 1px solid rgba(0, 200, 100, 0.3)
}

/* ══ BAR CHARTS ══ */
.chart-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px
}

.chart-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--gold);
    margin-bottom: 20px
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bar-row {
    display: grid;
    grid-template-columns: 180px 1fr 60px;
    align-items: center;
    gap: 12px
}

.bar-label {
    font-size: .82rem;
    color: var(--text-muted)
}

.bar-track {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 20px;
    transition: width 1s ease;
    background: var(--gradient-fire)
}

.bar-fill.orange {
    background: linear-gradient(90deg, #FF4500, #FF8C00)
}

.bar-fill.gold {
    background: linear-gradient(90deg, #FFD700, #FF8C00)
}

.bar-fill.low {
    background: linear-gradient(90deg, #FF2000, #FF6B1A)
}

.bar-value {
    font-size: .82rem;
    font-weight: 700;
    color: var(--fire-2);
    text-align: right
}

/* ══ DEMO SLOT ══ */
.slot-machine {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 2px solid var(--border-gold);
    border-radius: 24px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(255, 69, 0, 0.2)
}

.slot-header {
    text-align: center;
    margin-bottom: 24px
}

.slot-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px
}

.slot-sub {
    font-size: .8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em
}

.slot-info-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(0, 0, 0, .4);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--border)
}

.slot-info-item label {
    display: block;
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px
}

.slot-info-item span {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold)
}

.slot-display {
    background: #000;
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px
}

.slot-bg-img {
    position: absolute;
    inset: 0;
    opacity: .2
}

.slot-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    padding: 24px;
    position: relative;
    z-index: 2
}

.reel {
    aspect-ratio: 1;
    background: rgba(0, 0, 0, .7);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.reel img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: opacity .15s ease
}

.reel.spinning {
    border-color: var(--fire-2);
    box-shadow: 0 0 14px rgba(255, 69, 0, 0.5)
}

.reel.spinning img {
    animation: reel-blur .12s linear infinite
}

@keyframes reel-blur {
    0% {
        transform: translateY(-8px);
        opacity: .5;
    }

    50% {
        transform: translateY(0);
        opacity: .9;
    }

    100% {
        transform: translateY(8px);
        opacity: .5;
    }
}

.reel.winning {
    box-shadow: 0 0 30px var(--gold), inset 0 0 15px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
    animation: pulse-gold 1s ease infinite
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 15px var(--gold)
    }

    50% {
        box-shadow: 0 0 40px var(--gold), 0 0 60px rgba(255, 215, 0, 0.4)
    }
}

.slot-message {
    text-align: center;
    min-height: 40px;
    padding: 10px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: all .3s
}

.slot-message.win {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    animation: pulse-text 1s ease infinite
}

.slot-message.lose {
    color: var(--text-muted)
}

.slot-message.info {
    color: var(--fire-2)
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.bet-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px
}

.bet-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--trans)
}

.bet-btn:hover {
    background: rgba(255, 69, 0, 0.2);
    border-color: var(--fire-2)
}

.bet-display {
    background: rgba(0, 0, 0, .5);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 8px 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    min-width: 100px;
    text-align: center
}

.slot-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px
}

.spin-btn {
    flex: 1;
    max-width: 220px;
    background: var(--gradient-fire);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: var(--glow-fire);
    transition: var(--trans);
    font-family: 'Outfit', sans-serif
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.8)
}

.spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none
}

.auto-btn {
    background: rgba(255, 69, 0, 0.15);
    color: var(--fire-2);
    font-weight: 600;
    font-size: .9rem;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: var(--trans)
}

.auto-btn:hover {
    background: rgba(255, 69, 0, 0.25)
}

.auto-btn.active {
    background: rgba(255, 69, 0, 0.3);
    border-color: var(--fire-2)
}

.slot-paylines {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.payline-chip {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, .3);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--trans)
}

.payline-chip.active {
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--fire-2);
    color: var(--fire-2)
}

.slot-history {
    background: rgba(0, 0, 0, .3);
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border)
}

.slot-history-title {
    font-size: .75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.history-items {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.history-chip {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600
}

.history-chip.w {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3)
}

.history-chip.l {
    background: rgba(255, 0, 0, 0.1);
    color: #FF6B6B;
    border: 1px solid rgba(255, 0, 0, 0.2)
}

/* ══ CASINOS ══ */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.casino-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--trans)
}

.casino-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold)
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px
}

.casino-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.casino-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text)
}

.casino-rating {
    font-size: .8rem;
    color: var(--gold);
    margin-top: 4px
}

.casino-body {
    padding: 0 20px 20px
}

.bonus-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    margin-bottom: 4px
}

.bonus-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--fire-2);
    margin-bottom: 14px
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px
}

.feature-tag {
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid var(--border);
    color: var(--text-muted)
}

.casino-cta {
    display: block;
    text-align: center;
    background: var(--gradient-fire);
    color: #000;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px;
    border-radius: 10px;
    transition: var(--trans)
}

.casino-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-fire)
}

/* ══ FAQ ══ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--trans)
}

.faq-question:hover {
    color: var(--fire-2)
}

.faq-question[aria-expanded="true"] {
    color: var(--fire-2)
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--fire-2);
    transition: transform .3s
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-answer.open {
    max-height: 400px
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.8;
    border-top: 1px solid var(--border)
}

/* ══ PAGE HEADER ══ */
.page-header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border)
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.breadcrumb-list a {
    font-size: .8rem;
    color: var(--text-muted)
}

.breadcrumb-list a:hover {
    color: var(--fire-2)
}

.breadcrumb-list .sep {
    color: var(--text-dim)
}

.breadcrumb-list .current {
    font-size: .8rem;
    color: var(--text)
}

/* ══ SEO CONTENT ══ */
.seo-content {
    padding: 72px 0;
    background: var(--bg-1)
}

.seo-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 32px 0 14px
}

.seo-article h2:first-child {
    margin-top: 0
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fire-2);
    margin: 22px 0 10px
}

.seo-article p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.85;
    margin-bottom: 14px
}

.seo-article strong {
    color: var(--text)
}

.text-link {
    color: var(--fire-2);
    border-bottom: 1px dashed rgba(255, 107, 26, 0.4);
    transition: var(--trans)
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--gold)
}

.related-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: .85rem;
    color: var(--text-muted);
    transition: var(--trans)
}

.page-link:hover {
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--fire-2);
    color: var(--fire-2)
}

.page-link span {
    font-weight: 600;
    color: var(--text)
}

.mt-24 {
    margin-top: 24px
}

/* ══ FOOTER ══ */
.site-footer {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    position: relative;
    z-index: 1
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 16px 0
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul a {
    font-size: .85rem;
    color: var(--text-muted);
    transition: var(--trans)
}

.footer-col ul a:hover {
    color: var(--fire-2)
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 12px
}

.footer-legal {
    font-size: .78rem;
    color: var(--text-dim)
}

.footer-dev {
    font-size: .78rem;
    color: var(--text-muted)
}

.footer-dev a {
    color: var(--fire-2)
}

.responsible-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .8rem;
    color: var(--text-muted)
}

/* ══ MISC UTILS ══ */
.mb-32 {
    margin-bottom: 32px
}

.lava-divider {
    height: 2px;
    background: var(--gradient-fire);
    opacity: .4;
    margin: 32px 0;
    border: none
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .casinos-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 2, 0, .97);
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--border)
    }

    .nav-menu.open {
        display: flex
    }

    .nav-hamburger {
        display: flex
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .casinos-grid {
        grid-template-columns: 1fr
    }

    .bar-row {
        grid-template-columns: 120px 1fr 50px
    }

    .slot-reels {
        gap: 6px
    }

    .reel {
        width: 88px;
        height: 88px
    }

    .hero-stats {
        gap: 20px
    }

    .hero-btns {
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .slot-reels {
        gap: 4px
    }

    .reel {
        width: 74px;
        height: 74px
    }

    .reel img {
        width: 56px;
        height: 56px
    }

    .stats-strip {
        gap: 24px
    }
}