/* ============================================================================
   Fenixbet - Phoenix / Fire theme
   Palette: ember black + crimson + fire orange + yellow flame + phoenix gold
   Fonts:   Cinzel Decorative (mythical Roman display)
            + Tangerine (flame-like script accents)
            + Manrope (modern body sans)
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --ash-black: #0a0606;
    --ember: #1a0a05;
    --ember-2: #2a1410;
    --char: #3a1a10;
    --soot: #4a2520;

    --crimson-deep: #6e0a0a;
    --crimson: #8b0000;
    --crimson-bright: #b81818;
    --crimson-soft: rgba(184, 24, 24, 0.55);

    --fire-deep: #c2410c;
    --fire: #ff4500;
    --fire-bright: #ff6500;
    --fire-soft: rgba(255, 69, 0, 0.6);

    --orange: #ff8c00;
    --orange-bright: #ffa64d;
    --orange-soft: rgba(255, 140, 0, 0.55);

    --yellow: #ffd700;
    --yellow-bright: #ffeb3b;
    --yellow-pale: #fff5a0;
    --yellow-soft: rgba(255, 215, 0, 0.55);

    --gold: #d4a017;
    --gold-bright: #f0c84a;
    --gold-soft: rgba(212, 160, 23, 0.55);

    --hot-white: #fff8dc;
    --hot-core: #ffffff;

    --paper: #ffeed6;
    --paper-soft: rgba(255, 238, 214, 0.85);
    --text: #ffeed6;
    --text-soft: rgba(255, 238, 214, 0.78);
    --muted: #9c7a6a;

    --display: 'Cinzel Decorative', 'Cinzel', 'Trajan Pro', serif;
    --script: 'Tangerine', 'Pinyon Script', cursive;
    --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    font-family: var(--body);
    font-weight: 400;
    color: var(--text);
    background: var(--ash-black);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================================
   BACKGROUND - layered phoenix sky + flame tongues + rising embers
   ============================================================================ */

/* 1. Smouldering ash gradient: warm at the bottom (where the fire is) -> cool at top */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 100%, var(--fire-deep) 0%, var(--crimson-deep) 8%, var(--char) 22%, var(--ember) 50%, var(--ash-black) 100%);
}

/* 2. Sparks high up + ash particles */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1.5px 1.5px at 8% 14%, rgba(255, 215, 0, 0.7), transparent 60%),
        radial-gradient(1px 1px at 18% 22%, rgba(255, 140, 0, 0.55), transparent 60%),
        radial-gradient(1.5px 1.5px at 28% 8%, rgba(255, 215, 0, 0.7), transparent 60%),
        radial-gradient(2px 2px at 38% 18%, rgba(255, 100, 0, 0.6), transparent 60%),
        radial-gradient(1px 1px at 47% 6%, rgba(255, 235, 59, 0.65), transparent 60%),
        radial-gradient(1px 1px at 58% 26%, rgba(255, 215, 0, 0.55), transparent 60%),
        radial-gradient(1.5px 1.5px at 64% 12%, rgba(255, 100, 0, 0.65), transparent 60%),
        radial-gradient(2px 2px at 76% 28%, rgba(255, 140, 0, 0.6), transparent 60%),
        radial-gradient(1px 1px at 88% 14%, rgba(255, 215, 0, 0.55), transparent 60%);
    animation: sparkShimmer 4s ease-in-out infinite alternate;
}

@keyframes sparkShimmer {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

/* 3. Heat-haze + smoke wisps */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70vw 24vh at 30% 78%, rgba(255, 69, 0, 0.18), transparent 70%),
        radial-gradient(ellipse 60vw 22vh at 70% 70%, rgba(255, 140, 0, 0.14), transparent 70%),
        radial-gradient(ellipse 40vw 18vh at 50% 88%, rgba(255, 215, 0, 0.10), transparent 70%);
    animation: heatHaze 6s ease-in-out infinite alternate;
}

@keyframes heatHaze {
    0%   { transform: translateX(-1%); opacity: 0.85; }
    100% { transform: translateX(1%);  opacity: 1; }
}

/* 4. Flickering flame tongues at the bottom of the screen */
.bg-flame {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 36vh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.flame-tongue {
    position: absolute;
    bottom: -8vh;
    width: 28vw;
    height: 36vh;
    background:
        radial-gradient(ellipse 50% 70% at 50% 100%, var(--yellow-bright) 0%, var(--orange) 22%, var(--fire) 45%, var(--crimson) 70%, transparent 90%);
    filter: blur(14px);
    transform-origin: 50% 100%;
    will-change: transform, opacity;
    mix-blend-mode: screen;
}

.flame-tongue.ft-1 { left:  -6%; animation: flameDance 1.6s ease-in-out infinite alternate; }
.flame-tongue.ft-2 { left:  10%; animation: flameDance 1.3s 0.2s ease-in-out infinite alternate; }
.flame-tongue.ft-3 { left:  26%; animation: flameDance 1.1s 0.4s ease-in-out infinite alternate; }
.flame-tongue.ft-4 { left:  42%; animation: flameDance 1.8s 0.1s ease-in-out infinite alternate; }
.flame-tongue.ft-5 { left:  58%; animation: flameDance 1.4s 0.5s ease-in-out infinite alternate; }
.flame-tongue.ft-6 { left:  74%; animation: flameDance 1.2s 0.3s ease-in-out infinite alternate; }
.flame-tongue.ft-7 { left:  90%; animation: flameDance 1.7s 0.6s ease-in-out infinite alternate; }

@keyframes flameDance {
    0%   { transform: scaleY(0.85) scaleX(0.95) translateX(-2%); opacity: 0.7; filter: blur(12px); }
    25%  { transform: scaleY(1.15) scaleX(1.02) translateX(1%);  opacity: 1;   filter: blur(16px); }
    55%  { transform: scaleY(0.95) scaleX(1.06) translateX(-1%); opacity: 0.85; filter: blur(13px); }
    100% { transform: scaleY(1.20) scaleX(0.98) translateX(2%);  opacity: 1;    filter: blur(15px); }
}

/* 5. Rising embers - the floating sparks */
.bg-embers {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -5vh;
    border-radius: 50%;
    will-change: transform, opacity;
    animation-name: emberRise;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.e-yellow { background: var(--yellow-bright); box-shadow: 0 0 6px var(--yellow), 0 0 12px var(--yellow-soft); }
.e-orange { background: var(--orange-bright); box-shadow: 0 0 6px var(--orange), 0 0 12px var(--fire-soft); }
.e-red    { background: var(--fire-bright);   box-shadow: 0 0 6px var(--fire),   0 0 12px var(--crimson-soft); }

@keyframes emberRise {
    0%   { transform: translate3d(0, 0, 0) scale(1);    opacity: 0; }
    8%   { opacity: 1; }
    50%  { transform: translate3d(calc(var(--sway, 0px) * 0.5), -55vh, 0) scale(0.85); opacity: 1; }
    92%  { opacity: 0.6; }
    100% { transform: translate3d(var(--sway, 0px), -110vh, 0) scale(0.4); opacity: 0; }
}

/* ============================================================================
   SITE HEADER + NAV
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(10, 6, 6, 0.97), rgba(42, 20, 16, 0.92));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--fire);
    box-shadow:
        0 0 18px var(--fire-soft),
        0 1px 0 var(--yellow-bright),
        0 4px 22px rgba(0, 0, 0, 0.7);
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--display);
    color: var(--yellow-bright);
    font-size: 1.85rem;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow:
        0 0 1px #fff,
        0 0 12px var(--fire),
        0 0 24px var(--orange-soft),
        2px 2px 0 var(--ember);
    transition: filter 0.2s, transform 0.2s;
}
.site-logo:hover { filter: brightness(1.18); transform: translateY(-1px); }

/* Phoenix gold disc with flame-shaped star */
.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--orange) 45%, var(--crimson) 95%);
    color: var(--ember);
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow:
        0 0 14px var(--fire-soft),
        0 0 28px var(--orange-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.55);
    border: 2px solid var(--ember);
    animation: logoEmber 1.6s ease-in-out infinite alternate;
}
.logo-mark::before { content: '\2735'; }                     /* ✵ 8-petal black florette - flame burst */
.logo-mark > * { display: none; }

@keyframes logoEmber {
    from { box-shadow: 0 0 14px var(--fire-soft), 0 0 24px var(--orange-soft), inset 0 -2px 4px rgba(0,0,0,0.45), inset 0 2px 2px rgba(255,255,255,0.55); }
    to   { box-shadow: 0 0 22px var(--yellow-bright), 0 0 38px var(--fire), inset 0 -2px 4px rgba(0,0,0,0.45), inset 0 2px 2px rgba(255,255,255,0.7); }
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 18px;
    color: var(--paper);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: color 0.18s, background 0.18s, border-color 0.18s, text-shadow 0.18s;
}
.site-nav a:hover {
    color: var(--yellow-bright);
    border-color: var(--orange);
    text-shadow: 0 0 10px var(--fire-soft);
}
.site-nav a.active {
    color: var(--ember);
    background: linear-gradient(180deg, var(--yellow-bright), var(--orange));
    border-color: var(--ember);
    box-shadow: 0 0 18px var(--fire-soft), 0 0 30px var(--yellow-soft);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 10px 14px; }
    .site-logo { font-size: 1.35rem; letter-spacing: 3px; }
    .logo-mark { width: 34px; height: 34px; font-size: 1.2rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.7rem; letter-spacing: 2.5px; }
}

/* ============================================================================
   PAGE HERO
   ============================================================================ */

.hero {
    text-align: center;
    padding: 70px 20px 30px;
    position: relative;
}

/* Phoenix wings glow behind H1 */
.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 1100px);
    height: 320px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 140, 0, 0.3) 0%, rgba(255, 69, 0, 0.18) 25%, transparent 60%);
    pointer-events: none;
    filter: blur(20px);
    z-index: -1;
    animation: wingsBreathe 3s ease-in-out infinite alternate;
}

@keyframes wingsBreathe {
    from { transform: translate(-50%, -50%) scale(0.95); opacity: 0.65; }
    to   { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.hero-eyebrow {
    color: var(--orange-bright);
    font-family: var(--display);
    font-size: 0.92rem;
    letter-spacing: 6px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 12px var(--fire-soft);
}

.hero-eyebrow::after {
    content: '✷  ✺  ✷';
    display: block;
    margin-top: 8px;
    color: var(--fire);
    font-size: 1.1rem;
    letter-spacing: 18px;
    text-shadow: 0 0 12px var(--fire-soft);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin: 0 0 14px;
    color: var(--yellow-bright);
    letter-spacing: 3px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    /* Multi-layer flame text-shadow */
    text-shadow:
        0 0 4px #fff,
        0 0 12px var(--yellow-bright),
        0 0 24px var(--orange),
        0 0 36px var(--fire),
        0 0 60px var(--crimson),
        0 4px 0 #000;
    animation: heroFlameStrobe 1.8s ease-in-out infinite alternate;
}

@keyframes heroFlameStrobe {
    from {
        text-shadow:
            0 0 3px #fff,
            0 0 10px var(--yellow-bright),
            0 0 20px var(--orange),
            0 0 30px var(--fire),
            0 0 50px var(--crimson),
            0 4px 0 #000;
    }
    to {
        text-shadow:
            0 0 5px #fff,
            0 0 18px var(--yellow-pale),
            0 0 32px var(--yellow),
            0 0 50px var(--orange),
            0 0 80px var(--fire),
            0 4px 0 #000;
    }
}

.subtitle {
    color: var(--yellow-pale);
    font-size: 2rem;
    font-family: var(--script);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 0 12px var(--orange-soft), 0 1px 2px rgba(0, 0, 0, 0.6);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 50px;
    position: relative;
    z-index: 1;
}

.accent {
    color: var(--yellow-bright);
    font-family: var(--script);
    font-style: normal;
    text-shadow: 0 0 14px var(--fire), 0 0 28px var(--fire-soft);
    font-weight: 700;
}

/* ============================================================================
   HERO RECOMMENDED ROW
   ============================================================================ */

.hero-row { margin-bottom: 30px; }

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(42, 20, 16, 0.96), rgba(10, 6, 6, 0.98));
    border: 3px solid var(--fire);
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 0 35px var(--fire-soft),
        0 0 70px var(--orange-soft),
        0 14px 38px rgba(0, 0, 0, 0.85);
    animation: heroFlameGlow 1.8s ease-in-out infinite alternate;
}

@keyframes heroFlameGlow {
    0%   { border-color: var(--fire);   box-shadow: 0 0 0 1px var(--ember) inset, 0 0 28px var(--fire-soft), 0 14px 38px rgba(0,0,0,0.85); }
    50%  { border-color: var(--orange); box-shadow: 0 0 0 1px var(--ember) inset, 0 0 42px var(--orange-soft), 0 0 60px var(--fire-soft), 0 14px 38px rgba(0,0,0,0.85); }
    100% { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--ember) inset, 0 0 50px var(--yellow), 0 0 80px var(--fire-soft), 0 14px 38px rgba(0,0,0,0.85); }
}

.badge-recommended {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--crimson-bright), var(--fire), var(--yellow), var(--fire), var(--crimson-bright));
    background-size: 200% 100%;
    color: var(--ember);
    font-family: var(--display);
    font-weight: 900;
    padding: 7px 26px;
    font-size: 0.82rem;
    letter-spacing: 4px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    border: 2px solid var(--ember);
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.7),
        0 0 18px var(--fire-soft),
        0 0 30px var(--yellow-soft);
    animation: badgeBlaze 3s linear infinite;
}

@keyframes badgeBlaze {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--orange) 50%, var(--crimson) 95%);
    color: var(--ember);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow:
        0 0 14px var(--fire-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.55);
    z-index: 2;
    border: 2px solid var(--ember);
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid var(--orange);
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 0 22px var(--fire-soft),
        0 0 36px var(--orange-soft);
    display: block;
}

.hero-content { min-width: 0; }

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    color: var(--yellow-bright);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    letter-spacing: 3px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow:
        0 0 4px #fff,
        0 0 14px var(--orange),
        0 0 28px var(--fire-soft),
        2px 2px 0 #000;
}

.hero-tagline {
    color: var(--yellow-pale);
    font-family: var(--script);
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 0 10px var(--orange-soft), 0 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-bonus {
    background: rgba(255, 69, 0, 0.1);
    border-left: 4px solid var(--yellow);
    padding: 14px 18px;
    margin-top: 12px;
    border-radius: 0 6px 6px 0;
}

.bonus-label {
    display: block;
    color: var(--orange-bright);
    font-family: var(--display);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bonus-text {
    display: block;
    color: var(--paper);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--body);
}

.hero-bonus .bonus-text { font-size: 1.25rem; }

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

.hero-cta-sub {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 800px) {
    .casino-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .hero-logo img { width: 160px; height: 160px; }
}

/* ============================================================================
   ALTERNATIVES GRID
   ============================================================================ */

.alternatives {
    display: grid;
    gap: 22px;
    margin-bottom: 50px;
}

.alternatives.five-col { grid-template-columns: repeat(5, 1fr); }
.alternatives.three-col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) { .alternatives.five-col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  {
    .alternatives.five-col { grid-template-columns: repeat(2, 1fr); }
    .alternatives.three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px)  {
    .alternatives.five-col,
    .alternatives.three-col { grid-template-columns: 1fr; }
}

.casino-card {
    position: relative;
    padding: 22px 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(42, 20, 16, 0.94), rgba(10, 6, 6, 0.97));
    border: 2px solid var(--orange);
    border-radius: 6px;
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 8px 26px rgba(0, 0, 0, 0.7),
        0 0 18px var(--orange-soft);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.casino-card::before {
    /* Top blazing stripe cycling crimson-fire-yellow */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--crimson) 0%, var(--fire) 30%, var(--yellow-bright) 50%, var(--fire) 70%, var(--crimson) 100%);
    background-size: 200% 100%;
    animation: stripeBlaze 2.5s linear infinite;
}

@keyframes stripeBlaze {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-bright);
    box-shadow: 0 0 0 1px var(--ember) inset, 0 14px 36px var(--fire-soft), 0 0 30px var(--yellow-soft);
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--orange) 50%, var(--crimson) 95%);
    color: var(--ember);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 0 12px var(--fire-soft), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
    z-index: 2;
    border: 2px solid var(--ember);
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 6px;
    border: 2px solid var(--fire);
    box-shadow: 0 0 16px var(--fire-soft);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--yellow-bright);
    letter-spacing: 2px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--fire), 1.5px 1.5px 0 #000;
    position: relative;
    z-index: 1;
}

/* Stars - flame yellow */
.rating { margin-bottom: 12px; font-size: 1.15rem; position: relative; z-index: 1; }
.star.full {
    color: var(--yellow-bright);
    text-shadow: 0 0 8px var(--orange), 0 0 14px var(--fire-soft);
}
.star.half { color: var(--yellow-bright); opacity: 0.55; }
.star.empty { color: rgba(156, 122, 106, 0.3); }

.rating-num {
    color: var(--paper);
    font-size: 0.9rem;
    margin-left: 6px;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.bonus {
    background: rgba(255, 140, 0, 0.07);
    border-left: 3px solid var(--yellow);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0 6px 6px 0;
    font-family: var(--body);
    position: relative;
    z-index: 1;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 13px 22px;
    font-family: var(--display);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--ember);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    background: transparent;
    color: var(--paper);
    position: relative;
    z-index: 1;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.18); }
.btn:active { transform: translateY(0); }

.btn-claim {
    width: 100%;
    padding: 13px 18px;
    color: var(--ember);
    font-weight: 900;
    box-shadow: 0 4px 0 var(--ember);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.05rem;
    color: var(--ember);
    white-space: nowrap;
    box-shadow: 0 5px 0 var(--ember), 0 0 24px var(--fire-soft), 0 0 40px var(--orange-soft);
    font-weight: 900;
    border: 2px solid var(--ember);
    letter-spacing: 4px;
}

.flashing { animation: btnPhoenixFlash 1s ease-in-out infinite; }
@keyframes btnPhoenixFlash {
    0%, 100% {
        box-shadow: 0 4px 0 var(--ember), 0 0 18px var(--fire-soft), 0 0 28px var(--orange-soft);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 4px 0 var(--ember), 0 0 38px var(--yellow-bright), 0 0 60px var(--fire), 0 0 80px var(--crimson-soft);
        filter: brightness(1.32);
    }
}

/* ============================================================================
   SECTION TITLES
   ============================================================================ */

.section-title {
    text-align: center;
    color: var(--yellow-bright);
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    margin: 16px 0 6px;
    letter-spacing: 3px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow:
        0 0 4px #fff,
        0 0 14px var(--orange),
        0 0 28px var(--fire),
        0 0 50px var(--crimson-soft),
        2px 2px 0 #000;
}

.section-title::after {
    content: '✷  ✺  ✷';
    display: block;
    margin-top: 12px;
    color: var(--fire);
    font-size: 1.05rem;
    letter-spacing: 16px;
    text-shadow: 0 0 12px var(--fire-soft);
}

.section-sub {
    text-align: center;
    color: var(--yellow-pale);
    margin: 14px 0 26px;
    font-size: 1.7rem;
    font-family: var(--script);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--orange-soft);
}

/* ============================================================================
   GAMES SECTION + BOOK OF RA SLOT
   ============================================================================ */

.games-section {
    background:
        linear-gradient(135deg, rgba(42, 20, 16, 0.78), rgba(10, 6, 6, 0.92));
    border: 2px solid var(--fire);
    border-radius: 8px;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 0 30px var(--fire-soft),
        0 0 60px var(--orange-soft);
    position: relative;
    overflow: hidden;
}

.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 24px 30px;
    background: linear-gradient(180deg, var(--crimson-deep) 0%, var(--ember) 100%);
    border: 4px solid var(--yellow);
    border-radius: 6px;
    box-shadow:
        0 0 0 2px var(--ember) inset,
        inset 0 0 30px rgba(0, 0, 0, 0.85),
        0 0 35px var(--fire-soft),
        0 0 60px var(--yellow-soft);
    margin-bottom: 14px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--ash-black);
    padding: 8px;
    border-radius: 4px;
    border: 2px solid var(--fire);
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.95);
}

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, #2a1408 0%, #100604 50%, #2a1408 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--fire);
    box-shadow: inset 0 0 14px rgba(255, 69, 0, 0.18);
}

.reel.spinning .cell {
    animation: reelBlur 0.06s linear infinite;
}

@keyframes reelBlur {
    from { transform: translateY(-4px); filter: blur(0.6px); }
    to   { transform: translateY(4px);  filter: blur(0.6px); }
}

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 900;
    color: var(--yellow-bright);
    background: linear-gradient(180deg, rgba(42, 20, 8, 0.7) 0%, rgba(10, 6, 6, 0.9) 100%);
    border-bottom: 1px solid var(--fire-soft);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
    text-shadow: 0 0 8px var(--orange-soft), 1px 1px 0 #000;
}

.cell:last-child { border-bottom: none; }

.cell.payline {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 69, 0, 0.18) 100%);
    box-shadow: inset 0 0 0 1px var(--yellow-bright);
}

.cell.win {
    background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--fire) 100%);
    color: var(--ember);
    transform: scale(1.05);
    box-shadow:
        0 0 22px var(--yellow),
        0 0 40px var(--fire-soft),
        inset 0 0 12px rgba(255, 255, 255, 0.55);
    animation: winPulse 0.6s ease-in-out infinite alternate;
    text-shadow: 0 1px 0 #fff;
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--yellow), inset 0 0 8px rgba(255,255,255,0.5); }
    to   { box-shadow: 0 0 36px var(--yellow-bright), 0 0 50px var(--fire), inset 0 0 14px rgba(255,255,255,0.95); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow-bright);
    font-size: 1.6rem;
    text-shadow: 0 0 12px var(--fire), 0 0 22px var(--orange-soft);
    animation: paylinePulse 1.2s ease-in-out infinite;
}
.payline-left { left: 6px; }
.payline-right { right: 6px; }

@keyframes paylinePulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.bookofra-result {
    font-family: var(--script);
    font-size: 2rem;
    color: var(--yellow-bright);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px var(--fire-soft), 0 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1.05;
}

.bookofra-action-row {
    margin: 18px 0 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.btn-bet {
    background: linear-gradient(180deg, var(--yellow-bright), var(--orange) 50%, var(--crimson-bright));
    color: var(--ember);
    padding: 16px 50px;
    font-size: 1.1rem;
    border: 3px solid var(--ember);
    border-radius: 4px;
    box-shadow:
        0 5px 0 var(--ember),
        0 0 24px var(--fire-soft),
        0 0 40px var(--yellow-soft);
    min-width: 220px;
    letter-spacing: 5px;
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-bet:hover { filter: brightness(1.18); transform: translateY(-1px); }
.btn-bet:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--ember), 0 0 14px var(--fire-soft);
}
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.balance {
    color: var(--paper);
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.balance span {
    color: var(--yellow-bright);
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 0 0 12px var(--fire-soft), 1px 1px 0 #000;
    margin-left: 6px;
}

/* Bet section */
.bet-section { margin: 14px auto; max-width: 540px; position: relative; z-index: 1; }
.bet-section-label {
    color: var(--orange-bright);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--fire-soft);
}

.bet-amounts {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.slot-amount-btn {
    background: rgba(255, 69, 0, 0.1);
    color: var(--paper);
    border: 2px solid var(--fire);
    padding: 9px 18px;
    font-family: var(--display);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.18s;
    text-transform: uppercase;
}
.slot-amount-btn:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: var(--yellow-bright);
    color: var(--yellow-bright);
}
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--yellow-bright), var(--orange));
    color: var(--ember);
    border-color: var(--ember);
    box-shadow: 0 3px 0 var(--ember), 0 0 16px var(--fire-soft);
}

/* Paytable */
.paytable {
    margin-top: 22px;
    padding: 18px;
    background: rgba(10, 6, 6, 0.65);
    border: 2px solid var(--fire);
    border-radius: 6px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.paytable-title {
    color: var(--yellow-bright);
    font-family: var(--display);
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 4px;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--fire-soft);
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 0.95rem;
    color: var(--paper);
    font-family: var(--body);
    font-weight: 700;
}

.paytable-grid span {
    background: rgba(255, 215, 0, 0.07);
    padding: 6px 10px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--orange-soft);
}

.paytable-grid b { color: var(--yellow-bright); font-size: 1.1rem; margin-right: 4px; text-shadow: 0 0 6px var(--fire-soft); }

.paytable-note {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-top: 10px;
    font-family: var(--script);
}

@media (max-width: 600px) {
    .reel { width: 60px; height: 180px; }
    .cell { font-size: 1.6rem; }
    .bookofra-machine { padding: 16px 22px; }
    .paytable-grid { grid-template-columns: repeat(2, 1fr); font-size: 0.85rem; }
}

/* ============================================================================
   WIN CTA - keep recognizable green for "you won"
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 3px dashed #76ff03;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(0, 60, 20, 0.6), rgba(10, 6, 6, 0.95));
    box-shadow: 0 0 30px rgba(118, 255, 3, 0.4);
    position: relative;
    z-index: 1;
}

.win-cta.hidden { display: none; }

.cta-pop { animation: ctaPop 0.5s cubic-bezier(0.25, 1.4, 0.5, 1); }
@keyframes ctaPop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.win-cta-text {
    color: #76ff03;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 4px #fff, 0 0 14px #76ff03, 0 0 28px rgba(118, 255, 3, 0.7);
}

.win-cta-sub {
    margin-top: 12px;
    color: rgba(200, 245, 184, 0.95);
    font-family: var(--body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, #2e8b57, #76ff03, #c8ff7a, #76ff03, #2e8b57);
    background-size: 300% 100%;
    color: var(--ember);
    padding: 20px 42px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 5px;
    border: 3px solid var(--ember);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--ember);
}

.flashing-green {
    animation: greenFlash 0.85s ease-in-out infinite, greenSlide 3.5s linear infinite;
}

@keyframes greenFlash {
    0%, 100% {
        box-shadow: 0 5px 0 var(--ember), 0 0 22px rgba(118, 255, 3, 0.7), 0 0 45px rgba(46, 139, 87, 0.4);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 5px 0 var(--ember), 0 0 50px #76ff03, 0 0 90px rgba(127, 223, 96, 0.85);
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

@media (max-width: 600px) {
    .btn-win-real { padding: 16px 26px; font-size: 1rem; letter-spacing: 3px; }
}

/* ============================================================================
   GAME RECOMMENDATION
   ============================================================================ */

.game-recommendation { margin-bottom: 40px; }

.rec-card {
    background:
        linear-gradient(135deg, rgba(42, 20, 16, 0.97), rgba(10, 6, 6, 0.98));
    border: 3px solid var(--yellow);
    border-radius: 6px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 0 30px var(--fire-soft),
        0 0 50px var(--yellow-soft);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 3px solid var(--orange);
    box-shadow: 0 0 22px var(--fire-soft);
}

.rec-info { flex: 1 1 220px; min-width: 200px; }

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--yellow-bright);
    font-size: 2.05rem;
    letter-spacing: 3px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 14px var(--orange), 0 0 26px var(--fire-soft), 2px 2px 0 #000;
}

.rec-bonus {
    color: var(--paper);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--body);
}

.btn-play {
    background: linear-gradient(180deg, var(--yellow-bright), var(--fire));
    color: var(--ember);
    font-size: 1.1rem;
    padding: 16px 32px;
    border: 3px solid var(--ember);
    box-shadow: 0 5px 0 var(--ember), 0 0 22px var(--fire-soft);
    font-weight: 900;
    letter-spacing: 4px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
    background: linear-gradient(180deg, rgba(26, 14, 10, 0.92), rgba(0, 0, 0, 0.99));
    border-top: 2px solid var(--fire);
    padding: 32px 20px 50px;             /* extra bottom space so flame doesn't crowd */
    margin-top: 30px;
    box-shadow: inset 0 4px 0 var(--orange);
    position: relative;
    z-index: 1;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--yellow-bright);
    font-size: 1.85rem;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 0 4px #fff, 0 0 12px var(--orange), 0 0 24px var(--fire-soft);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--paper);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.15s, text-shadow 0.15s;
}
.footer-nav a:hover { color: var(--yellow-bright); text-shadow: 0 0 8px var(--fire-soft); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    font-family: var(--body);
}

/* ============================================================================
   ARTICLE BODY
   ============================================================================ */

.article-body {
    background:
        linear-gradient(135deg, rgba(42, 20, 16, 0.55), rgba(10, 6, 6, 0.78));
    border: 2px solid var(--orange);
    border-radius: 6px;
    padding: 40px 44px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--paper);
    font-family: var(--body);
    font-size: 1.06rem;
    line-height: 1.78;
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 6px 28px rgba(0, 0, 0, 0.65),
        0 0 24px var(--fire-soft);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--yellow-bright);
    margin: 32px 0 14px;
    letter-spacing: 3px;
    font-size: 1.85rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 4px #fff, 0 0 12px var(--orange), 0 0 22px var(--fire-soft);
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--orange-bright); text-shadow: 0 0 6px var(--fire-soft); font-weight: 800; }
.article-body em { color: var(--yellow-pale); font-style: normal; font-family: var(--script); font-weight: 700; font-size: 1.18em; }
.article-body a {
    color: var(--orange-bright);
    text-decoration: underline;
    text-decoration-color: var(--fire-soft);
}

.article-body .lead {
    font-size: 1.7rem;
    color: var(--yellow-pale);
    font-family: var(--script);
    font-weight: 400;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 4px solid var(--fire);
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px var(--fire-soft);
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.14), rgba(184, 24, 24, 0.08));
    border-left: 4px solid var(--yellow-bright);
    border-radius: 0 6px 6px 0;
    font-size: 1.06rem;
    font-family: var(--body);
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 28px;
}
.step-list li, .check-list li { margin-bottom: 10px; font-family: var(--body); }
.step-list li::marker {
    color: var(--orange-bright);
    font-family: var(--display);
    font-weight: 900;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '✷';
    display: inline-block;
    color: var(--yellow-bright);
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: 0 0 6px var(--fire-soft);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(10, 6, 6, 0.7);
    border: 2px solid var(--orange);
    border-radius: 6px;
    padding: 24px 28px;
    margin-bottom: 30px;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid var(--fire-soft);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 4rem;
    color: var(--yellow-bright);
    line-height: 1;
    text-shadow: 0 0 4px #fff, 0 0 18px var(--orange), 0 0 30px var(--fire-soft);
    font-weight: 900;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-top: 6px;
    font-weight: 700;
    text-transform: uppercase;
}
.rating-stars { display: block; margin-top: 8px; font-size: 1.2rem; }

.article-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 22px;
}
.article-facts > div { display: flex; flex-direction: column; gap: 2px; }
.article-facts dt {
    color: var(--orange-bright);
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 0 6px var(--fire-soft);
}
.article-facts dd {
    margin: 0;
    color: var(--paper);
    font-weight: 800;
    font-family: var(--body);
}

@media (max-width: 640px) {
    .article-body { padding: 28px 24px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating {
        border-right: none;
        border-bottom: 1px solid var(--fire-soft);
        padding: 0 0 16px;
    }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 69, 0, 0.1));
    border: 3px solid var(--yellow);
    border-radius: 8px;
    text-align: center;
    box-shadow:
        0 0 0 1px var(--ember) inset,
        0 0 30px var(--fire-soft);
    animation: bonusGlow 2.4s ease-in-out infinite alternate;
}
@keyframes bonusGlow {
    from { box-shadow: 0 0 0 1px var(--ember) inset, 0 0 18px var(--fire-soft); }
    to   { box-shadow: 0 0 0 1px var(--ember) inset, 0 0 50px var(--yellow-bright), 0 0 80px var(--fire); }
}
.bonus-headline {
    font-family: var(--display);
    color: var(--yellow-bright);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 4px #fff, 0 0 14px var(--orange), 0 0 28px var(--fire-soft);
}
.bonus-sub {
    margin-top: 8px;
    color: var(--yellow-pale);
    font-size: 2rem;
    font-family: var(--script);
    line-height: 1.05;
    text-shadow: 0 0 10px var(--fire-soft);
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--crimson-bright);
    color: var(--paper);
    border: 2px solid var(--ember);
    border-radius: 4px;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 900;
}

/* ============================================================================
   TOP ALTERNATIVES (sub-pages)
   ============================================================================ */

.top-alternatives { margin: 30px auto 50px; }

/* ============================================================================
   INLINE PLAY-NOW CTA
   ============================================================================ */

.play-now-cta {
    margin: 28px auto;
    max-width: 880px;
    padding: 26px 28px;
    text-align: center;
    border: 3px dashed var(--yellow-bright);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(255, 69, 0, 0.16), rgba(255, 215, 0, 0.08)),
        rgba(10, 6, 6, 0.62);
    box-shadow: 0 0 24px var(--fire-soft);
    animation: ctaBannerGlow 2.2s ease-in-out infinite alternate;
}
@keyframes ctaBannerGlow {
    from { box-shadow: 0 0 18px var(--fire-soft); }
    to   { box-shadow: 0 0 44px var(--yellow-bright), 0 0 60px var(--fire); }
}

.play-now-text {
    color: var(--yellow-pale);
    font-family: var(--script);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.05;
    text-shadow: 0 0 12px var(--fire-soft), 0 1px 2px #000;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--crimson-bright), var(--fire), var(--yellow-bright), var(--fire), var(--crimson-bright));
    background-size: 300% 100%;
    color: var(--ember);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 5px;
    border: 3px solid var(--ember);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--ember);
}

.flashing-orange {
    animation: orangeFlash 0.85s ease-in-out infinite, orangeSlide 3s linear infinite;
}

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 5px 0 var(--ember), 0 0 22px var(--fire-soft), 0 0 40px var(--orange-soft);
        transform: scale(1);
        filter: brightness(1.08);
    }
    50% {
        box-shadow: 0 5px 0 var(--ember), 0 0 48px var(--yellow-bright), 0 0 70px var(--fire), 0 0 90px var(--crimson);
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}
@keyframes orangeSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

@media (max-width: 600px) {
    .btn-inline-play { padding: 14px 22px; font-size: 1rem; letter-spacing: 4px; }
    .play-now-text { font-size: 1.7rem; }
}

/* ============================================================================
   LOADING / ERROR + UTILITY
   ============================================================================ */

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--yellow-pale);
    padding: 40px 20px;
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    font-family: var(--script);
    font-weight: 400;
    text-shadow: 0 0 10px var(--fire-soft);
}

.load-error {
    text-align: center;
    color: var(--crimson-bright);
    padding: 20px;
    font-weight: 900;
    font-family: var(--display);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--crimson-soft);
}

.footer { display: none; }

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.18s, filter 0.18s;
    cursor: pointer;
}
.brand-link:hover {
    transform: scale(1.04);
    filter: brightness(1.25) drop-shadow(0 0 14px var(--fire));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--yellow-bright);
    text-shadow: 0 0 14px var(--orange), 0 0 28px var(--fire);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
