/* Fortune Tiger MX — CSS 2026 */
/* deportech-mexico.com.mx */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --red: #CC2200;
    --red-dark: #8B0000;
    --red-deep: #3D0000;
    --gold: #FFD700;
    --gold-dark: #C8920A;
    --gold-light: #FFE766;
    --orange: #FF6B00;
    --amber: #FF9500;
    --dark: #0A0302;
    --dark-mid: #130604;
    --dark-card: #1A0806;
    --dark-card2: #220C08;
    --dark-card3: #2A0F0A;
    --border-red: rgba(204, 34, 0, .25);
    --border-gold: rgba(255, 215, 0, .22);
    --text: #FAF0E6;
    --text-muted: #B08060;
    --red-glow: rgba(204, 34, 0, .4);
    --gold-glow: rgba(255, 215, 0, .35);
    --orange-glow: rgba(255, 107, 0, .3);
    --font-head: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --grad-fire: linear-gradient(135deg, #CC2200, #FF6B00);
    --grad-gold: linear-gradient(135deg, #FFD700, #FF9500);
    --grad-dragon: linear-gradient(135deg, #8B0000, #CC2200, #FF6B00);
    --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
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--dark-mid)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px
}

/* SKIP LINK */
.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;
    text-decoration: none
}

.skip-link:focus {
    top: 0
}

/* FOCUS */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 3, 2, .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
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    border: 1px solid rgba(255, 215, 0, .4);
    box-shadow: 0 0 18px var(--red-glow);
    object-fit: cover
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em
}

.logo-fortune {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow)
}

.logo-tiger {
    color: #fff
}

.logo-mx {
    color: var(--orange);
    font-size: .7em;
    text-shadow: 0 0 8px var(--orange-glow)
}

.main-nav {
    display: flex;
    gap: 2px;
    margin-left: auto
}

.main-nav a {
    padding: 7px 12px;
    border-radius: 8px;
    font-size: .82rem;
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--text-muted);
    transition: color .2s, background .2s
}

.main-nav a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, .08)
}

.main-nav a.active {
    color: var(--gold)
}

.header-cta {
    background: var(--grad-fire);
    color: #fff;
    padding: 9px 20px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    white-space: nowrap;
    box-shadow: 0 0 24px var(--red-glow);
    transition: transform .15s, box-shadow .15s;
    flex-shrink: 0
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--red-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(10, 3, 2, .97);
    backdrop-filter: blur(24px);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    font-family: var(--font-head);
    font-size: 1.5rem;
    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:960px) {

    .main-nav,
    .header-cta {
        display: none
    }

    .burger-btn {
        display: flex
    }
}

/* HERO */
.hero {
    min-height: 90vh;
    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: .85
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 3, 2, .95) 40%, rgba(10, 3, 2, .55) 100%), radial-gradient(ellipse at 10% 50%, rgba(204, 34, 0, .15), transparent)
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    animation: particleFly 6s linear infinite;
    opacity: 0
}

@keyframes particleFly {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg)
    }

    10% {
        opacity: .8
    }

    90% {
        opacity: .6
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) 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
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, .08);
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: .72rem;
    letter-spacing: .16em;
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 22px
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: .03em
}

.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 .tiger {
    color: #fff;
    display: block
}

.hero-title .mxico {
    color: var(--orange);
    font-size: .55em;
    letter-spacing: .2em;
    display: block
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px
}

.hero-traits {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.trait-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, .07);
    border: 1px solid rgba(255, 215, 0, .18);
    border-radius: 8px;
    padding: 6px 13px;
    font-size: .75rem;
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--gold)
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 38px
}

.hstat-val {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow)
}

.hstat-label {
    font-size: .68rem;
    color: var(--text-muted);
    letter-spacing: .1em
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-fire {
    background: var(--grad-fire);
    color: #fff;
    padding: 14px 34px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .07em;
    box-shadow: 0 0 32px var(--red-glow);
    transition: transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px
}

.btn-fire:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px var(--red-glow)
}

.btn-gold {
    background: var(--grad-gold);
    color: #000;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .07em;
    box-shadow: 0 0 24px 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 var(--border-gold);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    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, .1);
    border-color: var(--gold)
}

/* HERO VISUAL — slot machine mock */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.slot-preview {
    background: linear-gradient(180deg, #2a0a04, #1a0604);
    border: 2px solid rgba(255, 215, 0, .3);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 0 80px var(--red-glow), 0 0 160px rgba(255, 215, 0, .06);
    position: relative
}

.slot-preview-lights {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px
}

.sp-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: spBlink .8s ease-in-out infinite
}

.sp-light.r {
    background: #FF2D55;
    box-shadow: 0 0 6px #FF2D55
}

.sp-light.g {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation-delay: .4s
}

@keyframes spBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.slot-screen {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    gap: 4px;
    background: #000;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 12px
}

.slot-cell {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 215, 0, .04);
    border: 1px solid rgba(255, 215, 0, .08);
    overflow: hidden;
    position: relative
}

.slot-cell img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .5))
}

.slot-win-line {
    height: 3px;
    background: var(--grad-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--gold-glow);
    animation: linePulse 1.5s ease-in-out infinite
}

@keyframes linePulse {

    0%,
    100% {
        opacity: .4
    }

    50% {
        opacity: 1
    }
}

.slot-preview-label {
    text-align: center;
    font-family: var(--font-head);
    font-size: .65rem;
    letter-spacing: .16em;
    color: var(--gold);
    text-shadow: 0 0 8px var(--gold-glow)
}

.jackpot-badge {
    background: rgba(255, 215, 0, .1);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 12px 20px;
    text-align: center
}

.jp-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 16px var(--gold-glow)
}

.jp-label {
    font-size: .63rem;
    color: var(--text-muted);
    letter-spacing: .1em
}

@media(max-width:768px) {
    .hero-visual {
        display: none
    }
}

/* TOP BAR */
.tiger-bar {
    background: var(--grad-dragon);
    padding: 8px 0;
    overflow: hidden;
    position: relative
}

.tiger-bar-inner {
    display: flex;
    gap: 60px;
    animation: tickerMove 20s linear infinite;
    white-space: nowrap
}

@keyframes tickerMove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .9)
}

/* SECTIONS */
.section {
    padding: 80px 0
}

.section-dark {
    background: var(--dark-card)
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.section-eyebrow {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .22em;
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: .04em
}

.section-title span {
    color: var(--gold)
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 20px
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--grad-fire);
    border-radius: 3px;
    margin: 0 0 48px
}

/* MERMAID / CHART CONTAINERS */
.chart-wrap {
    background: var(--dark-card2);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    overflow: hidden
}

.chart-title {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: .08em
}

/* BAR CHART */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.bar-label {
    font-size: .8rem;
    color: var(--text-muted);
    width: 160px;
    flex-shrink: 0;
    font-family: var(--font-head)
}

.bar-track {
    flex: 1;
    height: 28px;
    background: rgba(255, 255, 255, .05);
    border-radius: 6px;
    overflow: hidden;
    position: relative
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    color: #000;
    letter-spacing: .06em;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
}

.bar-fill.fire {
    background: var(--grad-fire)
}

.bar-fill.gold {
    background: var(--grad-gold);
    color: #000
}

.bar-fill.orange {
    background: linear-gradient(90deg, #FF6B00, #FFAA00)
}

.bar-fill.amber {
    background: linear-gradient(90deg, #C8920A, #FFD700)
}

.bar-val {
    font-family: var(--font-head);
    font-size: .8rem;
    color: var(--gold);
    width: 50px;
    text-align: right;
    flex-shrink: 0
}

/* DONUT */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

.donut-canvas-wrap {
    width: 180px;
    height: 180px;
    flex-shrink: 0
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--text-muted)
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0
}

/* PAYTABLE CARDS */
.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px
}

.pay-card {
    background: var(--dark-card2);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.pay-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, .1), transparent 70%);
    transition: opacity .3s
}

.pay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, .08)
}

.pay-card:hover::before {
    opacity: 1
}

.pay-card img {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, .4))
}

.pay-card-name {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: .08em
}

.pay-card-mult {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow)
}

.pay-card-label {
    font-size: .65rem;
    color: var(--text-muted);
    letter-spacing: .08em
}

.pay-card.wild-card {
    border-color: rgba(255, 107, 0, .4);
    box-shadow: 0 0 20px rgba(255, 107, 0, .1)
}

.pay-card.tiger-card {
    border-color: rgba(255, 215, 0, .5);
    box-shadow: 0 0 24px rgba(255, 215, 0, .12)
}

/* GAME CARDS */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px
}

.game-card {
    background: var(--dark-card2);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(204, 34, 0, .15)
}

.game-card-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em
}

.badge-gold {
    background: rgba(255, 215, 0, .15);
    border: 1px solid rgba(255, 215, 0, .4);
    color: var(--gold)
}

.badge-fire {
    background: rgba(204, 34, 0, .2);
    border: 1px solid rgba(204, 34, 0, .4);
    color: #FF6B6B
}

.badge-new {
    background: rgba(0, 200, 83, .15);
    border: 1px solid rgba(0, 200, 83, .4);
    color: #00C853
}

.game-card-body {
    padding: 18px
}

.game-card-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: .04em
}

.game-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px
}

.chip {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .67rem;
    font-weight: 600;
    background: rgba(255, 215, 0, .08);
    border: 1px solid var(--border-gold);
    color: var(--gold)
}

.chip-red {
    background: rgba(204, 34, 0, .1);
    border-color: var(--border-red);
    color: #FF6B6B
}

.game-info {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6
}

.btn-play {
    display: block;
    text-align: center;
    background: var(--grad-fire);
    color: #fff;
    padding: 9px;
    border-radius: 9px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .07em;
    transition: opacity .2s;
    min-height: 36px
}

.btn-play:hover {
    opacity: .85
}

/* FEATURE CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px
}

.card {
    background: var(--dark-card2);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .2s, border-color .2s
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, .35)
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 14px
}

.card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: .04em
}

.card-text {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.65
}

/* TABLE */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-gold);
    border-radius: 14px
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem
}

caption {
    font-family: var(--font-head);
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--text-muted);
    padding: 14px 16px;
    text-align: left
}

th {
    background: rgba(255, 215, 0, .07);
    padding: 12px 16px;
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .12em;
    text-align: left;
    color: var(--gold);
    border-bottom: 1px solid var(--border-gold)
}

td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    color: var(--text-muted)
}

tr:last-child td {
    border-bottom: none
}

tr:hover td {
    background: rgba(255, 215, 0, .02)
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-head)
}

.td-fire {
    color: var(--orange);
    font-weight: 700;
    font-family: var(--font-head)
}

.td-green {
    color: #00C853;
    font-weight: 700;
    font-family: var(--font-head)
}

/* 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
}

.faq-q:hover {
    color: var(--gold)
}

.faq-q span {
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .3s
}

.faq-q[aria-expanded="true"] span {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 20px
}

.faq-a.open {
    max-height: 400px;
    padding: 0 20px 18px
}

/* SEO */
.seo-content {
    background: var(--dark-card);
    border-top: 1px solid var(--border-gold);
    padding: 64px 0
}

.seo-article {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: .04em
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    margin: 30px 0 10px
}

.seo-article p {
    font-size: .93rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px
}

.text-link {
    color: var(--gold);
    border-bottom: 1px dashed rgba(255, 215, 0, .4);
    transition: color .2s
}

.text-link:hover {
    color: var(--orange)
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 32px
}

.seo-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-card2);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all .2s
}

.seo-link-card:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(255, 215, 0, .07)
}

.seo-link-card span {
    font-size: 1.1rem
}

/* BREADCRUMB */
.breadcrumb {
    max-width: 1280px;
    margin: 12px auto 0;
    padding: 0 24px;
    font-size: .78rem;
    color: var(--text-muted)
}

.breadcrumb ol {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap
}

.breadcrumb li::after {
    content: '›';
    margin-left: 8px
}

.breadcrumb li:last-child::after {
    content: ''
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color .2s
}

.breadcrumb a:hover {
    color: var(--gold)
}

/* PAGE HERO */
.page-hero {
    padding: 56px 0 40px;
    background: linear-gradient(180deg, rgba(204, 34, 0, .07), transparent)
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: .04em
}

.page-hero h1 span {
    color: var(--gold)
}

.page-hero p {
    font-size: .98rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.72
}

/* RESP BANNER */
.resp-banner {
    background: rgba(204, 34, 0, .07);
    border: 1px solid rgba(204, 34, 0, .25);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: .84rem;
    color: var(--text-muted);
    margin: 32px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.resp-banner strong {
    color: var(--orange)
}

/* FOOTER */
footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border-gold);
    padding: 60px 0 32px
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

.footer-brand p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 14px
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: .68rem;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase
}

.footer-col a {
    display: block;
    font-size: .83rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color .2s
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .77rem;
    color: var(--text-muted);
    text-align: center
}

.footer-bottom a {
    color: var(--gold);
    transition: color .2s
}

.footer-bottom a:hover {
    color: var(--orange)
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fadeup {
    animation: fadeUp .7s ease forwards
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

.delay-4 {
    animation-delay: .4s
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s, transform .65s
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* FORTUNE GLOW anim */
@keyframes fortuneGlow {

    0%,
    100% {
        text-shadow: 0 0 30px var(--gold-glow), 0 0 60px rgba(255, 215, 0, .2)
    }

    50% {
        text-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(255, 215, 0, .4)
    }
}

.glow-anim {
    animation: fortuneGlow 3s ease-in-out infinite
}

/* REDUCED MOTION */
@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

/* PRINT */
@media print {

    .site-header,
    .mobile-menu,
    .burger-btn,
    .hero-visual,
    .tiger-bar,
    footer {
        display: none !important
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt
    }
}

/* TOUCH TARGETS */
.btn-fire,
.btn-gold,
.btn-outline,
.btn-play,
.faq-q,
.header-cta {
    min-height: 44px
}

/* SEO CONTENT BLOCKS */
.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.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: .04em;
    line-height: 1.25
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 12px;
    letter-spacing: .05em;
    border-left: 3px solid var(--red);
    padding-left: 12px
}

.seo-article p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.85;
    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(--orange)
}

/* SEO internal links grid */
.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 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: var(--font-head);
    font-size: .78rem;
    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, .35);
    color: var(--gold);
    transform: translateY(-2px)
}

.seo-link-card span {
    font-size: 1.1rem;
    flex-shrink: 0
}

@media(max-width: 640px) {
    .seo-links-grid {
        grid-template-columns: 1fr 1fr
    }
}