/* ============================================================================
   Gangabet - Italian Mafia / Cinematic Old-World theme
   Palette: oxblood + antique gold + bottle green + aged ivory + smoke black
   Fonts:   Cormorant SC (display) + Tangerine (script taglines)
            + EB Garamond (body) + Cormorant Garamond (italic accent)
   ============================================================================ */

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

:root {
    --ink: #0a0606;
    --ink-2: #150a09;
    --mahogany: #2a1410;
    --oxblood: #5a1a1a;
    --oxblood-deep: #3a0e0e;
    --burgundy: #7a1a1a;
    --burgundy-soft: rgba(122, 26, 26, 0.55);

    --gold: #b08824;
    --gold-bright: #d4a64a;
    --gold-pale: #e8c87a;
    --gold-soft: rgba(208, 166, 74, 0.55);

    --bottle: #2c4628;       /* bottle green - third Italian flag color */
    --bottle-deep: #1a2c18;
    --bottle-soft: rgba(44, 70, 40, 0.55);

    --cream: #f0e4cc;        /* aged ivory paper */
    --cream-soft: rgba(240, 228, 204, 0.85);
    --sepia: #d0b890;
    --smoke-grey: rgba(220, 210, 195, 0.10);

    --text: #f0e4cc;
    --text-soft: rgba(240, 228, 204, 0.78);
    --muted: #8a7a6a;

    --display: 'Cormorant SC', 'Cinzel', 'Trajan Pro', serif;
    --serif: 'Cormorant Garamond', 'EB Garamond', 'Cormorant SC', Georgia, serif;
    --script: 'Tangerine', 'Pinyon Script', cursive;
    --body: 'EB Garamond', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

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

/* ============================================================================
   BACKGROUND - dark mahogany interior + cigar smoke + vignette
   ============================================================================ */

/* 1. Theatrical curtain gradient: oxblood at top, ink at bottom */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 0%, var(--oxblood-deep) 0%, var(--mahogany) 30%, var(--ink-2) 65%, var(--ink) 100%);
}

/* 2. Faint candlelit specks + paper grain */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 8%, rgba(208, 184, 144, 0.35), transparent 60%),
        radial-gradient(1px 1px at 28% 16%, rgba(208, 166, 74, 0.4),  transparent 60%),
        radial-gradient(1.5px 1.5px at 47% 11%, rgba(232, 200, 122, 0.5), transparent 60%),
        radial-gradient(1px 1px at 62% 22%, rgba(208, 184, 144, 0.3), transparent 60%),
        radial-gradient(1px 1px at 78% 14%, rgba(208, 166, 74, 0.4), transparent 60%),
        radial-gradient(1.5px 1.5px at 90% 24%, rgba(122, 26, 26, 0.35), transparent 60%),
        radial-gradient(1px 1px at 8% 65%, rgba(208, 166, 74, 0.3), transparent 60%),
        radial-gradient(1px 1px at 35% 55%, rgba(208, 184, 144, 0.3), transparent 60%),
        radial-gradient(1.5px 1.5px at 70% 70%, rgba(208, 166, 74, 0.35), transparent 60%),
        radial-gradient(1px 1px at 92% 60%, rgba(208, 184, 144, 0.3), transparent 60%);
    background-repeat: no-repeat;
    /* Subtle horizontal sepia bands evoke aged film grain */
    background-image:
        repeating-linear-gradient(0deg, rgba(208, 166, 74, 0.018) 0 1px, transparent 1px 3px),
        radial-gradient(1px 1px at 12% 8%, rgba(208, 184, 144, 0.35), transparent 60%),
        radial-gradient(1px 1px at 28% 16%, rgba(208, 166, 74, 0.4),  transparent 60%),
        radial-gradient(1.5px 1.5px at 47% 11%, rgba(232, 200, 122, 0.5), transparent 60%),
        radial-gradient(1px 1px at 62% 22%, rgba(208, 184, 144, 0.3), transparent 60%),
        radial-gradient(1px 1px at 78% 14%, rgba(208, 166, 74, 0.4), transparent 60%),
        radial-gradient(1px 1px at 8% 65%, rgba(208, 166, 74, 0.3), transparent 60%),
        radial-gradient(1.5px 1.5px at 70% 70%, rgba(208, 166, 74, 0.35), transparent 60%);
    opacity: 0.85;
}

/* 3. Ornate damask wallpaper hint - faint */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        repeating-linear-gradient(45deg,  rgba(208, 166, 74, 0.025) 0 14px, transparent 14px 28px),
        repeating-linear-gradient(-45deg, rgba(122, 26, 26, 0.035)  0 14px, transparent 14px 28px),
        radial-gradient(ellipse 50vw 25vh at 50% 0%, rgba(122, 26, 26, 0.18), transparent 70%);
    opacity: 0.7;
}

/* 4. Drifting cigar-smoke wisps */
.bg-smoke {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.smoke {
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(220, 210, 195, 0.18) 0%, rgba(220, 210, 195, 0.08) 35%, transparent 70%);
    filter: blur(28px);
    will-change: transform;
    animation-name: smokeDrift;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: translate3d(var(--start, -20vw), 0, 0);
}

@keyframes smokeDrift {
    0%   { transform: translate3d(-30vw, 0, 0)  scale(0.85); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translate3d(130vw, -8vh, 0) scale(1.25); opacity: 0; }
}

/* 5. Vignette - darken edges for cinematic feel */
.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.55) 95%);
}

/* ============================================================================
   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.88));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold);
    box-shadow:
        0 1px 0 var(--burgundy),
        0 2px 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(--gold-bright);
    font-size: 1.8rem;
    letter-spacing: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow:
        0 0 1px #000,
        0 2px 0 #000,
        0 0 14px var(--gold-soft);
    transition: filter 0.2s, transform 0.2s;
}
.site-logo:hover { filter: brightness(1.18); transform: translateY(-1px); }

.logo-mark {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold) 55%, #5a3f06);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow:
        0 0 14px var(--gold-soft),
        0 0 24px rgba(208, 166, 74, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.45);
    border: 2px solid var(--ink);
}
.logo-mark::before { content: '\269C'; }   /* ⚜ Fleur-de-lis - Italian heraldic emblem */
.logo-mark > * { display: none; }

.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(--cream);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 0;
    transition: color 0.18s, background 0.18s, border-color 0.18s, text-shadow 0.18s;
}
.site-nav a:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    text-shadow: 0 0 8px var(--gold-soft);
}
.site-nav a.active {
    color: var(--cream);
    background: linear-gradient(180deg, var(--burgundy), var(--oxblood-deep));
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--ink) inset, 0 4px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 10px 14px; }
    .site-logo { font-size: 1.35rem; letter-spacing: 4px; }
    .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;
}

.hero-eyebrow {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0 10px var(--gold-soft);
}

/* Decorative ornament line under the eyebrow */
.hero-eyebrow::after {
    content: '✦  ❦  ✦';
    display: block;
    margin-top: 6px;
    color: var(--burgundy);
    font-size: 1rem;
    letter-spacing: 18px;
    text-shadow: 0 0 8px rgba(122, 26, 26, 0.5);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    margin: 0 0 14px;
    color: var(--gold-bright);
    letter-spacing: 4px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow:
        0 0 1px #000,
        2px 2px 0 var(--oxblood-deep),
        4px 4px 0 #000,
        0 0 28px rgba(208, 166, 74, 0.4);
}

.subtitle {
    color: var(--gold-pale);
    font-size: 1.6rem;
    font-family: var(--script);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 0 12px rgba(208, 166, 74, 0.35), 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(--gold-bright);
    font-style: italic;
    text-shadow: 0 0 14px var(--gold-soft);
    font-family: var(--serif);
    font-weight: 500;
}

/* ============================================================================
   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: 2px solid var(--gold);
    /* Double-bordered "framed-painting" feel */
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 0 35px rgba(208, 166, 74, 0.3),
        0 0 60px rgba(122, 26, 26, 0.25),
        0 14px 38px rgba(0, 0, 0, 0.85);
}

.casino-hero::before {
    /* Italian tricolor stripe pinned to the left edge */
    content: '';
    position: absolute;
    left: -6px;
    top: 18%;
    bottom: 18%;
    width: 5px;
    background: linear-gradient(180deg, var(--bottle) 0 33%, var(--cream) 33% 66%, var(--burgundy) 66%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.badge-recommended {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--burgundy), var(--oxblood-deep));
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 700;
    padding: 8px 28px;
    font-size: 0.82rem;
    letter-spacing: 5px;
    border-radius: 0;
    white-space: nowrap;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 0 18px var(--gold-soft);
}

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--ink);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow:
        0 0 12px var(--gold-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5),
        inset 0 2px 2px rgba(255, 255, 255, 0.45);
    z-index: 2;
    border: 2px solid var(--ink);
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--gold);
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 0 22px rgba(208, 166, 74, 0.4);
    display: block;
    /* Slight sepia tint on logos for the vintage portrait feel */
    filter: sepia(0.18) saturate(0.92);
}

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

.hero-name {
    margin: 4px 0 4px;
    font-family: var(--display);
    color: var(--cream);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 3px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0 var(--oxblood-deep),
        3px 3px 0 #000;
}

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

.hero-bonus {
    background: rgba(122, 26, 26, 0.15);
    border-left: 3px solid var(--gold);
    padding: 14px 18px;
    margin-top: 12px;
    border-radius: 0 4px 4px 0;
}

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

.bonus-text {
    display: block;
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--serif);
}

.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.74rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--display);
}

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

/* ============================================================================
   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: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 8px 26px rgba(0, 0, 0, 0.7);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.casino-card::before {
    /* Oxblood + gold ribbon at the top, like a wax seal banner */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bottle) 0%, var(--gold-bright) 50%, var(--burgundy) 100%);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 1px var(--ink) inset, 0 14px 36px rgba(208, 166, 74, 0.45);
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--ink);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 12px var(--gold-soft), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
    z-index: 2;
    border: 2px solid var(--ink);
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 4px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 14px rgba(208, 166, 74, 0.25);
    filter: sepia(0.18) saturate(0.92);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--cream);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 var(--oxblood-deep), 2px 2px 0 #000;
    position: relative;
    z-index: 1;
}

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

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

.bonus {
    background: rgba(122, 26, 26, 0.1);
    border-left: 3px solid var(--gold);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0 4px 4px 0;
    font-family: var(--serif);
    position: relative;
    z-index: 1;
}

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

.btn {
    display: inline-block;
    padding: 13px 22px;
    font-family: var(--display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    background: transparent;
    color: var(--cream);
    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(--cream);
    font-weight: 700;
    border: 1px solid var(--ink);
    box-shadow: 0 0 0 1px var(--gold-soft) inset, 0 3px 8px rgba(0, 0, 0, 0.6);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1rem;
    color: var(--cream);
    white-space: nowrap;
    box-shadow:
        0 0 0 1px var(--gold) inset,
        0 4px 14px rgba(0, 0, 0, 0.7),
        0 0 24px var(--gold-soft);
    font-weight: 700;
    border: 1px solid var(--ink);
    letter-spacing: 4px;
}

.flashing { animation: btnMafiaFlash 1.4s ease-in-out infinite; }
@keyframes btnMafiaFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 14px rgba(0,0,0,0.7), 0 0 14px var(--gold-soft);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 18px rgba(0,0,0,0.7), 0 0 32px var(--gold-bright), 0 0 50px var(--burgundy-soft);
        filter: brightness(1.25);
    }
}

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

.section-title {
    text-align: center;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin: 16px 0 6px;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0 var(--oxblood-deep),
        4px 4px 0 #000,
        0 0 22px rgba(208, 166, 74, 0.4);
}

.section-title::after {
    content: '✦  ❦  ✦';
    display: block;
    margin-top: 8px;
    color: var(--burgundy);
    font-size: 0.95rem;
    letter-spacing: 16px;
    text-shadow: 0 0 8px rgba(122, 26, 26, 0.5);
}

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

/* ============================================================================
   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: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    border-radius: 6px;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 0 30px rgba(208, 166, 74, 0.25),
        0 0 60px rgba(122, 26, 26, 0.18);
    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(--mahogany) 0%, var(--ink) 100%);
    border: 3px solid var(--gold);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        inset 0 0 30px rgba(0, 0, 0, 0.85),
        0 0 35px var(--gold-soft),
        0 0 60px var(--burgundy-soft);
    margin-bottom: 14px;
}

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

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, #2a1814 0%, #100808 50%, #2a1814 100%);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: inset 0 0 14px rgba(208, 166, 74, 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: 700;
    color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(20, 10, 9, 0.7) 0%, rgba(10, 6, 6, 0.9) 100%);
    border-bottom: 1px solid var(--gold-soft);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
    text-shadow: 0 0 8px var(--gold-soft), 1px 1px 0 #000;
}

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

.cell.payline {
    background: linear-gradient(180deg, rgba(208, 166, 74, 0.18) 0%, rgba(122, 26, 26, 0.18) 100%);
    box-shadow: inset 0 0 0 1px var(--gold-bright);
}

.cell.win {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--burgundy) 100%);
    color: var(--cream);
    transform: scale(1.05);
    box-shadow:
        0 0 22px var(--gold),
        0 0 40px var(--burgundy-soft),
        inset 0 0 12px rgba(255, 255, 255, 0.5);
    animation: winPulse 0.7s ease-in-out infinite alternate;
    text-shadow: 0 1px 0 #000, 0 0 8px var(--gold-bright);
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--gold), inset 0 0 8px rgba(255,255,255,0.5); }
    to   { box-shadow: 0 0 36px var(--gold-bright), 0 0 50px var(--burgundy-soft), inset 0 0 14px rgba(255,255,255,0.85); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-size: 1.6rem;
    text-shadow: 0 0 10px var(--gold), 0 0 22px var(--burgundy-soft);
    animation: paylinePulse 1.4s 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: 1.8rem;
    color: var(--gold-bright);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px var(--gold-soft), 0 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
}

.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(--burgundy), var(--oxblood-deep) 50%, #200505);
    color: var(--gold-bright);
    padding: 16px 50px;
    font-size: 1rem;
    border: 2px solid var(--ink);
    border-radius: 2px;
    box-shadow:
        0 0 0 1px var(--gold) inset,
        0 4px 0 var(--ink),
        0 0 24px var(--gold-soft),
        0 0 40px rgba(122, 26, 26, 0.4);
    min-width: 220px;
    letter-spacing: 5px;
    font-family: var(--display);
    font-weight: 700;
    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 0 0 1px var(--gold) inset, 0 2px 0 var(--ink), 0 0 14px var(--gold-soft);
}
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

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

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

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

.slot-amount-btn {
    background: rgba(122, 26, 26, 0.12);
    color: var(--cream);
    border: 1px solid var(--gold);
    padding: 9px 18px;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.18s;
    text-transform: uppercase;
}
.slot-amount-btn:hover {
    background: rgba(208, 166, 74, 0.18);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 3px 0 var(--ink), 0 0 16px var(--gold-soft);
}

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

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

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

.paytable-grid span {
    background: rgba(208, 166, 74, 0.06);
    padding: 6px 10px;
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(208, 166, 74, 0.2);
}

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

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

@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.92rem; }
}

/* ============================================================================
   WIN CTA
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 1px dashed var(--bottle);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(20, 35, 18, 0.6), rgba(10, 6, 6, 0.95));
    box-shadow: 0 0 30px rgba(44, 70, 40, 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: var(--gold-bright);
    font-family: var(--script);
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px var(--gold-soft), 0 1px 2px #000;
    line-height: 1.1;
}

.win-cta-sub {
    margin-top: 12px;
    color: var(--cream-soft);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, var(--bottle-deep), var(--bottle), #4a7a44, var(--bottle), var(--bottle-deep));
    background-size: 300% 100%;
    color: var(--cream);
    padding: 20px 42px;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 5px;
    border: 1px solid var(--ink);
    box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--ink);
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

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

@keyframes greenFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--ink), 0 0 22px rgba(44, 70, 40, 0.6), 0 0 36px rgba(208, 166, 74, 0.3);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 0 var(--ink), 0 0 50px var(--bottle), 0 0 80px var(--gold-soft);
        transform: scale(1.04);
        filter: brightness(1.2);
    }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

@media (max-width: 600px) {
    .btn-win-real { padding: 16px 26px; font-size: 0.9rem; 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: 2px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    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(--ink) inset,
        0 0 30px var(--gold-soft),
        0 0 50px var(--burgundy-soft);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 22px var(--gold-soft);
    filter: sepia(0.18) saturate(0.92);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--cream);
    font-size: 1.9rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--oxblood-deep), 3px 3px 0 #000;
}

.rec-bonus {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--serif);
    font-style: italic;
}

.btn-play {
    background: linear-gradient(180deg, var(--burgundy), var(--oxblood-deep));
    color: var(--gold-bright);
    font-size: 1.05rem;
    padding: 16px 32px;
    border: 1px solid var(--ink);
    box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--ink), 0 0 22px var(--burgundy-soft);
    font-weight: 700;
    letter-spacing: 4px;
}

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

.site-footer {
    background: linear-gradient(180deg, rgba(20, 10, 9, 0.85), rgba(0, 0, 0, 0.98));
    border-top: 1px solid var(--gold);
    padding: 32px 20px;
    margin-top: 30px;
    box-shadow: inset 0 1px 0 var(--burgundy);
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 1.7rem;
    letter-spacing: 6px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 2px 2px 0 var(--oxblood-deep), 4px 4px 0 #000, 0 0 18px var(--gold-soft);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    font-family: var(--display);
}

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

.article-body {
    background:
        linear-gradient(135deg, rgba(42, 20, 16, 0.55), rgba(10, 6, 6, 0.78));
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 6px;
    padding: 40px 44px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--cream);
    font-family: var(--body);
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 6px 28px rgba(0, 0, 0, 0.65);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--gold-bright);
    margin: 32px 0 14px;
    letter-spacing: 4px;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 var(--oxblood-deep), 3px 3px 0 #000;
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--gold-bright); text-shadow: 0 0 6px var(--gold-soft); font-weight: 600; }
.article-body em { color: var(--cream); font-style: italic; font-family: var(--serif); font-weight: 500; }
.article-body a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: var(--gold-soft);
}

.article-body .lead {
    font-size: 1.7rem;
    color: var(--gold-pale);
    font-family: var(--script);
    font-weight: 400;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--burgundy);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(208, 166, 74, 0.12), rgba(122, 26, 26, 0.08));
    border-left: 4px solid var(--gold-bright);
    border-radius: 0 4px 4px 0;
    font-size: 1.1rem;
    font-family: var(--serif);
    font-style: italic;
}

.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(--gold-bright);
    font-family: var(--display);
    font-weight: 700;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '⚜';
    display: inline-block;
    color: var(--gold-bright);
    margin-right: 12px;
    font-size: 0.95rem;
    text-shadow: 0 0 6px var(--gold-soft);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(10, 6, 6, 0.65);
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 30px;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid var(--gold-soft);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 4rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 2px 2px 0 var(--oxblood-deep), 4px 4px 0 #000;
    font-weight: 700;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-top: 6px;
    font-weight: 600;
    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(--gold);
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}
.article-facts dd {
    margin: 0;
    color: var(--cream);
    font-weight: 600;
    font-family: var(--serif);
    font-size: 1.05rem;
}

@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(--gold-soft);
        padding: 0 0 16px;
    }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(122, 26, 26, 0.22), rgba(208, 166, 74, 0.08));
    border: 2px solid var(--gold-bright);
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    border-radius: 6px;
    text-align: center;
    box-shadow:
        0 0 0 1px var(--ink) inset,
        0 0 30px var(--gold-soft);
    animation: bonusGlow 3s ease-in-out infinite alternate;
}
@keyframes bonusGlow {
    from { box-shadow: 0 0 0 1px var(--ink) inset, 0 0 18px var(--gold-soft); }
    to   { box-shadow: 0 0 0 1px var(--ink) inset, 0 0 50px var(--gold-bright), 0 0 80px var(--burgundy-soft); }
}
.bonus-headline {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--oxblood-deep), 4px 4px 0 #000;
}
.bonus-sub {
    margin-top: 8px;
    color: var(--gold-pale);
    font-size: 1.7rem;
    font-family: var(--script);
    line-height: 1.1;
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--burgundy);
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================================================
   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: 1px dashed var(--gold-bright);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(122, 26, 26, 0.14), rgba(208, 166, 74, 0.08)),
        rgba(10, 6, 6, 0.62);
    box-shadow: 0 0 24px var(--gold-soft);
    animation: ctaBannerGlow 2.6s ease-in-out infinite alternate;
}
@keyframes ctaBannerGlow {
    from { box-shadow: 0 0 18px var(--gold-soft); }
    to   { box-shadow: 0 0 44px var(--gold-bright), 0 0 60px var(--burgundy-soft); }
}

.play-now-text {
    color: var(--gold-bright);
    font-family: var(--script);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 0 12px var(--gold-soft), 0 1px 2px #000;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--burgundy), var(--gold-bright), var(--burgundy), var(--gold-bright), var(--burgundy));
    background-size: 300% 100%;
    color: var(--cream);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 5px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--ink);
}

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

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--ink), 0 0 22px var(--gold-soft);
        transform: scale(1);
        filter: brightness(1.08);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 0 var(--ink), 0 0 48px var(--gold-bright), 0 0 70px var(--burgundy-soft);
        transform: scale(1.04);
        filter: brightness(1.25);
    }
}
@keyframes orangeSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gold-pale);
    padding: 40px 20px;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    font-family: var(--script);
    font-weight: 400;
}

.load-error {
    text-align: center;
    color: var(--burgundy);
    padding: 20px;
    font-weight: 700;
    font-family: var(--display);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.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.22) drop-shadow(0 0 14px var(--gold-soft));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 14px var(--gold-bright);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
