/* /pridewin - Regal "Pride of Lions" golden-hour theme
   Deep mahogany + lion-mane gold + sunset orange + ruby + cream
   Fonts: DM Serif Display + Tenor Sans + Crimson Text
   Vibe: savanna at golden hour, regal pride, warm royal cinema
   Animation: slow sun rays + warm dust embers + horizon silhouette
*/

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

:root {
    /* Pride palette - savanna at sunset */
    --night:       #1a0e08;
    --night-2:     #2a1610;
    --mahogany:    #3d1a14;
    --burgundy:    #5e2014;

    --mane-gold:   #c8901a;
    --gold-bright: #f3c969;
    --gold-pale:   #e8d29a;
    --copper:      #a8341c;
    --sunset:      #e76f23;
    --terracotta:  #b85b3c;
    --ruby:        #8b1a2e;

    --cream:       #f5e6c8;
    --parchment:   #efdfb8;
    --text:        #ebd9b0;
    --muted:       #b89a6f;
    --dim:         #7a6448;

    --line:        rgba(243, 201, 105, 0.22);
    --line-soft:   rgba(243, 201, 105, 0.10);
    --line-strong: rgba(243, 201, 105, 0.45);

    /* Type */
    --display: 'DM Serif Display', 'Bodoni Moda', Georgia, serif;
    --caps:    'Tenor Sans', 'Trajan Pro', sans-serif;
    --serif:   'Crimson Text', 'Cormorant Garamond', Georgia, serif;
    --body:    'Crimson Text', Georgia, 'Times New Roman', serif;
}

body {
    margin: 0;
    font-family: var(--body);
    color: var(--text);
    background: var(--night);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================================================== */
/* Background                                                                 */
/* ========================================================================== */

/* Layer 1: deep night sky -> warm horizon glow */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        linear-gradient(180deg,
            #0d0604 0%,
            #1a0e08 30%,
            #3d1a14 60%,
            #8b3a18 85%,
            #c8901a 100%
        );
}

/* Layer 2: subtle stars + warm spark dust */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 8%, rgba(243, 201, 105, 0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 22%, rgba(255, 225, 175, 0.5) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 45% 15%, rgba(243, 201, 105, 0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 62% 5%, rgba(255, 225, 175, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 78% 18%, rgba(243, 201, 105, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 90% 12%, rgba(255, 225, 175, 0.6) 50%, transparent 60%);
    opacity: 0.7;
}

/* Layer 3: heat haze and sunset bloom */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 1100px 380px at 75% 95%, rgba(231, 111, 35, 0.45), transparent 70%),
        radial-gradient(ellipse 900px 320px at 25% 88%, rgba(243, 201, 105, 0.30), transparent 70%),
        radial-gradient(ellipse 600px 220px at 50% 100%, rgba(168, 52, 28, 0.25), transparent 70%);
    animation: heatHaze 32s ease-in-out infinite alternate;
}

@keyframes heatHaze {
    0%   { transform: translate(-2%, 0) scale(1); }
    100% { transform: translate(2%, -1%) scale(1.04); }
}

/* Layer 4: slow rotating sun rays from upper-right */
.bg-rays {
    position: fixed;
    top: -40vh;
    right: -30vw;
    width: 140vw;
    height: 140vh;
    z-index: -2;
    pointer-events: none;
    background: conic-gradient(
        from 200deg at 30% 30%,
        transparent 0deg,
        rgba(243, 201, 105, 0.05) 4deg,
        transparent 8deg,
        transparent 18deg,
        rgba(243, 201, 105, 0.04) 22deg,
        transparent 26deg,
        transparent 38deg,
        rgba(231, 111, 35, 0.03) 42deg,
        transparent 46deg,
        transparent 60deg,
        rgba(243, 201, 105, 0.04) 64deg,
        transparent 68deg,
        transparent 80deg,
        rgba(243, 201, 105, 0.03) 84deg,
        transparent 88deg,
        transparent 360deg
    );
    animation: rayRotate 240s linear infinite;
    opacity: 0.85;
    mix-blend-mode: screen;
}

@keyframes rayRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Layer 5: distant savanna horizon silhouette (acacia tree shapes) */
.bg-horizon {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 18vh;
    z-index: -1;
    pointer-events: none;
    background:
        /* The acacia umbrella canopies + ground line */
        radial-gradient(ellipse 90px 22px at 12% 92%, #0a0503 50%, transparent 52%),
        radial-gradient(ellipse 70px 16px at 28% 95%, #0a0503 50%, transparent 52%),
        radial-gradient(ellipse 110px 26px at 45% 90%, #0a0503 50%, transparent 52%),
        radial-gradient(ellipse 80px 18px at 64% 94%, #0a0503 50%, transparent 52%),
        radial-gradient(ellipse 95px 22px at 82% 91%, #0a0503 50%, transparent 52%),
        radial-gradient(ellipse 75px 16px at 95% 95%, #0a0503 50%, transparent 52%),
        linear-gradient(180deg, transparent 0%, transparent 92%, #0a0503 92%, #0a0503 100%);
}

/* Drifting warm embers - the only continuously animated motif */
.bg-embers {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(243, 201, 105, 0.45);
    animation-name: emberRise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

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

/* ========================================================================== */
/* Hero                                                                       */
/* ========================================================================== */

.hero {
    text-align: center;
    padding: 88px 24px 48px;
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.hero::before {
    content: '✸';
    display: block;
    color: var(--gold-bright);
    font-size: 1.6rem;
    margin: 0 auto 22px;
    text-shadow: 0 0 20px rgba(243, 201, 105, 0.6);
    animation: starShimmer 3.4s ease-in-out infinite alternate;
}

@keyframes starShimmer {
    from { text-shadow: 0 0 12px rgba(243, 201, 105, 0.4); transform: scale(1); }
    to   { text-shadow: 0 0 26px rgba(243, 201, 105, 0.9); transform: scale(1.08); }
}

.hero-eyebrow {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 0.78rem;
    letter-spacing: 7px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    margin: 0 0 22px;
    color: var(--cream);
    letter-spacing: -0.015em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow:
        0 2px 0 rgba(0,0,0,0.5),
        0 0 30px rgba(243, 201, 105, 0.3);
}

.hero h1 .accent {
    background: linear-gradient(120deg, var(--gold-bright), var(--sunset) 50%, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

.subtitle {
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 60px;
    position: relative;
    z-index: 2;
}

.accent {
    color: var(--gold-bright);
    font-family: var(--display);
    font-style: italic;
}

/* ========================================================================== */
/* Casino hero card                                                           */
/* ========================================================================== */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 38px 40px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(45, 22, 16, 0.92), rgba(26, 14, 8, 0.96));
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(26, 14, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(200, 144, 26, 0.12);
}

/* Corner ornaments - small starbursts */
.casino-hero::before,
.casino-hero::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.5);
}
.casino-hero::before { top: 14px; left: 18px; }
.casino-hero::after  { bottom: 14px; right: 18px; }

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold) 50%, #8b6508);
    color: var(--night);
    font-family: var(--caps);
    font-weight: 400;
    padding: 7px 26px;
    font-size: 0.72rem;
    letter-spacing: 4px;
    border-radius: 2px;
    border: 1px solid #6b4a08;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.hero-rank {
    position: absolute;
    top: 22px;
    right: 38px;
    background: transparent;
    color: var(--gold-bright);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--caps);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: none;
    z-index: 2;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.hero-rank::before {
    content: 'No.';
    color: var(--muted);
    margin-right: 5px;
    font-size: 0.65rem;
}

.hero-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid var(--line-strong);
    display: block;
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.4),
        0 8px 24px rgba(0, 0, 0, 0.55);
    filter: sepia(0.18) saturate(1.1) brightness(1.02);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-logo:hover img { transform: scale(1.03); }

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

.hero-name {
    margin: 4px 0 8px;
    font-family: var(--display);
    color: var(--cream);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    letter-spacing: -0.005em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.hero-tagline {
    color: var(--muted);
    font-family: var(--caps);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 0.78rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-bonus {
    background: linear-gradient(180deg, rgba(243, 201, 105, 0.07), rgba(243, 201, 105, 0.02));
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold-bright);
    padding: 16px 20px;
    margin-top: 16px;
    border-radius: 0 4px 4px 0;
}

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

.bonus-text {
    display: block;
    color: var(--cream);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

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

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

.hero-cta-sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--caps);
}

@media (max-width: 800px) {
    .casino-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 32px 24px;
    }
    .hero-rank { right: 24px; }
    .hero-logo img { width: 180px; height: 180px; }
    .hero-bonus { width: 100%; }
}

/* ========================================================================== */
/* Alternatives grid                                                          */
/* ========================================================================== */

.alternatives {
    display: grid;
    gap: 24px;
    margin-bottom: 80px;
}

.alternatives.five-col { grid-template-columns: repeat(5, 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); } }
@media (max-width: 520px)  { .alternatives.five-col { grid-template-columns: 1fr; } }

.casino-card {
    position: relative;
    padding: 30px 22px 24px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(45, 22, 16, 0.92), rgba(26, 14, 8, 0.96));
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.casino-card::before,
.casino-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--gold-bright);
    opacity: 0.55;
    transition: opacity 0.3s;
}
.casino-card::before {
    top: 8px; left: 8px;
    border-right: none; border-bottom: none;
}
.casino-card::after {
    bottom: 8px; right: 8px;
    border-left: none; border-top: none;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bright);
    box-shadow:
        inset 0 0 0 1px rgba(243, 201, 105, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 28px rgba(243, 201, 105, 0.18);
}
.casino-card:hover::before,
.casino-card:hover::after { opacity: 1; }

.rank {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: var(--gold-bright);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--caps);
    font-weight: 400;
    display: block;
    font-size: 0.7rem;
    box-shadow: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.rank::before {
    content: 'No.';
    color: var(--muted);
    margin-right: 4px;
    font-size: 0.62rem;
}

.logo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin: 18px auto 18px;
    display: block;
    border-radius: 3px;
    border: 2px solid var(--line-strong);
    filter: sepia(0.18) saturate(1.1) brightness(1.02);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo:hover img { transform: scale(1.04); }

.casino-name {
    font-family: var(--display);
    font-size: 1.4rem;
    margin: 0 0 12px;
    color: var(--cream);
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* Stars */
.rating { margin-bottom: 14px; font-size: 1rem; letter-spacing: 1px; }
.star.full { color: var(--gold-bright); text-shadow: 0 0 6px rgba(243, 201, 105, 0.5); }
.star.half { color: var(--gold-bright); opacity: 0.55; }
.star.empty { color: rgba(243, 201, 105, 0.18); }

.rating-num {
    color: var(--cream);
    font-size: 0.78rem;
    margin-left: 8px;
    font-family: var(--caps);
    letter-spacing: 1.5px;
}

.bonus {
    background: linear-gradient(180deg, rgba(243, 201, 105, 0.05), rgba(243, 201, 105, 0.02));
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold-bright);
    padding: 12px 14px;
    margin-bottom: 16px;
    text-align: left;
    min-height: 76px;
    border-radius: 0 4px 4px 0;
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.4;
    color: var(--cream);
    font-style: italic;
}

/* ========================================================================== */
/* Buttons                                                                    */
/* ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--caps);
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid currentColor;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.82rem;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    background: transparent;
    color: var(--cream);
}

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

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--night);
    border-color: rgba(0,0,0,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.45);
    font-weight: 400;
}

.btn-hero {
    padding: 18px 38px;
    font-size: 0.92rem;
    color: var(--night);
    white-space: nowrap;
    box-shadow:
        0 4px 0 rgba(0,0,0,0.5),
        0 0 28px rgba(243, 201, 105, 0.45);
    border: 1px solid rgba(0,0,0,0.5);
    letter-spacing: 5px;
}

.flashing {
    animation: btnGlow 1.8s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 4px 0 rgba(0,0,0,0.5), 0 0 22px rgba(243, 201, 105, 0.45);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 4px 0 rgba(0,0,0,0.5), 0 0 40px rgba(231, 111, 35, 0.85);
        filter: brightness(1.1);
    }
}

/* ========================================================================== */
/* Section titles                                                             */
/* ========================================================================== */

.section-title {
    text-align: center;
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    margin: 24px 0 10px;
    letter-spacing: -0.015em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

.section-title::before,
.section-title::after {
    content: '✸';
    color: var(--gold-bright);
    margin: 0 18px;
    font-size: 0.85rem;
    vertical-align: middle;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.55);
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 40px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================================== */
/* Game / slot section                                                        */
/* ========================================================================== */

.games-section {
    background:
        linear-gradient(180deg, rgba(45, 22, 16, 0.7), rgba(26, 14, 8, 0.85));
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 48px 32px;
    margin-bottom: 80px;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(26, 14, 8, 0.55),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.55);
    position: relative;
}

.games-section::before,
.games-section::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 0.95rem;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.55);
}
.games-section::before { top: 16px; left: 22px; }
.games-section::after  { bottom: 16px; right: 22px; }

.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 28px 32px;
    background:
        linear-gradient(180deg, var(--mahogany) 0%, var(--night-2) 50%, var(--night) 100%);
    border: 4px solid var(--gold-bright);
    border-radius: 6px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(0,0,0,0.5),
        0 0 30px rgba(243, 201, 105, 0.35),
        0 12px 30px rgba(0,0,0,0.55);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: #0a0503;
    padding: 8px;
    border-radius: 3px;
    border: 2px solid #6e4d20;
    box-shadow: inset 0 0 14px rgba(0,0,0,0.7);
}

.reel {
    width: 88px;
    height: 264px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 50%, var(--cream) 100%);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5d4218;
}

.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: #2c1f0a;
    background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
    border-bottom: 1px solid rgba(110, 77, 32, 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, #fff5d6 0%, #f0d68a 100%);
    box-shadow: inset 0 0 0 1px var(--gold-bright);
}

.cell.win {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--sunset) 100%);
    color: var(--night);
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(243, 201, 105, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.5);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 12px rgba(243, 201, 105, 0.5), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 30px rgba(231, 111, 35, 0.9), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--gold-bright);
    animation: paylinePulse 1.4s ease-in-out infinite;
}
.payline-left  { left: 8px; }
.payline-right { right: 8px; }

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

.bookofra-result {
    font-family: var(--display);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 22px;
    min-height: 32px;
    letter-spacing: -0.005em;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
    font-style: italic;
}

.bookofra-action-row {
    margin: 22px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-bet {
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold) 50%, #8b6508);
    color: var(--night);
    padding: 16px 50px;
    font-family: var(--caps);
    font-size: 0.92rem;
    border: 2px solid #3b2810;
    border-radius: 4px;
    box-shadow: 0 4px 0 #3b2810, 0 0 18px rgba(243, 201, 105, 0.45);
    min-width: 240px;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
}

.btn-bet:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(2px); box-shadow: 0 2px 0 #3b2810, 0 0 12px rgba(243, 201, 105, 0.4); }
.btn-bet:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.balance {
    color: var(--text);
    font-family: var(--caps);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.balance span {
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: none;
    margin-left: 6px;
    font-style: italic;
}

/* Bet section */
.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: rgba(243, 201, 105, 0.06);
    color: var(--text);
    border: 1px solid var(--line);
    padding: 10px 20px;
    font-family: var(--caps);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    text-transform: uppercase;
}
.slot-amount-btn:hover { background: rgba(243, 201, 105, 0.14); border-color: var(--gold-bright); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold));
    color: var(--night);
    border-color: var(--gold-bright);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Paytable */
.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(26, 14, 8, 0.55);
    border: 1px solid var(--line);
    border-radius: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paytable-title {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
}

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

.paytable-grid span {
    background: rgba(243, 201, 105, 0.07);
    padding: 9px 10px;
    border-radius: 2px;
    text-align: center;
    border: 1px solid var(--line);
    letter-spacing: 0.5px;
}

.paytable-grid b {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 1.2rem;
    margin-right: 4px;
    font-weight: 400;
    font-style: italic;
}

.paytable-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    font-family: var(--serif);
    font-style: italic;
    margin-top: 14px;
}

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

/* ========================================================================== */
/* Win CTA - ruby velvet box                                                  */
/* ========================================================================== */

.win-cta {
    margin-top: 36px;
    text-align: center;
    padding: 40px 26px;
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(243, 201, 105, 0.18), transparent 70%),
        linear-gradient(135deg, rgba(139, 26, 46, 0.85), rgba(94, 32, 20, 0.92));
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(45, 22, 16, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 60px rgba(168, 52, 28, 0.4);
    position: relative;
    overflow: hidden;
}

.win-cta::before,
.win-cta::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.6);
}
.win-cta::before { top: 14px; left: 18px; }
.win-cta::after  { bottom: 14px; right: 18px; }

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

.cta-pop { animation: ctaPop 0.55s cubic-bezier(0.25, 1.4, 0.5, 1); }

@keyframes ctaPop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.win-cta-text {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
    line-height: 1.15;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6);
}
.win-cta-text em {
    background: linear-gradient(120deg, var(--gold-bright), var(--sunset), var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

.win-cta-sub {
    margin-top: 16px;
    color: var(--gold-pale);
    font-family: var(--caps);
    font-size: 0.74rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold) 50%, #8b6508);
    color: var(--night);
    padding: 22px 52px;
    font-family: var(--caps);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 5px;
    border: 2px solid #3b2810;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #3b2810, 0 0 22px rgba(243, 201, 105, 0.5);
}

.flashing-green {
    animation: prideFlash 1.8s ease-in-out infinite;
}

@keyframes prideFlash {
    0%, 100% {
        box-shadow: 0 4px 0 #3b2810, 0 0 22px rgba(243, 201, 105, 0.5);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 4px 0 #3b2810, 0 0 40px rgba(231, 111, 35, 0.9), 0 0 70px rgba(243, 201, 105, 0.5);
        filter: brightness(1.15);
    }
}

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

/* ========================================================================== */
/* Game recommendation card                                                   */
/* ========================================================================== */

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

.rec-card {
    background:
        linear-gradient(135deg, rgba(45, 22, 16, 0.92), rgba(26, 14, 8, 0.96));
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(26, 14, 8, 0.55),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.rec-card::before,
.rec-card::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.5);
}
.rec-card::before { top: 14px; left: 18px; }
.rec-card::after  { bottom: 14px; right: 18px; }

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid var(--line-strong);
    filter: sepia(0.18) saturate(1.1) brightness(1.02);
}

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

.rec-info h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    color: var(--cream);
    font-size: 2rem;
    letter-spacing: -0.01em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.rec-bonus {
    color: var(--text);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

.btn-play {
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold) 50%, #8b6508);
    color: var(--night);
    font-family: var(--caps);
    font-size: 0.9rem;
    padding: 16px 32px;
    border: 1px solid #3b2810;
    box-shadow: 0 3px 0 #3b2810, 0 0 16px rgba(243, 201, 105, 0.4);
    letter-spacing: 4px;
}

/* ========================================================================== */
/* Loading + error                                                            */
/* ========================================================================== */

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 60px 20px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: var(--serif);
    font-style: italic;
}

.load-error {
    text-align: center;
    color: #c9665a;
    padding: 24px;
    font-family: var(--caps);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ========================================================================== */
/* Brand link                                                                 */
/* ========================================================================== */

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.25s, filter 0.25s;
    cursor: pointer;
}
.brand-link:hover {
    transform: scale(1.03);
    filter: brightness(1.18) drop-shadow(0 0 10px rgba(243, 201, 105, 0.55));
}
.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 rgba(243, 201, 105, 0.7);
}
a.brand-link.logo,
a.brand-link.hero-logo {
    display: block;
}

/* ========================================================================== */
/* Site header + main navigation                                              */
/* ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(13, 6, 4, 0.96), rgba(26, 14, 8, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-bright);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.site-header::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--line);
    margin-top: 1px;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--display);
    color: var(--cream);
    font-size: 1.5rem;
    letter-spacing: -0.005em;
    text-transform: none;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
    transition: filter 0.2s;
}
.site-logo:hover { filter: brightness(1.18); }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--mane-gold) 70%, #6b4a08);
    color: var(--night);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid #6b4a08;
    box-shadow:
        inset 0 0 6px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 4px 14px rgba(243, 201, 105, 0.4);
}

.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(--text);
    text-decoration: none;
    font-family: var(--caps);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.site-nav a:hover {
    color: var(--gold-bright);
    background: rgba(243, 201, 105, 0.07);
    border-color: var(--line);
}
.site-nav a.active {
    color: var(--night);
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold));
    border-color: var(--gold-bright);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 12px 16px; }
    .site-logo { font-size: 1.1rem; }
    .logo-mark { width: 30px; height: 30px; font-size: 0.95rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.74rem; letter-spacing: 1.6px; }
}

/* ========================================================================== */
/* Site footer                                                                */
/* ========================================================================== */

.site-footer {
    background:
        linear-gradient(180deg, rgba(13, 6, 4, 0.85), rgba(7, 3, 2, 0.95));
    border-top: 2px solid var(--gold-bright);
    padding: 56px 24px 36px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}
.site-footer::before {
    content: '✸';
    display: block;
    text-align: center;
    color: var(--gold-bright);
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(243, 201, 105, 0.55);
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--cream);
    font-size: 1.8rem;
    letter-spacing: -0.005em;
    text-transform: none;
    margin-bottom: 18px;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
}
.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--caps);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--caps);
    margin: 0;
}

/* Suppress old plain footer */
.footer { display: none; }

/* ========================================================================== */
/* Article body                                                               */
/* ========================================================================== */

.article-body {
    background:
        linear-gradient(180deg, rgba(45, 22, 16, 0.55), rgba(26, 14, 8, 0.75));
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 48px 56px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--body);
    font-size: 1.1rem;
    line-height: 1.8;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(26, 14, 8, 0.5),
        inset 0 0 0 7px var(--line),
        0 16px 40px rgba(0, 0, 0, 0.5);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--cream);
    margin: 36px 0 14px;
    letter-spacing: -0.01em;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.15;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.article-body h2::before {
    content: '✸ ';
    color: var(--gold-bright);
    margin-right: 6px;
    font-size: 0.7em;
    vertical-align: middle;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.5);
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--gold-bright); font-weight: 600; }
.article-body em {
    color: var(--cream);
    font-family: var(--display);
    font-style: italic;
}
.article-body a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(243, 201, 105, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--gold-bright); }

.article-body .lead {
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 3px solid var(--gold-bright);
    line-height: 1.45;
    letter-spacing: -0.01em;
}

/* Drop cap */
.article-body .lead + p::first-letter {
    font-family: var(--display);
    font-size: 4.2rem;
    line-height: 0.85;
    color: var(--gold-bright);
    float: left;
    padding: 8px 12px 0 0;
    margin-top: 6px;
    font-style: italic;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(243, 201, 105, 0.3);
}

.article-body .verdict {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(243, 201, 105, 0.12), rgba(243, 201, 105, 0.04));
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-bright);
    border-radius: 0 4px 4px 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.55;
    font-style: italic;
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 26px;
}
.step-list li, .check-list li {
    margin-bottom: 12px;
}
.step-list li::marker {
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 400;
    font-style: italic;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}
.check-list li::before {
    content: '✸';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-bright);
    font-size: 0.95rem;
    text-shadow: 0 0 6px rgba(243, 201, 105, 0.5);
}

/* Review meta block */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(45, 22, 16, 0.55));
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 26px 30px;
    margin-bottom: 32px;
    box-shadow: inset 0 0 0 1px var(--line-soft);
}
.article-rating {
    text-align: center;
    padding-right: 28px;
    border-right: 1px solid var(--line);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 3.4rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(243, 201, 105, 0.4);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--caps);
    font-size: 0.78rem;
    letter-spacing: 3px;
    margin-top: 6px;
    text-transform: uppercase;
}
.rating-stars {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.article-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px 24px;
}
.article-facts > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.article-facts dt {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.article-facts dd {
    margin: 0;
    color: var(--cream);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.15rem;
}

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

/* ========================================================================== */
/* Bonus highlight card                                                       */
/* ========================================================================== */

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(243, 201, 105, 0.2), transparent 70%),
        linear-gradient(135deg, rgba(94, 32, 20, 0.6), rgba(45, 22, 16, 0.85));
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(45, 22, 16, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 50px rgba(243, 201, 105, 0.3);
    position: relative;
    overflow: hidden;
}
.bonus-spotlight::before,
.bonus-spotlight::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(243, 201, 105, 0.6);
}
.bonus-spotlight::before { top: 16px; left: 22px; }
.bonus-spotlight::after  { bottom: 16px; right: 22px; }

.bonus-headline {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 22px rgba(243, 201, 105, 0.45);
    font-style: italic;
}
.bonus-sub {
    margin-top: 12px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
}
.bonus-tag {
    margin-top: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--gold-bright);
    border: 1px solid var(--gold-bright);
    border-radius: 2px;
    font-family: var(--caps);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ========================================================================== */
/* Top 3 alternatives grid                                                    */
/* ========================================================================== */

.top-alternatives { margin: 36px auto 80px; }
.alternatives.three-col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .alternatives.three-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .alternatives.three-col { grid-template-columns: 1fr; } }

/* ========================================================================== */
/* Inline "Play Now" CTA                                                      */
/* ========================================================================== */

.play-now-cta {
    margin: 36px auto;
    max-width: 880px;
    padding: 32px 32px;
    text-align: center;
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(231, 111, 35, 0.14), transparent 70%),
        linear-gradient(135deg, rgba(45, 22, 16, 0.85), rgba(26, 14, 8, 0.95));
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(26, 14, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 38px rgba(243, 201, 105, 0.3);
    position: relative;
    overflow: hidden;
}
.play-now-cta::before,
.play-now-cta::after {
    content: '✸';
    position: absolute;
    color: var(--gold-bright);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(243, 201, 105, 0.55);
}
.play-now-cta::before { top: 14px; left: 18px; }
.play-now-cta::after  { bottom: 14px; right: 18px; }

.play-now-text {
    color: var(--cream);
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.005em;
    margin-bottom: 22px;
    line-height: 1.2;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.play-now-text em {
    background: linear-gradient(120deg, var(--gold-bright), var(--sunset), var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-bright), var(--mane-gold) 50%, #8b6508);
    color: var(--night);
    padding: 18px 40px;
    font-family: var(--caps);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 5px;
    border: 2px solid #3b2810;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #3b2810, 0 0 18px rgba(243, 201, 105, 0.4);
}

.flashing-orange {
    animation: prideFlash 1.8s ease-in-out infinite;
}

@media (max-width: 600px) {
    .btn-inline-play { padding: 14px 24px; font-size: 0.85rem; letter-spacing: 3px; }
}

/* ========================================================================== */
/* Selection                                                                  */
/* ========================================================================== */

::selection { background: var(--gold-bright); color: var(--night); }
::-moz-selection { background: var(--gold-bright); color: var(--night); }
