/* ============================================================================
   Spinobon - French Belle Époque theme
   Palette: midnight bleu de France + Bordeaux wine + antique gold + cream ivory
            + sage Tuileries accent
   Fonts:   DM Serif Display (bold modern serif - bold-magazine French feel)
            + Italianno (flowing French signature script)
            + Lora (refined readable serif body)
   ============================================================================ */

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

:root {
    --bleu-deep: #0e1a3a;          /* midnight Paris sky */
    --bleu: #1a2c5c;
    --bleu-mid: #1e3a8a;            /* bleu de France */
    --bleu-light: #4a7bb8;
    --night: #050918;

    --wine: #80162d;                /* Bordeaux */
    --wine-bright: #a52a4f;
    --wine-deep: #5a0e1f;
    --wine-soft: rgba(128, 22, 45, 0.55);
    --rouge: #c8202c;                /* a French flag rouge */

    --gold: #c8a04a;                 /* antique gold */
    --gold-bright: #e8c987;
    --gold-pale: #f5dfa8;
    --gold-soft: rgba(200, 160, 74, 0.55);

    --sage: #5a7d5d;                 /* Tuileries garden green */
    --sage-soft: rgba(90, 125, 93, 0.5);

    --cream: #f5ead0;                 /* aged paper */
    --cream-bright: #faf3df;
    --ivory: #f4ead2;
    --noir: #1a1817;                  /* Paris noir */

    --text:      #f5ead0;
    --text-soft: rgba(245, 234, 208, 0.78);
    --muted:     #a89a7a;

    --display: 'DM Serif Display', 'Playfair Display', 'Times New Roman', serif;
    --script:  'Italianno', 'Sacramento', 'Tangerine', cursive;
    --body:    'Lora', 'EB Garamond', Georgia, 'Times New Roman', serif;
}

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

/* ============================================================================
   BACKGROUND - Paris à minuit
   ============================================================================ */

/* 1. French midnight blue gradient */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -6;
    background:
        radial-gradient(ellipse at 50% 30%, var(--bleu-mid) 0%, var(--bleu) 30%, var(--bleu-deep) 65%, var(--night) 100%);
}

/* 2. Faint star + warm window-glow halos */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background-image:
        /* Warm Parisian window-light glow at top */
        radial-gradient(circle 320px at 50% 6%, rgba(232, 201, 135, 0.16), transparent 70%),
        /* Faint stars - the calm Paris night */
        radial-gradient(1px 1px at 14% 18%, rgba(232, 201, 135, 0.55), transparent 60%),
        radial-gradient(1px 1px at 28% 12%, rgba(245, 234, 208, 0.4),  transparent 60%),
        radial-gradient(1.2px 1.2px at 42% 24%, rgba(232, 201, 135, 0.5), transparent 60%),
        radial-gradient(1px 1px at 58% 14%, rgba(245, 234, 208, 0.4),  transparent 60%),
        radial-gradient(1px 1px at 72% 22%, rgba(232, 201, 135, 0.45), transparent 60%),
        radial-gradient(1.2px 1.2px at 86% 16%, rgba(245, 234, 208, 0.4), transparent 60%);
    opacity: 0.85;
}

/* 3. Subtle damask wallpaper - Belle Époque salon hint */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
        repeating-linear-gradient(45deg,  rgba(200, 160, 74, 0.025) 0 16px, transparent 16px 32px),
        repeating-linear-gradient(-45deg, rgba(128, 22, 45, 0.025)  0 16px, transparent 16px 32px),
        radial-gradient(ellipse 60vw 22vh at 50% 100%, rgba(128, 22, 45, 0.12), transparent 70%);
    opacity: 0.7;
}

/* 4. Floating fleurs-de-lis ornaments */
.bg-fleurs {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

.fleur {
    position: absolute;
    line-height: 1;
    user-select: none;
    will-change: transform, opacity;
    animation-name: fleurDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.f-gold { color: var(--gold); text-shadow: 0 0 12px var(--gold-soft); }
.f-wine { color: var(--wine-bright); text-shadow: 0 0 12px var(--wine-soft); }

@keyframes fleurDrift {
    0%   { transform: translate(0, 0) rotate(0deg);     opacity: 0; }
    10%  { opacity: 0.7; }
    50%  { transform: translate(20px, -28px) rotate(8deg); }
    90%  { opacity: 0.5; }
    100% { transform: translate(-15px, 32px) rotate(-6deg); opacity: 0; }
}

/* 5. Vignette - cinematic salon ambiance */
.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.55) 95%);
}

/* ============================================================================
   SITE HEADER - Belle Époque salon bar
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(14, 26, 58, 0.96), rgba(26, 44, 92, 0.88));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold);
    box-shadow:
        0 1px 0 var(--wine-soft),
        0 4px 22px rgba(0, 0, 0, 0.55);
}

.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.95rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow:
        0 0 1px #000,
        0 1px 0 var(--noir),
        0 0 18px var(--gold-soft);
    transition: filter 0.2s, transform 0.2s;
}
.site-logo:hover { filter: brightness(1.15); transform: translateY(-1px); }

/* Fleur-de-lis on a wine-red disc with gold rim */
.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--wine-bright), var(--wine) 55%, var(--wine-deep));
    color: var(--gold-bright);
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 1.55rem;
    font-weight: 700;
    box-shadow:
        0 0 0 2px var(--gold) inset,
        0 0 0 3px var(--noir),
        0 0 14px var(--wine-soft),
        0 0 24px rgba(200, 160, 74, 0.25);
    border: 2px solid var(--noir);
}
.logo-mark::before { content: '⚜'; }
.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 22px;
    color: var(--ivory);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: color 0.18s, border-color 0.18s, text-shadow 0.18s;
}
.site-nav a:hover {
    color: var(--gold-bright);
    border-bottom-color: var(--gold);
    text-shadow: 0 0 10px var(--gold-soft);
}
.site-nav a.active {
    color: var(--gold-bright);
    border-bottom: 1px solid var(--gold-bright);
    text-shadow: 0 0 12px var(--gold-soft);
}

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

/* ============================================================================
   PAGE HERO - magazine cover
   ============================================================================ */

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

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

/* Belle Époque ornament: fleur — flourish — fleur */
.hero-eyebrow::after {
    content: '⚜  ❦  ⚜';
    display: block;
    margin-top: 10px;
    color: var(--wine-bright);
    font-size: 1.1rem;
    letter-spacing: 18px;
    text-shadow: 0 0 10px var(--wine-soft);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    margin: 0 0 14px;
    color: var(--gold-bright);
    letter-spacing: -0.005em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow:
        0 0 1px #000,
        0 1px 0 rgba(0, 0, 0, 0.5),
        0 0 30px rgba(232, 201, 135, 0.3);
}

.hero h1 em,
.hero h1 .accent {
    font-family: var(--script);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-pale);
    font-size: 1.3em;
    letter-spacing: 0;
}

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

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

.accent {
    color: var(--gold-bright);
    font-family: var(--script);
    font-style: normal;
    font-weight: 400;
    font-size: 1.3em;
    text-shadow: 0 0 14px var(--gold-soft);
}

/* ============================================================================
   HERO RECOMMENDED ROW - framed Belle Époque feature
   ============================================================================ */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 38px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(26, 44, 92, 0.95), rgba(14, 26, 58, 0.97));
    border: 1px solid var(--gold);
    /* Double-rule frame, Parisian salon */
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 0 30px rgba(200, 160, 74, 0.3),
        0 0 60px var(--wine-soft),
        0 14px 40px rgba(0, 0, 0, 0.65);
    transition: box-shadow 0.6s ease;
}

.casino-hero:hover {
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 0 50px rgba(200, 160, 74, 0.5),
        0 0 80px var(--wine-soft),
        0 14px 40px rgba(0, 0, 0, 0.65);
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--wine-bright), var(--wine));
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 400;
    padding: 7px 26px;
    font-size: 0.85rem;
    letter-spacing: 5px;
    border-radius: 0;
    white-space: nowrap;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 4px 14px rgba(0, 0, 0, 0.6),
        0 0 18px var(--wine-soft);
}

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

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--gold);
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 0 22px rgba(200, 160, 74, 0.35);
    display: block;
}

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

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    color: var(--cream);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    letter-spacing: -0.005em;
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 0 0 18px rgba(232, 201, 135, 0.3);
}

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

.hero-bonus {
    background: rgba(200, 160, 74, 0.08);
    border-left: 2px solid var(--gold);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 4px 4px 0;
}

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

.bonus-text {
    display: block;
    color: var(--cream);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.45;
    font-family: var(--body);
}

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

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

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

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

/* ============================================================================
   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(26, 44, 92, 0.94), rgba(14, 26, 58, 0.97));
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 6px 22px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.casino-card::before {
    /* Hairline rule near the top - editorial restraint */
    content: '';
    position: absolute;
    top: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 1px var(--noir) inset, 0 14px 32px rgba(200, 160, 74, 0.3);
}

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

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 14px auto 14px;
    display: block;
    border-radius: 4px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 12px rgba(200, 160, 74, 0.2);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.18rem;
    margin: 0 0 10px;
    color: var(--cream);
    letter-spacing: -0.005em;
    font-weight: 400;
    text-shadow: 0 0 12px rgba(232, 201, 135, 0.2);
    position: relative;
    z-index: 1;
}

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

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

.bonus {
    background: rgba(200, 160, 74, 0.05);
    border-left: 2px solid var(--wine);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0;
    font-family: var(--body);
    position: relative;
    z-index: 1;
}

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

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

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

.btn-claim {
    width: 100%;
    padding: 13px 18px;
    color: var(--cream);
    font-weight: 400;
    border: 1px solid var(--noir);
    box-shadow: 0 0 0 1px var(--gold-soft) inset, 0 3px 10px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1rem;
    color: var(--cream);
    white-space: nowrap;
    box-shadow:
        0 0 0 1px var(--gold) inset,
        0 4px 14px rgba(0, 0, 0, 0.6),
        0 0 22px rgba(200, 160, 74, 0.4);
    font-weight: 400;
    border: 1px solid var(--noir);
    letter-spacing: 4px;
}

.flashing { animation: btnGlow 1.6s ease-in-out infinite; }
@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 14px rgba(0,0,0,0.6), 0 0 14px var(--gold-soft);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 18px rgba(0,0,0,0.6), 0 0 28px var(--gold-bright), 0 0 44px var(--wine-soft);
        filter: brightness(1.18);
    }
}

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

.section-title {
    text-align: center;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin: 16px 0 6px;
    letter-spacing: -0.005em;
    font-weight: 400;
    line-height: 1.15;
    text-shadow:
        0 0 1px #000,
        0 1px 0 rgba(0, 0, 0, 0.5),
        0 0 22px rgba(232, 201, 135, 0.25);
}

.section-title em,
.section-title .accent {
    font-family: var(--script);
    font-style: normal;
    font-weight: 400;
    font-size: 1.3em;
    color: var(--gold-pale);
}

.section-title::after {
    content: '⚜  ❦  ⚜';
    display: block;
    margin-top: 10px;
    color: var(--wine-bright);
    font-size: 0.95rem;
    letter-spacing: 16px;
    text-shadow: 0 0 8px var(--wine-soft);
}

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

/* ============================================================================
   GAMES SECTION - polished walnut cabinet
   ============================================================================ */

.games-section {
    background:
        linear-gradient(135deg, rgba(26, 44, 92, 0.78), rgba(14, 26, 58, 0.92));
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    border-radius: 4px;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 0 28px rgba(200, 160, 74, 0.2);
    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(--wine-deep) 0%, var(--bleu-deep) 100%);
    border: 3px solid var(--gold);
    border-radius: 4px;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px var(--gold-soft);
    margin-bottom: 14px;
}

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

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, #1a2a4a 0%, #050918 50%, #1a2a4a 100%);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: inset 0 0 12px rgba(200, 160, 74, 0.18);
}

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

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

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

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

.cell.payline {
    background: linear-gradient(180deg, rgba(200, 160, 74, 0.15) 0%, rgba(128, 22, 45, 0.15) 100%);
    box-shadow: inset 0 0 0 1px var(--gold-bright);
}

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

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

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

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

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

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

.btn-bet {
    background: linear-gradient(180deg, var(--wine-bright), var(--wine) 50%, var(--wine-deep));
    color: var(--gold-bright);
    padding: 16px 50px;
    font-size: 1.02rem;
    border: 2px solid var(--noir);
    border-radius: 2px;
    box-shadow:
        0 0 0 1px var(--gold) inset,
        0 4px 0 var(--noir),
        0 0 22px var(--gold-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.15); transform: translateY(-1px); }
.btn-bet:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 1px var(--gold) inset, 0 2px 0 var(--noir), 0 0 14px var(--gold-soft);
}
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

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

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

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

.slot-amount-btn {
    background: rgba(200, 160, 74, 0.07);
    color: var(--cream);
    border: 1px solid var(--gold);
    padding: 9px 18px;
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.18s;
    text-transform: uppercase;
}
.slot-amount-btn:hover {
    background: rgba(200, 160, 74, 0.18);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--bleu-deep);
    border-color: var(--bleu-deep);
    box-shadow: 0 3px 0 var(--bleu-deep), 0 0 14px var(--gold-soft);
}

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

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

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

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

.paytable-grid b { color: var(--wine-bright); font-size: 1.1rem; margin-right: 4px; }

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

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

/* ============================================================================
   WIN CTA - sage Tuileries green
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 1px dashed var(--sage);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(40, 70, 56, 0.55), rgba(14, 26, 58, 0.94));
    box-shadow: 0 0 30px var(--sage-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(--script);
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(90, 125, 93, 0.7), 0 1px 2px #000;
    line-height: 1.05;
}

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

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

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

@keyframes greenFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--noir), 0 0 22px var(--sage-soft);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 0 var(--noir), 0 0 50px var(--sage), 0 0 80px rgba(127, 223, 96, 0.4);
        transform: scale(1.04);
        filter: brightness(1.18);
    }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

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

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

.rec-card {
    background:
        linear-gradient(135deg, rgba(26, 44, 92, 0.97), rgba(14, 26, 58, 0.98));
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    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(--noir) inset,
        0 0 28px rgba(200, 160, 74, 0.3),
        0 0 50px var(--wine-soft);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 18px var(--gold-soft);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--cream);
    font-size: 1.85rem;
    letter-spacing: -0.005em;
    font-weight: 400;
    text-shadow: 0 0 14px rgba(232, 201, 135, 0.3);
}

.rec-bonus {
    color: var(--gold-pale);
    font-size: 1.55rem;
    font-weight: 400;
    font-family: var(--script);
    line-height: 1.05;
}

.btn-play {
    background: linear-gradient(180deg, var(--wine-bright), var(--wine));
    color: var(--gold-bright);
    font-size: 1.02rem;
    padding: 16px 32px;
    border: 1px solid var(--noir);
    box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 14px rgba(0, 0, 0, 0.55), 0 0 22px var(--wine-soft);
    font-weight: 400;
    letter-spacing: 4px;
}

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

.site-footer {
    background: linear-gradient(180deg, rgba(14, 26, 58, 0.92), rgba(5, 9, 24, 0.99));
    border-top: 1px solid var(--gold);
    padding: 36px 20px;
    margin-top: 30px;
    box-shadow: inset 0 1px 0 var(--wine-soft);
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 1.7rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 0 18px var(--gold-soft);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    font-family: var(--display);
}

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

.article-body {
    background:
        linear-gradient(135deg, rgba(26, 44, 92, 0.55), rgba(14, 26, 58, 0.78));
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 4px;
    padding: 44px 50px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--cream);
    font-family: var(--body);
    font-size: 1.08rem;
    line-height: 1.8;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 6px 28px rgba(0, 0, 0, 0.55);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--gold-bright);
    margin: 36px 0 14px;
    letter-spacing: -0.005em;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 0 14px var(--gold-soft);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h2 em,
.article-body h2 .accent {
    font-family: var(--script);
    font-style: normal;
    font-weight: 400;
    font-size: 1.3em;
    color: var(--gold-pale);
}

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--gold-bright); font-weight: 600; }
.article-body em { color: var(--gold-pale); font-family: var(--script); font-style: normal; font-weight: 400; font-size: 1.4em; line-height: 1; }
.article-body a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: var(--gold-soft);
    text-underline-offset: 3px;
}

.article-body .lead {
    font-size: 2rem;
    color: var(--gold-pale);
    font-family: var(--script);
    font-weight: 400;
    margin-bottom: 30px;
    padding-left: 22px;
    border-left: 2px solid var(--wine);
    line-height: 1.15;
    letter-spacing: 0.5px;
}

/* Drop-cap on first paragraph after the lead */
.article-body .lead + p::first-letter {
    font-family: var(--display);
    font-size: 4.5rem;
    line-height: 0.95;
    font-weight: 400;
    color: var(--gold-bright);
    float: left;
    padding: 6px 14px 0 0;
    text-shadow: 0 0 14px var(--gold-soft);
}

.article-body .verdict {
    margin-top: 26px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(200, 160, 74, 0.1), rgba(128, 22, 45, 0.06));
    border-left: 3px solid var(--gold-bright);
    border-radius: 0;
    font-size: 1.08rem;
    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(--gold-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(--wine-bright);
    margin-right: 12px;
    font-size: 1rem;
    text-shadow: 0 0 6px var(--wine-soft);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(14, 26, 58, 0.7);
    border: 1px solid var(--gold);
    outline: 1px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
    padding: 24px 28px;
    margin-bottom: 30px;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid rgba(200, 160, 74, 0.3);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 4rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 0 18px var(--gold-soft);
    font-weight: 400;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
}
.rating-stars { display: block; margin-top: 8px; font-size: 1.2rem; }

.article-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 22px;
}
.article-facts > div { display: flex; flex-direction: column; gap: 2px; }
.article-facts dt {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.article-facts dd {
    margin: 0;
    color: var(--cream);
    font-weight: 400;
    font-family: var(--body);
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .article-body { padding: 30px 24px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating {
        border-right: none;
        border-bottom: 1px solid rgba(200, 160, 74, 0.3);
        padding: 0 0 16px;
    }
    .article-body .lead + p::first-letter { font-size: 3.4rem; }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(128, 22, 45, 0.18), rgba(200, 160, 74, 0.08));
    border: 2px solid var(--gold-bright);
    outline: 1px solid var(--gold);
    outline-offset: 6px;
    border-radius: 4px;
    text-align: center;
    box-shadow:
        0 0 0 1px var(--noir) inset,
        0 0 30px var(--gold-soft);
    transition: box-shadow 0.6s ease;
}
.bonus-spotlight:hover {
    box-shadow: 0 0 0 1px var(--noir) inset, 0 0 50px var(--gold-bright), 0 0 80px var(--wine-soft);
}
.bonus-headline {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-shadow: 0 0 18px var(--gold-soft);
}
.bonus-sub {
    margin-top: 8px;
    color: var(--gold-pale);
    font-size: 2rem;
    font-family: var(--script);
    line-height: 1.05;
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--wine);
    color: var(--gold-bright);
    border: 1px solid var(--gold);
    border-radius: 0;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 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: 1px dashed var(--gold-bright);
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(128, 22, 45, 0.14), rgba(200, 160, 74, 0.07)),
        rgba(14, 26, 58, 0.62);
    box-shadow: 0 0 24px var(--gold-soft);
    transition: box-shadow 0.6s ease;
}
.play-now-cta:hover {
    box-shadow: 0 0 44px var(--gold-bright), 0 0 60px var(--wine-soft);
}

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

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

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

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--gold) inset, 0 4px 0 var(--noir), 0 0 22px var(--gold-soft);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 0 1px var(--gold-bright) inset, 0 4px 0 var(--noir), 0 0 38px var(--gold-bright), 0 0 60px var(--wine-soft);
        transform: scale(1.03);
        filter: brightness(1.18);
    }
}
@keyframes orangeSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

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

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

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

.load-error {
    text-align: center;
    color: var(--wine-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.03);
    filter: brightness(1.18) drop-shadow(0 0 12px var(--gold-soft));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 14px var(--gold-bright);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
