/* Fortune Ox MX — CSS 2026 · fortune-ox-mx.com.mx · deportech-mexico.com.mx */
/* Theme: Deep Crimson / Imperial Gold / Ember Orange — matches Fortune Ox PG Soft */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --red: #CC2200;
    --red-dark: #8B0000;
    --red-deep: #1A0000;
    --red-mid: #3D0000;
    --ember: #FF4500;
    --ember-glow: rgba(255, 69, 0, .4);
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF0A0;
    --gold-glow: rgba(255, 215, 0, .4);
    --amber: #FF8C00;
    --dark: #0D0000;
    --dark-mid: #150000;
    --dark-card: #1E0000;
    --dark-card2: #270808;
    --dark-card3: #2E0A0A;
    --border-red: rgba(204, 34, 0, .35);
    --border-gold: rgba(255, 215, 0, .25);
    --border-ember: rgba(255, 69, 0, .3);
    --text: #FFF5E0;
    --text-muted: #9A7060;
    --grad-ox: linear-gradient(135deg, #CC2200, #FF4500);
    --grad-gold: linear-gradient(135deg, #FFD700, #FF8C00);
    --grad-fire: linear-gradient(135deg, #FF4500, #FFD700);
    --grad-dark: linear-gradient(180deg, #1A0000, #0D0000);
    --font-head: 'Cinzel Decorative', 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--dark-mid)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--gold);
    color: #000;
    padding: 10px 18px;
    border-radius: 0 0 8px 8px;
    font-size: .85rem;
    font-weight: 700;
    z-index: 9999;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px
}

[id] {
    scroll-margin-top: 80px
}

.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
}

/* CHINESE PATTERN OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(204, 34, 0, .03) 0 1px, transparent 1px 24px), repeating-linear-gradient(-45deg, rgba(255, 215, 0, .02) 0 1px, transparent 1px 24px);
    pointer-events: none;
    z-index: 0
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 0, 0, .96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold)
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 70px;
    position: relative;
    z-index: 1
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, .5);
    box-shadow: 0 0 20px var(--gold-glow);
    object-fit: cover
}

.logo-text {
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.15
}

.logo-fortune {
    color: var(--gold);
    text-shadow: 0 0 16px var(--gold-glow)
}

.logo-ox {
    color: var(--ember);
    font-size: .7em;
    letter-spacing: .18em;
    text-shadow: 0 0 10px var(--ember-glow)
}

.logo-mx {
    color: var(--text-muted);
    font-size: .55em;
    letter-spacing: .22em
}

.main-nav {
    display: flex;
    gap: 2px;
    margin-left: auto
}

.main-nav a {
    padding: 7px 11px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text-muted);
    transition: color .2s, background .2s
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, .06)
}

.header-cta {
    background: var(--grad-ox);
    color: #fff;
    padding: 9px 20px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .07em;
    white-space: nowrap;
    box-shadow: 0 0 28px var(--ember-glow);
    transition: transform .15s, box-shadow .15s;
    flex-shrink: 0;
    min-height: 44px;
    display: flex;
    align-items: center
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 56px var(--ember-glow)
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 0, 0, .97);
    backdrop-filter: blur(24px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .08em;
    transition: color .2s
}

.mobile-menu a:hover {
    color: var(--gold)
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer
}

@media(max-width:1020px) {

    .main-nav,
    .header-cta {
        display: none
    }

    .burger-btn {
        display: flex
    }
}

/* HERO */
.hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') right center/cover no-repeat;
    opacity: .8
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 0, 0, .96) 38%, rgba(13, 0, 0, .55) 70%, rgba(13, 0, 0, .2) 100%)
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1
}

.coin-particle {
    position: absolute;
    font-size: 1.2rem;
    animation: coinFall linear infinite;
    opacity: 0
}

@keyframes coinFall {
    0% {
        opacity: 0;
        transform: translateY(-30px) rotate(0)
    }

    10% {
        opacity: .9
    }

    85% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg)
    }
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center
}

@media(max-width:768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 50px;
    padding: 5px 18px;
    font-size: .65rem;
    letter-spacing: .2em;
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: .04em
}

.hero-title .fortune {
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(255, 215, 0, .2);
    display: block
}

.hero-title .ox {
    color: var(--ember);
    text-shadow: 0 0 30px var(--ember-glow);
    display: block
}

.hero-title .mx {
    color: var(--text-muted);
    font-size: .38em;
    letter-spacing: .28em;
    display: block;
    margin-top: 4px
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 30px;
    max-width: 520px
}

.hero-traits {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.trait-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, .06);
    border: 1px solid rgba(255, 215, 0, .2);
    border-radius: 8px;
    padding: 6px 13px;
    font-size: .68rem;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.hstat-val {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 24px var(--gold-glow);
    line-height: 1
}

.hstat-label {
    font-size: .6rem;
    color: var(--text-muted);
    letter-spacing: .12em;
    font-family: 'Cinzel', serif;
    margin-top: 3px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-ox {
    background: var(--grad-ox);
    color: #fff;
    padding: 14px 34px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    box-shadow: 0 0 40px var(--ember-glow);
    transition: transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px
}

.btn-ox:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 70px var(--ember-glow)
}

.btn-gold {
    background: var(--grad-gold);
    color: #1A0000;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    box-shadow: 0 0 30px var(--gold-glow);
    transition: transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px
}

.btn-gold:hover {
    transform: translateY(-2px)
}

.btn-outline {
    border: 2px solid rgba(255, 215, 0, .35);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .07em;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px
}

.btn-outline:hover {
    background: rgba(255, 215, 0, .08);
    border-color: var(--gold)
}

/* HERO VISUAL — Slot Preview */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px
}

.slot-preview {
    background: linear-gradient(180deg, #1E0000, #0D0000);
    border: 2px solid rgba(255, 215, 0, .4);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 0 80px rgba(204, 34, 0, .35), 0 0 160px rgba(255, 215, 0, .08);
    position: relative;
    overflow: hidden
}

.slot-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255, 215, 0, .02) 0 1px, transparent 1px 6px);
    pointer-events: none
}

.prev-top {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px
}

.prev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotPulse 1s ease-in-out infinite
}

.prev-dot.r {
    background: var(--red);
    box-shadow: 0 0 6px var(--red)
}

.prev-dot.g {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation-delay: .35s
}

.prev-dot.e {
    background: var(--ember);
    box-shadow: 0 0 6px var(--ember);
    animation-delay: .7s
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    grid-template-rows: repeat(3, 80px);
    gap: 3px;
    background: rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 215, 0, .2);
    border-radius: 10px;
    padding: 4px;
    position: relative
}

.slot-cell {
    border-radius: 6px;
    background: var(--dark-card2);
    border: 1px solid rgba(204, 34, 0, .3);
    overflow: hidden;
    position: relative;
    transition: border-color .3s
}

.slot-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slot-cell.winning {
    border-color: var(--gold);
    box-shadow: 0 0 16px var(--gold-glow)
}

.win-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: var(--grad-gold);
    box-shadow: 0 0 12px var(--gold);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    z-index: 10
}

.jackpot-badge {
    background: rgba(255, 215, 0, .07);
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 14px;
    padding: 12px 20px;
    text-align: center;
    width: 100%
}

.jp-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow)
}

.jp-label {
    font-size: .58rem;
    color: var(--text-muted);
    letter-spacing: .14em;
    font-family: 'Cinzel', serif;
    margin-top: 2px
}

@media(max-width:768px) {
    .hero-visual {
        display: none
    }
}

/* TICKER */
.ox-bar {
    background: linear-gradient(90deg, #8B0000, #CC2200, #FF4500, #CC2200, #8B0000);
    padding: 9px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, .2);
    border-bottom: 1px solid rgba(255, 215, 0, .2)
}

.ox-bar-inner {
    display: flex;
    gap: 64px;
    animation: tickerMove 22s linear infinite;
    white-space: nowrap
}

@keyframes tickerMove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .16em;
    color: rgba(255, 240, 160, .95);
    font-weight: 600
}

/* SECTIONS */
.section {
    padding: 76px 0;
    position: relative;
    z-index: 1
}

.section-dark {
    background: var(--dark-card)
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.section-eyebrow {
    display: inline-block;
    font-size: .6rem;
    letter-spacing: .24em;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: .04em
}

.section-title span {
    color: var(--ember);
    text-shadow: 0 0 20px var(--ember-glow)
}

.section-desc {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 20px
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--grad-gold);
    border-radius: 3px;
    margin: 0 0 50px;
    box-shadow: 0 0 10px var(--gold-glow)
}

/* SYMBOLS GRID */
.sym-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 16px
}

.sym-card {
    background: var(--dark-card2);
    border: 1px solid var(--border-red);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.sym-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, .06), transparent 60%)
}

.sym-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, .5);
    box-shadow: 0 8px 40px rgba(255, 215, 0, .15)
}

.sym-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 1px solid rgba(255, 215, 0, .2);
    box-shadow: 0 0 20px rgba(255, 215, 0, .12)
}

.sym-name {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .08em;
    margin-bottom: 4px
}

.sym-mult {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--ember);
    text-shadow: 0 0 12px var(--ember-glow)
}

.sym-label {
    font-size: .6rem;
    color: var(--text-muted);
    margin-top: 2px
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px
}

.card {
    background: var(--dark-card2);
    border: 1px solid var(--border-red);
    border-radius: 20px;
    padding: 28px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    opacity: 0;
    transition: opacity .3s
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, .3);
    box-shadow: 0 8px 40px rgba(204, 34, 0, .2)
}

.card:hover::before {
    opacity: 1
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: .05em
}

.card-text {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.78
}

/* FACTS */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 16px
}

.fact-box {
    background: var(--dark-card2);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.fact-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 69, 0, .08), transparent 60%)
}

.fact-val {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 24px var(--gold-glow);
    margin-bottom: 6px
}

.fact-label {
    font-size: .62rem;
    color: var(--text-muted);
    letter-spacing: .12em;
    font-family: 'Cinzel', serif
}

/* BAR CHART */
.chart-wrap {
    background: var(--dark-card2);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px
}

.chart-title {
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 22px;
    letter-spacing: .07em
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 13px
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.bar-label {
    font-size: .72rem;
    color: var(--text-muted);
    width: 140px;
    flex-shrink: 0;
    font-family: 'Cinzel', serif
}

.bar-track {
    flex: 1;
    height: 26px;
    background: rgba(255, 255, 255, .04);
    border-radius: 5px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.6s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px
}

.bar-val {
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    font-weight: 700;
    color: #000
}

.bar-fill.gold {
    background: var(--grad-gold)
}

.bar-fill.ember {
    background: var(--grad-fire)
}

.bar-fill.red {
    background: linear-gradient(90deg, #8B0000, #CC2200)
}

.bar-fill.muted {
    background: linear-gradient(90deg, #3D0000, #5A1010)
}

/* DONUT */
.donut-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center
}

@media(max-width:560px) {
    .donut-grid {
        grid-template-columns: 1fr
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .84rem;
    margin-bottom: 10px
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.legend-label {
    color: var(--text-muted)
}

.legend-val {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-left: auto
}

/* TABLE */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border-red);
    background: var(--dark-card2)
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem
}

caption {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .1em;
    color: var(--text-muted);
    padding: 10px 16px 6px;
    text-align: left
}

th {
    background: rgba(204, 34, 0, .18);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: .65rem;
    letter-spacing: .1em;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-red)
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    color: var(--text-muted);
    line-height: 1.5
}

tr:last-child td {
    border-bottom: none
}

tr:hover td {
    background: rgba(204, 34, 0, .08);
    color: var(--text)
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
    font-family: 'Cinzel', serif
}

.td-ember {
    color: var(--ember);
    font-weight: 700;
    font-family: 'Cinzel', serif
}

.td-green {
    color: #66FF88;
    font-weight: 700;
    font-family: 'Cinzel', serif
}

.td-red {
    color: #FF4444;
    font-weight: 700;
    font-family: 'Cinzel', serif
}

.td-muted {
    color: var(--text-muted)
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--dark-card2);
    border: 1px solid var(--border-red);
    border-radius: 12px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    padding: 18px 20px;
    text-align: left;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    transition: color .2s;
    min-height: 44px
}

.faq-q:hover {
    color: var(--gold)
}

.faq-q span {
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-q[aria-expanded="true"] {
    color: var(--gold)
}

.faq-q[aria-expanded="true"] span {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.82;
    padding: 0 20px
}

.faq-a.open {
    max-height: 600px;
    padding: 0 20px 18px
}

/* BREADCRUMB */
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    font-size: .76rem;
    color: var(--text-muted);
    margin-bottom: 14px
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 6px;
    color: var(--gold)
}

.breadcrumb a {
    color: var(--gold)
}

.breadcrumb a:hover {
    color: var(--ember)
}

/* PAGE HERO */
.page-hero {
    padding: 50px 24px 56px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(204, 34, 0, .22), transparent 60%);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: .05;
    z-index: 0
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 4vw, 2.9rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: .04em
}

.page-hero h1 span {
    color: var(--ember);
    text-shadow: 0 0 24px var(--ember-glow)
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.72;
    max-width: 680px;
    margin: 0 auto
}

/* RG BANNER */
.rgambling-banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, .4), rgba(26, 0, 0, .8));
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap
}

.rgb-icon {
    font-size: 2.4rem;
    flex-shrink: 0
}

.rgb-text h3 {
    font-family: 'Cinzel', serif;
    font-size: .84rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: .06em
}

.rgb-text p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.65
}

/* SEO CONTENT */
.seo-content {
    background: var(--dark-card);
    border-top: 1px solid var(--border-gold);
    padding: 64px 0
}

.seo-article {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: .04em;
    line-height: 1.25
}

.seo-article h3 {
    font-family: 'Cinzel', serif;
    font-size: .93rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
    letter-spacing: .05em;
    border-left: 3px solid var(--ember);
    padding-left: 12px
}

.seo-article p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.88;
    margin-bottom: 16px;
    max-width: 860px
}

.seo-article strong {
    color: var(--text);
    font-weight: 600
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s
}

.text-link:hover {
    color: var(--ember)
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 40px
}

.seo-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .14);
    border-radius: 12px;
    font-family: 'Cinzel', serif;
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .06em;
    transition: all .2s;
    min-height: 52px
}

.seo-link-card:hover {
    background: rgba(255, 215, 0, .1);
    border-color: rgba(255, 215, 0, .4);
    color: var(--gold);
    transform: translateY(-2px)
}

.seo-link-card span {
    font-size: 1.1rem;
    flex-shrink: 0
}

/* FOOTER */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 32px;
    position: relative;
    z-index: 1
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

.footer-brand p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.68;
    max-width: 280px;
    margin-top: 10px
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: .6rem;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid var(--border-red);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    flex-direction: column
}

.footer-bottom a {
    color: var(--gold)
}

.footer-bottom a:hover {
    color: var(--ember)
}

/* DEMO — SLOT MACHINE */
.demo-section {
    background: var(--dark-card);
    padding: 0
}

.demo-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: calc(100vh - 70px)
}

@media(max-width:900px) {
    .demo-wrap {
        grid-template-columns: 1fr
    }
}

.demo-board {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 14px;
    position: relative
}

.demo-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 8px;
    flex-wrap: wrap;
    gap: 10px
}

.demo-label {
    font-family: 'Cinzel', serif;
    font-size: .58rem;
    letter-spacing: .18em;
    color: var(--gold)
}

.demo-controls {
    background: var(--dark-card2);
    border-left: 1px solid var(--border-red);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    overflow-y: auto
}

@media(max-width:900px) {
    .demo-controls {
        border-left: none;
        border-top: 1px solid var(--border-red)
    }
}

.ctrl-label {
    font-family: 'Cinzel', serif;
    font-size: .52rem;
    letter-spacing: .16em;
    color: var(--gold);
    margin-bottom: 6px;
    text-transform: uppercase
}

.ctrl-val {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold)
}

.reel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: rgba(0, 0, 0, .7);
    border: 2px solid rgba(255, 215, 0, .3);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 0 60px rgba(204, 34, 0, .3), inset 0 0 30px rgba(0, 0, 0, .5);
    position: relative;
    max-width: 380px;
    width: 100%
}

.reel-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 8px;
    overflow: hidden
}

.reel-cell {
    width: 100%;
    height: 90px;
    background: var(--dark-card2);
    border: 1px solid rgba(204, 34, 0, .25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: border-color .3s;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box
}
.reel-cell img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 5px;
    position: absolute;
    top: 0; left: 0;
}

.reel-cell img {
    width: 80%;
    height: 80%;
    object-fit: contain
}

.reel-cell.win {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    animation: winPulse .4s ease-in-out 3
}

@keyframes winPulse {

    0%,
    100% {
        border-color: var(--gold)
    }

    50% {
        border-color: var(--ember);
        box-shadow: 0 0 40px var(--ember-glow)
    }
}

.reel-cell.spin {
    animation: reelSpin .15s linear infinite
}

@keyframes reelSpin {
    0% {
        transform: translateY(-8%)
    }

    100% {
        transform: translateY(8%)
    }
}

.bet-row {
    display: flex;
    gap: 6px;
    align-items: center
}

.bet-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, .07);
    border: 1px solid rgba(255, 215, 0, .2);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    min-height: 44px;
    flex-shrink: 0
}

.bet-btn:hover {
    background: rgba(255, 215, 0, .18)
}

.bet-display {
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--gold);
    min-width: 60px;
    text-align: center;
    font-weight: 700
}

.spin-btn {
    width: 100%;
    padding: 15px;
    background: var(--grad-ox);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    cursor: pointer;
    letter-spacing: .1em;
    box-shadow: 0 0 30px var(--ember-glow);
    transition: transform .15s, box-shadow .15s;
    min-height: 50px
}

.spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px var(--ember-glow)
}

.spin-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none
}

.auto-btn {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: .63rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .08em;
    border: 1px solid rgba(255, 215, 0, .25);
    background: rgba(255, 215, 0, .05);
    color: var(--gold);
    transition: all .2s;
    min-height: 44px
}

.auto-btn.active {
    background: rgba(204, 34, 0, .15);
    border-color: var(--red);
    color: var(--ember)
}

.fs-bar {
    width: 100%;
    background: rgba(255, 69, 0, .08);
    border: 1px solid rgba(255, 69, 0, .2);
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    display: none
}

.fs-bar.active {
    display: block
}

.fs-count {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--ember);
    text-shadow: 0 0 12px var(--ember-glow)
}

.fs-label {
    font-size: .58rem;
    color: var(--text-muted);
    font-family: 'Cinzel', serif;
    letter-spacing: .1em
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .03)
}

.stat-row:last-child {
    border-bottom: none
}

.stat-label {
    font-size: .72rem;
    color: var(--text-muted)
}

.stat-v {
    font-family: 'Cinzel', serif;
    font-size: .78rem;
    font-weight: 700
}

.sv-gold {
    color: var(--gold)
}

.sv-ember {
    color: var(--ember)
}

.sv-green {
    color: #66FF88
}

.sv-red {
    color: #FF5555
}

.hist-list {
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.hist-item {
    font-size: .67rem;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    display: flex;
    justify-content: space-between
}

.hist-item.h-big {
    color: var(--gold);
    font-weight: 700
}

.hist-item.h-win {
    color: #66FF88
}

.hist-item.h-loss {
    color: var(--text-muted)
}

.bigwin-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.bigwin-overlay.show {
    opacity: 1;
    pointer-events: all
}

.bigwin-box {
    background: linear-gradient(135deg, #1E0000, #0D0000);
    border: 3px solid var(--gold);
    border-radius: 32px;
    padding: 52px 64px;
    text-align: center;
    box-shadow: 0 0 120px rgba(204, 34, 0, .5), 0 0 200px var(--gold-glow)
}

@media(max-width:480px) {
    .bigwin-box {
        padding: 36px 20px
    }
}

.bw-icon {
    font-size: 4rem;
    margin-bottom: 8px
}

.bw-title {
    font-family: var(--font-head);
    font-size: .82rem;
    letter-spacing: .3em;
    color: var(--gold);
    margin-bottom: 10px
}

.bw-amount {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--ember);
    text-shadow: 0 0 40px var(--ember-glow);
    margin-bottom: 6px
}

.bw-mult {
    font-family: 'Cinzel', serif;
    font-size: .82rem;
    letter-spacing: .15em;
    color: var(--text-muted);
    margin-bottom: 22px
}

.bw-close {
    background: var(--grad-gold);
    color: #1A0000;
    border: none;
    padding: 13px 32px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    cursor: pointer;
    letter-spacing: .1em
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

@media print {

    .site-header,
    .mobile-menu,
    .burger-btn,
    .hero-visual,
    .demo-wrap,
    footer,
    .ox-bar {
        display: none !important
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt
    }
}