/* ============================================================================
   Redneckspins - Western / Saloon / Wild West theme
   Palette: saddle leather + sunset orange + bandana red + denim + bourbon amber
   Fonts:   Rye (display western wood-block) + Smokum (display heavy)
            + Special Elite (typewriter / wanted-poster) + Lora (body serif)
   ============================================================================ */

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

:root {
    --night: #14080c;
    --wood-deep: #1a0e08;
    --wood: #3d2510;
    --leather: #6b3410;
    --leather-bright: #8b4513;
    --tan: #a85820;

    --sunset: #ff7e3c;
    --sunset-bright: #ffa64d;
    --sunset-soft: rgba(255, 126, 60, 0.55);

    --bourbon: #d97706;
    --bourbon-bright: #ffb74d;
    --bourbon-soft: rgba(217, 119, 6, 0.55);

    --bandana: #b32a1a;
    --bandana-bright: #d63a2a;
    --bandana-soft: rgba(179, 42, 26, 0.55);

    --denim: #2e527a;
    --denim-bright: #4a8bc7;

    --cactus: #5a7d4a;
    --cactus-soft: rgba(90, 125, 74, 0.5);

    --gold: #d4a05a;
    --gold-bright: #ffd17a;
    --gold-soft: rgba(212, 160, 90, 0.55);

    --sand: #e8d8b0;
    --sand-soft: rgba(232, 216, 176, 0.85);
    --cream: #f0e4ca;
    --paper: #e8d8b0;             /* sun-bleached wanted-poster */

    --text: #efe0c0;
    --text-soft: rgba(239, 224, 192, 0.78);
    --muted: #9c8466;

    --display: 'Rye', 'Smokum', 'Bigshot One', serif;
    --display-heavy: 'Smokum', 'Rye', serif;
    --typewriter: 'Special Elite', 'Courier New', monospace;
    --body: 'Lora', Georgia, 'Times New Roman', serif;
}

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

/* ============================================================================
   BACKGROUND - desert sunset + drifting prairie dust
   ============================================================================ */

/* 1. Desert sunset gradient: amber sky -> dusty terracotta -> deep wood ground */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        linear-gradient(180deg,
            #ffd17a 0%,
            #ffa64d 6%,
            #ff7e3c 12%,
            #b32a1a 22%,
            #6b3410 34%,
            #3d2510 55%,
            #1a0e08 100%);
}

/* 2. Faint stars in the dusk + sand grain */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, rgba(232, 216, 176, 0.022) 0 1px, transparent 1px 3px),
        radial-gradient(1px 1px at 12% 12%, rgba(232, 216, 176, 0.5), transparent 60%),
        radial-gradient(1px 1px at 28% 18%, rgba(255, 209, 122, 0.55), transparent 60%),
        radial-gradient(1.5px 1.5px at 47% 9%, rgba(232, 216, 176, 0.6), transparent 60%),
        radial-gradient(1px 1px at 62% 22%, rgba(212, 160, 90, 0.45), transparent 60%),
        radial-gradient(1px 1px at 78% 14%, rgba(255, 209, 122, 0.5), transparent 60%),
        radial-gradient(1.5px 1.5px at 90% 24%, rgba(232, 216, 176, 0.5), transparent 60%);
    opacity: 0.85;
}

/* 3. Distant mountain silhouettes + ground horizon line */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        /* Wood-plank streak across the bottom 'ground' */
        repeating-linear-gradient(90deg,
            rgba(61, 37, 16, 0)   0 80px,
            rgba(26, 14, 8, 0.18) 80px 82px,
            rgba(61, 37, 16, 0)   82px 160px) 0 100% / 100% 18vh no-repeat,
        /* Faint horizon glow */
        radial-gradient(ellipse 80vw 12vh at 50% 70%, rgba(255, 126, 60, 0.18), transparent 70%);
}

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

.dust {
    position: absolute;
    left: -5vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 216, 176, 0.9) 0%, rgba(212, 160, 90, 0.5) 50%, transparent 90%);
    box-shadow: 0 0 6px rgba(212, 160, 90, 0.4);
    will-change: transform;
    animation-name: dustBlow;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes dustBlow {
    0%   { transform: translate3d(0, 0, 0); }
    50%  { transform: translate3d(50vw, calc(var(--sway, 0vh) * 0.5), 0); }
    100% { transform: translate3d(110vw, var(--sway, 0vh), 0); }
}

/* ============================================================================
   SITE HEADER + NAV - wooden saloon banner
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(26, 14, 8, 0.97), rgba(61, 37, 16, 0.92)),
        repeating-linear-gradient(90deg,
            rgba(0, 0, 0, 0)        0 60px,
            rgba(0, 0, 0, 0.18)    60px 62px,
            rgba(0, 0, 0, 0)       62px 120px);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 3px solid var(--bourbon);
    box-shadow:
        0 1px 0 var(--bandana-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(--gold-bright);
    font-size: 1.85rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-shadow:
        0 0 1px #000,
        2px 2px 0 var(--bandana),
        4px 4px 0 #000,
        0 0 14px var(--gold-soft);
    transition: filter 0.2s, transform 0.2s;
    text-transform: uppercase;
}
.site-logo:hover { filter: brightness(1.18); transform: translateY(-1px); }

/* Sheriff badge logo mark */
.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background:
        radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold) 50%, var(--leather));
    color: var(--night);
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow:
        0 0 14px var(--gold-soft),
        0 0 24px rgba(212, 160, 90, 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(--wood-deep);
    /* 5-point star clip */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}
.logo-mark::before { content: '★'; font-size: 1rem; opacity: 0.4; }
.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(--typewriter);
    font-size: 0.95rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    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(--bourbon-bright);
    border-color: var(--bourbon);
    text-shadow: 0 0 8px var(--bourbon-soft);
}
.site-nav a.active {
    color: var(--night);
    background: linear-gradient(180deg, var(--gold-bright), var(--bourbon));
    border-color: var(--wood-deep);
    box-shadow: 0 3px 0 var(--wood-deep), 0 0 14px var(--gold-soft);
}

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

/* ============================================================================
   PAGE HERO - WANTED poster vibe
   ============================================================================ */

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

.hero-eyebrow {
    color: var(--bandana-bright);
    font-family: var(--typewriter);
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 0 12px var(--bandana-soft), 1px 1px 0 #000;
    transform: rotate(-1deg);
    display: inline-block;
}

/* Decorative star line under the eyebrow */
.hero-eyebrow::after {
    content: '★  ✦  ★';
    display: block;
    margin-top: 6px;
    color: var(--bourbon);
    font-size: 1rem;
    letter-spacing: 16px;
    text-shadow: 0 0 10px var(--bourbon-soft);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin: 0 0 14px;
    color: var(--gold-bright);
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-shadow:
        0 0 1px #000,
        4px 4px 0 var(--bandana),
        6px 6px 0 #000,
        0 0 28px rgba(255, 209, 122, 0.45);
}

.subtitle {
    color: var(--cream);
    font-size: 1.15rem;
    font-family: var(--typewriter);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: 1px;
    line-height: 1.5;
    text-shadow: 1px 1px 0 #000;
}

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

.accent {
    color: var(--bourbon-bright);
    font-family: var(--display);
    font-style: normal;
    text-shadow: 2px 2px 0 var(--bandana), 0 0 14px var(--bourbon-soft);
}

/* ============================================================================
   HERO RECOMMENDED ROW - wood-framed wanted poster
   ============================================================================ */

.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;
    /* Wood-plank gradient background */
    background:
        linear-gradient(135deg, rgba(61, 37, 16, 0.96), rgba(26, 14, 8, 0.98)),
        repeating-linear-gradient(90deg,
            rgba(139, 69, 19, 0.22) 0 80px,
            rgba(26, 14, 8, 0.4)   80px 82px,
            rgba(139, 69, 19, 0.22) 82px 160px);
    background-blend-mode: overlay;
    border: 4px solid var(--bourbon);
    outline: 2px solid var(--leather);
    outline-offset: 6px;
    box-shadow:
        0 0 0 1px var(--wood-deep) inset,
        0 0 35px var(--bourbon-soft),
        0 0 60px rgba(179, 42, 26, 0.25),
        0 14px 38px rgba(0, 0, 0, 0.85);
    animation: heroSaloonGlow 3s ease-in-out infinite alternate;
}

@keyframes heroSaloonGlow {
    from {
        border-color: var(--bourbon);
        box-shadow: 0 0 0 1px var(--wood-deep) inset, 0 0 28px var(--bourbon-soft), 0 14px 38px rgba(0,0,0,0.85);
    }
    to {
        border-color: var(--gold-bright);
        box-shadow: 0 0 0 1px var(--wood-deep) inset, 0 0 50px var(--gold-bright), 0 0 80px var(--bandana-soft), 0 14px 38px rgba(0,0,0,0.85);
    }
}

.badge-recommended {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(180deg, var(--bandana-bright), var(--bandana));
    color: var(--cream);
    font-family: var(--display);
    font-weight: 400;
    padding: 9px 28px;
    font-size: 0.95rem;
    letter-spacing: 4px;
    border-radius: 0;
    white-space: nowrap;
    text-transform: uppercase;
    border: 2px solid var(--wood-deep);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.7),
        0 0 18px var(--bandana-soft);
}

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--night);
    width: 46px;
    height: 46px;
    font-family: var(--display);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow:
        0 0 14px var(--gold-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.45);
    z-index: 2;
    /* 5-point star shape */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 4px solid var(--bourbon);
    box-shadow:
        0 0 0 2px var(--wood-deep) inset,
        0 0 22px var(--bourbon-soft);
    display: block;
    /* Sepia tone for wanted-poster look */
    filter: sepia(0.35) saturate(1.1) contrast(0.95);
}

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

.hero-name {
    margin: 4px 0 8px;
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-shadow:
        2px 2px 0 var(--bandana),
        4px 4px 0 #000;
}

.hero-tagline {
    color: var(--cream);
    font-family: var(--typewriter);
    font-weight: 400;
    font-size: 1.05rem;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-shadow: 1px 1px 0 #000;
    text-transform: uppercase;
}

.hero-bonus {
    background: rgba(217, 119, 6, 0.12);
    border-left: 4px solid var(--bourbon);
    padding: 14px 18px;
    margin-top: 12px;
    border-radius: 0 4px 4px 0;
}

.bonus-label {
    display: block;
    color: var(--bourbon-bright);
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 400;
    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(--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.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--typewriter);
}

@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(61, 37, 16, 0.94), rgba(26, 14, 8, 0.97));
    border: 3px solid var(--leather);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px var(--wood-deep) inset,
        0 8px 26px rgba(0, 0, 0, 0.65);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.casino-card::before {
    /* Bandana stripe at the top - WANTED poster header */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background:
        linear-gradient(90deg, var(--bandana) 0%, var(--bourbon) 50%, var(--bandana) 100%);
    box-shadow: 0 1px 0 var(--wood-deep);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--bourbon);
    box-shadow: 0 0 0 1px var(--wood-deep) inset, 0 14px 36px var(--bourbon-soft);
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--night);
    width: 38px;
    height: 38px;
    font-family: var(--display);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 10px var(--gold-soft), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
    z-index: 2;
    /* Sheriff star */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 4px;
    border: 3px solid var(--bourbon);
    box-shadow: 0 0 0 1px var(--wood-deep) inset, 0 0 14px var(--bourbon-soft);
    filter: sepia(0.3) saturate(1.05) contrast(0.95);
    position: relative;
    z-index: 1;
}

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

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

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

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

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

.btn {
    display: inline-block;
    padding: 13px 22px;
    font-family: var(--display);
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--wood-deep);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.92rem;
    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(--night);
    font-weight: 400;
    box-shadow: 0 4px 0 var(--wood-deep);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.1rem;
    color: var(--night);
    white-space: nowrap;
    box-shadow: 0 5px 0 var(--wood-deep), 0 0 24px var(--bourbon-soft);
    font-weight: 400;
    border: 2px solid var(--wood-deep);
    letter-spacing: 4px;
}

.flashing { animation: btnSaloonFlash 1.2s ease-in-out infinite; }
@keyframes btnSaloonFlash {
    0%, 100% {
        box-shadow: 0 4px 0 var(--wood-deep), 0 0 16px var(--bourbon-soft);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 4px 0 var(--wood-deep), 0 0 38px var(--gold-bright), 0 0 60px var(--bandana-soft);
        filter: brightness(1.3);
    }
}

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

.section-title {
    text-align: center;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    margin: 16px 0 6px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow:
        3px 3px 0 var(--bandana),
        5px 5px 0 #000,
        0 0 28px rgba(255, 209, 122, 0.4);
}

.section-title::after {
    content: '★  ✦  ★';
    display: block;
    margin-top: 10px;
    color: var(--bourbon);
    font-size: 1rem;
    letter-spacing: 16px;
    text-shadow: 0 0 10px var(--bourbon-soft);
}

.section-sub {
    text-align: center;
    color: var(--cream);
    margin: 12px 0 26px;
    font-size: 1.05rem;
    font-family: var(--typewriter);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #000;
}

/* ============================================================================
   GAMES SECTION + BOOK OF RA SLOT - saloon piano feel
   ============================================================================ */

.games-section {
    background:
        linear-gradient(135deg, rgba(61, 37, 16, 0.85), rgba(26, 14, 8, 0.95)),
        repeating-linear-gradient(90deg,
            rgba(139, 69, 19, 0.1)   0 60px,
            rgba(26, 14, 8, 0.25)   60px 62px);
    background-blend-mode: overlay;
    border: 3px solid var(--bourbon);
    outline: 2px solid var(--leather);
    outline-offset: 6px;
    border-radius: 6px;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 1px var(--wood-deep) inset,
        0 0 30px var(--bourbon-soft),
        0 0 60px var(--bandana-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(--leather) 0%, var(--wood-deep) 100%);
    border: 4px solid var(--bourbon);
    border-radius: 4px;
    box-shadow:
        0 0 0 2px var(--wood-deep) inset,
        inset 0 0 30px rgba(0, 0, 0, 0.85),
        0 0 35px var(--bourbon-soft),
        0 0 60px var(--bandana-soft);
    margin-bottom: 14px;
}

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

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 50%, var(--sand) 100%);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--leather);
    box-shadow: inset 0 0 14px rgba(107, 52, 16, 0.3);
}

.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: 400;
    color: var(--leather);
    background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 100%);
    border-bottom: 1px solid rgba(107, 52, 16, 0.4);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
}

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

.cell.payline {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--bourbon) 100%);
    box-shadow: inset 0 0 0 1px var(--bourbon);
    color: var(--night);
}

.cell.win {
    background: linear-gradient(180deg, var(--bandana-bright) 0%, var(--bourbon-bright) 100%);
    color: var(--cream);
    transform: scale(1.05);
    box-shadow:
        0 0 22px var(--bandana),
        0 0 36px var(--bourbon-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;
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--bandana), inset 0 0 8px rgba(255,255,255,0.5); }
    to   { box-shadow: 0 0 36px var(--bourbon-bright), 0 0 50px var(--gold-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(--bourbon), 0 0 22px var(--bandana-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(--typewriter);
    font-size: 1.2rem;
    color: var(--gold-bright);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 1px;
    text-shadow: 0 0 12px var(--bourbon-soft), 1px 1px 0 #000;
}

.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(--bandana-bright), var(--bandana) 50%, #6e1810);
    color: var(--cream);
    padding: 16px 50px;
    font-size: 1.1rem;
    border: 3px solid var(--wood-deep);
    border-radius: 2px;
    box-shadow:
        0 5px 0 var(--wood-deep),
        0 0 24px var(--bandana-soft),
        0 0 40px var(--bourbon-soft);
    min-width: 220px;
    letter-spacing: 5px;
    font-family: var(--display);
    font-weight: 400;
    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(--wood-deep), 0 0 14px var(--bandana-soft);
}
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.balance {
    color: var(--cream);
    font-family: var(--typewriter);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.balance span {
    color: var(--gold-bright);
    font-weight: 400;
    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(--bourbon-bright);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 3px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--bourbon-soft);
}

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

.slot-amount-btn {
    background: rgba(107, 52, 16, 0.3);
    color: var(--cream);
    border: 2px solid var(--bourbon);
    padding: 9px 18px;
    font-family: var(--typewriter);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.18s;
    text-transform: uppercase;
}
.slot-amount-btn:hover {
    background: rgba(217, 119, 6, 0.2);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--gold-bright), var(--bourbon));
    color: var(--night);
    border-color: var(--wood-deep);
    box-shadow: 0 3px 0 var(--wood-deep), 0 0 16px var(--gold-soft);
}

/* Paytable */
.paytable {
    margin-top: 22px;
    padding: 18px;
    background: rgba(26, 14, 8, 0.65);
    border: 2px solid var(--bourbon);
    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: 400;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 1.05rem;
    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(--typewriter);
    font-weight: 400;
}

.paytable-grid span {
    background: rgba(217, 119, 6, 0.07);
    padding: 6px 10px;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(217, 119, 6, 0.25);
}

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

.paytable-note {
    text-align: center;
    color: var(--text-soft);
    font-size: 0.95rem;
    margin-top: 10px;
    font-family: var(--typewriter);
    letter-spacing: 0.5px;
}

@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 green so the "you won" cue stays consistent
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 3px dashed var(--cactus);
    outline: 1px solid var(--leather);
    outline-offset: 5px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(40, 60, 30, 0.6), rgba(26, 14, 8, 0.95));
    box-shadow: 0 0 30px var(--cactus-soft);
    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: #b6e89c;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000, 0 0 14px rgba(90, 125, 74, 0.7);
}

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

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, #3d5a2c, var(--cactus), #8db26d, var(--cactus), #3d5a2c);
    background-size: 300% 100%;
    color: var(--night);
    padding: 20px 42px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 5px;
    border: 3px solid var(--wood-deep);
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--wood-deep);
}

.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(--wood-deep), 0 0 22px var(--cactus-soft), 0 0 45px rgba(46, 139, 87, 0.4);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 5px 0 var(--wood-deep), 0 0 50px var(--cactus), 0 0 90px rgba(141, 178, 109, 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(61, 37, 16, 0.97), rgba(26, 14, 8, 0.98));
    border: 4px solid var(--bourbon);
    outline: 2px solid var(--leather);
    outline-offset: 6px;
    border-radius: 4px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        0 0 0 1px var(--wood-deep) inset,
        0 0 30px var(--bourbon-soft),
        0 0 50px var(--bandana-soft);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    border: 4px solid var(--bourbon);
    box-shadow: 0 0 22px var(--bourbon-soft);
    filter: sepia(0.35) saturate(1.1) contrast(0.95);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 2.1rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--bandana), 4px 4px 0 #000;
}

.rec-bonus {
    color: var(--cream);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--typewriter);
    letter-spacing: 0.5px;
}

.btn-play {
    background: linear-gradient(180deg, var(--bourbon-bright), var(--bourbon));
    color: var(--night);
    font-size: 1.15rem;
    padding: 16px 32px;
    border: 3px solid var(--wood-deep);
    box-shadow: 0 5px 0 var(--wood-deep), 0 0 22px var(--bourbon-soft);
    font-weight: 400;
    letter-spacing: 4px;
}

/* ============================================================================
   FOOTER - saloon planks
   ============================================================================ */

.site-footer {
    background:
        linear-gradient(180deg, rgba(26, 14, 8, 0.92), rgba(10, 6, 4, 0.99)),
        repeating-linear-gradient(90deg,
            rgba(139, 69, 19, 0.18)   0 60px,
            rgba(26, 14, 8, 0.4)     60px 62px);
    border-top: 3px solid var(--bourbon);
    padding: 32px 20px;
    margin-top: 30px;
    box-shadow: inset 0 4px 0 var(--bandana);
}
.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.85rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 2px 2px 0 var(--bandana), 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(--typewriter);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--bourbon-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    font-family: var(--typewriter);
}

/* ============================================================================
   ARTICLE BODY - wanted-poster paper
   ============================================================================ */

.article-body {
    background:
        linear-gradient(135deg, rgba(61, 37, 16, 0.55), rgba(26, 14, 8, 0.78));
    border: 2px solid var(--bourbon);
    outline: 1px solid var(--leather);
    outline-offset: 5px;
    border-radius: 4px;
    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(--wood-deep) 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: 2px;
    font-size: 1.85rem;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--bandana), 4px 4px 0 #000;
}
.article-body h2:first-child { margin-top: 0; }

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

.article-body .lead {
    font-size: 1.25rem;
    color: var(--cream);
    font-family: var(--typewriter);
    font-weight: 400;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 4px solid var(--bandana);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.14), rgba(179, 42, 26, 0.08));
    border-left: 4px solid var(--gold-bright);
    border-radius: 0 4px 4px 0;
    font-size: 1.1rem;
    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(--bourbon-bright);
    font-family: var(--display);
    font-weight: 400;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '★';
    display: inline-block;
    color: var(--bourbon-bright);
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: 0 0 6px var(--bourbon-soft);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(26, 14, 8, 0.7);
    border: 2px solid var(--bourbon);
    outline: 1px solid var(--leather);
    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(--bourbon-soft);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 4rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 3px 3px 0 var(--bandana), 5px 5px 0 #000;
    font-weight: 400;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--typewriter);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 6px;
    font-weight: 400;
    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(--bourbon-bright);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
}
.article-facts dd {
    margin: 0;
    color: var(--cream);
    font-weight: 600;
    font-family: var(--typewriter);
    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(--bourbon-soft);
        padding: 0 0 16px;
    }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(255, 209, 122, 0.18), rgba(179, 42, 26, 0.1));
    border: 4px solid var(--gold-bright);
    outline: 2px solid var(--leather);
    outline-offset: 6px;
    border-radius: 4px;
    text-align: center;
    box-shadow:
        0 0 0 1px var(--wood-deep) 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(--wood-deep) inset, 0 0 18px var(--gold-soft); }
    to   { box-shadow: 0 0 0 1px var(--wood-deep) inset, 0 0 50px var(--gold-bright), 0 0 80px var(--bandana-soft); }
}
.bonus-headline {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--bandana), 5px 5px 0 #000;
}
.bonus-sub {
    margin-top: 8px;
    color: var(--cream);
    font-size: 1.25rem;
    font-family: var(--typewriter);
    letter-spacing: 0.5px;
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--bandana);
    color: var(--cream);
    border: 2px solid var(--wood-deep);
    border-radius: 0;
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ============================================================================
   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(--bourbon-bright);
    outline: 1px solid var(--leather);
    outline-offset: 5px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(217, 119, 6, 0.14), rgba(179, 42, 26, 0.08)),
        rgba(26, 14, 8, 0.62);
    box-shadow: 0 0 24px var(--bourbon-soft);
    animation: ctaBannerGlow 2.6s ease-in-out infinite alternate;
}
@keyframes ctaBannerGlow {
    from { box-shadow: 0 0 18px var(--bourbon-soft); }
    to   { box-shadow: 0 0 44px var(--gold-bright), 0 0 60px var(--bandana-soft); }
}

.play-now-text {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--bandana), 4px 4px 0 #000;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--bandana-bright), var(--bourbon-bright), var(--gold-bright), var(--bourbon-bright), var(--bandana-bright));
    background-size: 300% 100%;
    color: var(--night);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 5px;
    border: 3px solid var(--wood-deep);
    border-radius: 2px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--wood-deep);
}

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

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 5px 0 var(--wood-deep), 0 0 22px var(--bourbon-soft);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 5px 0 var(--wood-deep), 0 0 48px var(--gold-bright), 0 0 70px var(--bandana-soft);
        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: 3px; }
    .play-now-text { font-size: 1.3rem; }
}

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--cream);
    padding: 40px 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: var(--typewriter);
    text-transform: uppercase;
}

.load-error {
    text-align: center;
    color: var(--bandana-bright);
    padding: 20px;
    font-weight: 400;
    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.2) drop-shadow(0 0 14px var(--bourbon-soft));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--bourbon-bright);
    text-shadow: 0 0 14px var(--bourbon-bright);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
