/* ============================================================================
   Bettogames - Premium Aurora-Glass theme
   Palette: deep midnight + aurora purple/teal/coral + champagne gold
   Fonts:   Bricolage Grotesque (modern variable display sans)
            + Instrument Serif italic (editorial refinement)
            + DM Sans (clean readable body)
   Style:   Glassmorphism cards, drifting aurora gradient, soft hover lifts,
            refined slow animations, generous negative space
   ============================================================================ */

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

:root {
    --midnight: #0a0d1a;
    --midnight-2: #14182d;
    --midnight-3: #1c213a;
    --hairline: rgba(255, 255, 255, 0.08);
    --hairline-strong: rgba(255, 255, 255, 0.14);

    /* Aurora trio */
    --purple: #6b4eff;
    --purple-bright: #8a6dff;
    --purple-soft: rgba(107, 78, 255, 0.5);

    --teal: #06d6a0;
    --teal-bright: #4dffc6;
    --teal-soft: rgba(6, 214, 160, 0.5);

    --coral: #ff6b9d;
    --coral-bright: #ff8fb5;
    --coral-soft: rgba(255, 107, 157, 0.5);

    /* Premium gold */
    --gold: #d4af37;
    --gold-bright: #e8c987;
    --gold-pale: #f5dfa8;
    --gold-soft: rgba(212, 175, 55, 0.5);

    --white: #ffffff;
    --paper: #f4f6fb;
    --paper-soft: rgba(244, 246, 251, 0.85);
    --gray-200: #d8dce8;
    --gray-400: #a3a8c0;
    --gray-500: #7a7f99;
    --gray-700: #4a5070;

    --text:      #f4f6fb;
    --text-soft: rgba(244, 246, 251, 0.78);
    --muted:     #7a7f99;

    --display:   'Bricolage Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --serif:     'Instrument Serif', 'Playfair Display', Georgia, serif;
    --body:      'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* ============================================================================
   BACKGROUND - midnight + slow aurora
   ============================================================================ */

.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -7;
    background:
        radial-gradient(ellipse at 50% 0%, #1a1f3a 0%, #0e1224 40%, var(--midnight) 80%, #050710 100%);
}

/* Subtle dot-grid for tech texture */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -6;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(244, 246, 251, 0.04) 1px, transparent 0);
    background-size: 36px 36px;
    opacity: 0.6;
}

.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90vw 22vh at 50% 100%, rgba(107, 78, 255, 0.10), transparent 70%);
}

/* ============================================================================
   AURORA GRADIENT BLOBS - the headline visual feature
   ============================================================================ */

.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.aurora-1 {
    top: -25%;
    left: -15%;
    background: radial-gradient(circle, var(--purple) 0%, transparent 60%);
    opacity: 0.35;
    animation: auroraDrift1 32s ease-in-out infinite alternate;
}
.aurora-2 {
    top: 10%;
    right: -25%;
    background: radial-gradient(circle, var(--teal) 0%, transparent 60%);
    opacity: 0.3;
    animation: auroraDrift2 28s ease-in-out infinite alternate;
}
.aurora-3 {
    bottom: -30%;
    left: 25%;
    background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
    opacity: 0.32;
    animation: auroraDrift3 36s ease-in-out infinite alternate;
}
.aurora-4 {
    top: 45%;
    left: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
    opacity: 0.18;
    animation: auroraDrift4 40s ease-in-out infinite alternate;
}

@keyframes auroraDrift1 {
    0%   { transform: translate(0, 0) scale(1);    }
    100% { transform: translate(20vw, 12vh) scale(1.15); }
}
@keyframes auroraDrift2 {
    0%   { transform: translate(0, 0) scale(1);    }
    100% { transform: translate(-15vw, 18vh) scale(0.92); }
}
@keyframes auroraDrift3 {
    0%   { transform: translate(0, 0) scale(1);    }
    100% { transform: translate(12vw, -16vh) scale(1.1); }
}
@keyframes auroraDrift4 {
    0%   { transform: translate(0, 0) scale(1);    }
    100% { transform: translate(20vw, -8vh) scale(1.08); }
}

/* ============================================================================
   FLOATING GLASS ORBS - subtle decorative depth
   ============================================================================ */

.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    will-change: transform;
    animation-name: orbFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.o-purple { background: var(--purple); }
.o-teal   { background: var(--teal); }
.o-coral  { background: var(--coral); }
.o-gold   { background: var(--gold); }

@keyframes orbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -50px) scale(1.18); }
}

/* ============================================================================
   GRAIN OVERLAY - tiny premium texture
   ============================================================================ */

.bg-grain {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
    mix-blend-mode: overlay;
}

/* ============================================================================
   SITE HEADER - frosted glass bar
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 13, 26, 0.65);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--hairline);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    font-size: 1.55rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    transition: opacity 0.2s, transform 0.2s;
}
.site-logo:hover { opacity: 0.88; transform: translateY(-1px); }

/* Glass disc with gradient B */
.logo-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background:
        linear-gradient(135deg, var(--purple), var(--coral) 50%, var(--teal));
    color: var(--white);
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-variation-settings: 'opsz' 12;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px var(--hairline-strong) inset,
        0 8px 22px rgba(107, 78, 255, 0.4);
}
.logo-mark::before { content: 'B'; }
.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 16px;
    color: var(--text-soft);
    text-decoration: none;
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 10px;
    transition: color 0.18s, background 0.18s;
}
.site-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}
.site-nav a.active {
    color: var(--white);
    background: rgba(107, 78, 255, 0.18);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 12px; padding: 12px 18px; }
    .site-logo { font-size: 1.3rem; }
    .logo-mark { width: 32px; height: 32px; font-size: 0.95rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.82rem; }
}

/* ============================================================================
   PAGE HERO - editorial premium
   ============================================================================ */

.hero {
    text-align: center;
    padding: 90px 20px 40px;
    position: relative;
}

.hero-eyebrow {
    color: var(--gold-bright);
    font-family: var(--body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-eyebrow::after {
    content: '';
    display: block;
    margin: 10px auto 0;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.hero h1 {
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    font-size: clamp(3rem, 7vw, 5.4rem);
    margin: 0 0 14px;
    color: var(--white);
    letter-spacing: -0.03em;
    font-weight: 600;
    line-height: 1.02;
    /* Mix in italic serif for editorial elegance via :first-letter not used; instead we accept the H1 as one font */
}

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

.subtitle {
    color: var(--text-soft);
    font-size: 1.18rem;
    font-family: var(--body);
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto;
    letter-spacing: -0.005em;
    line-height: 1.55;
}

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

.accent {
    color: var(--gold-pale);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* ============================================================================
   HERO RECOMMENDED ROW - frosted glass card
   ============================================================================ */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--hairline-strong);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(107, 78, 255, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

/* Soft gradient sheen behind */
.casino-hero::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(107, 78, 255, 0.5), rgba(6, 214, 160, 0.3) 35%, rgba(255, 107, 157, 0.4) 70%, rgba(212, 175, 55, 0.4));
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
            mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.casino-hero:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(107, 78, 255, 0.25);
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 32px;
    background: rgba(212, 175, 55, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-bright);
    font-family: var(--body);
    font-weight: 600;
    padding: 6px 16px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.35);
    z-index: 2;
}

.hero-rank {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-bright);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--hairline-strong);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    display: block;
}

.hero-content { min-width: 0; position: relative; z-index: 1; }

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    letter-spacing: -0.025em;
    font-weight: 600;
    line-height: 1.1;
}

.hero-tagline {
    color: var(--gold-pale);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
    line-height: 1.4;
}

.hero-bonus {
    background: rgba(107, 78, 255, 0.06);
    border-left: 2px solid var(--purple);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 12px 12px 0;
}

.bonus-label {
    display: block;
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bonus-text {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    font-family: var(--body);
    letter-spacing: -0.005em;
}

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

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

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

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

/* ============================================================================
   ALTERNATIVES GRID - glass tiles
   ============================================================================ */

.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: 24px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.casino-card::before { content: none; }

.casino-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(107, 78, 255, 0.15);
}

.rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-bright);
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 16px auto 14px;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--hairline);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Stars - gold */
.rating { margin-bottom: 12px; font-size: 1.05rem; position: relative; z-index: 1; }
.star.full   { color: var(--gold-bright); }
.star.half   { color: var(--gold-bright); opacity: 0.55; }
.star.empty  { color: var(--gray-700); }

.rating-num {
    color: var(--text-soft);
    font-size: 0.86rem;
    margin-left: 6px;
    font-family: var(--body);
    font-weight: 600;
}

.bonus {
    background: rgba(255, 255, 255, 0.025);
    border-left: 2px solid var(--coral);
    padding: 10px 14px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0 10px 10px 0;
    font-family: var(--body);
    font-size: 0.92rem;
    color: var(--text-soft);
    position: relative;
    z-index: 1;
}

/* ============================================================================
   BUTTONS - pill-shape, soft glow, subtle gradient
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 13px 26px;
    font-family: var(--body);
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 100px;       /* pill shape */
    cursor: pointer;
    font-size: 0.92rem;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
    background: transparent;
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

.btn-claim {
    width: 100%;
    padding: 13px 18px;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(107, 78, 255, 0.35);
}
.btn-claim:hover {
    box-shadow: 0 12px 32px rgba(107, 78, 255, 0.5);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 0.98rem;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(107, 78, 255, 0.4);
    font-weight: 600;
    letter-spacing: -0.005em;
}
.btn-hero:hover {
    box-shadow: 0 16px 40px rgba(107, 78, 255, 0.55);
}

.flashing { animation: btnAuroraPulse 2.4s ease-in-out infinite; }
@keyframes btnAuroraPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(107, 78, 255, 0.3); }
    50%      { box-shadow: 0 12px 36px rgba(107, 78, 255, 0.55), 0 0 24px rgba(255, 107, 157, 0.2); }
}

/* ============================================================================
   SECTION TITLES - editorial
   ============================================================================ */

.section-title {
    text-align: center;
    color: var(--white);
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin: 16px 0 8px;
    letter-spacing: -0.03em;
    font-weight: 600;
    line-height: 1.15;
}

.section-title .accent,
.section-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-pale);
}

.section-title::after { content: none; }

.section-sub {
    text-align: center;
    color: var(--text-soft);
    margin: 10px 0 28px;
    font-size: 1.05rem;
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.005em;
}

/* ============================================================================
   GAMES SECTION - glass surface
   ============================================================================ */

.games-section {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--hairline-strong);
    border-radius: 24px;
    padding: 40px 30px;
    margin-bottom: 50px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 24px 60px rgba(0, 0, 0, 0.5);
    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: rgba(10, 13, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hairline-strong);
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(107, 78, 255, 0.22);
    margin-bottom: 14px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: rgba(10, 13, 26, 0.6);
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--hairline);
}

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, rgba(28, 33, 58, 0.8) 0%, rgba(10, 13, 26, 0.9) 50%, rgba(28, 33, 58, 0.8) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--hairline);
}

.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.2rem;
    font-family: var(--display);
    font-weight: 700;
    color: var(--gold-pale);
    background: transparent;
    border-bottom: 1px solid var(--hairline);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
}

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

.cell.payline {
    background: rgba(107, 78, 255, 0.1);
    box-shadow: inset 0 0 0 1px var(--purple-soft);
}

.cell.win {
    background: linear-gradient(180deg, var(--purple) 0%, var(--coral) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 22px var(--purple-soft);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--purple-soft); }
    to   { box-shadow: 0 0 32px var(--coral), 0 0 50px var(--purple-soft); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--gold-soft);
}
.payline-left { left: 6px; }
.payline-right { right: 6px; }

.bookofra-result {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-pale);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: -0.005em;
}

.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(90deg, var(--purple), var(--coral));
    color: var(--white);
    padding: 16px 44px;
    font-size: 1rem;
    border: none;
    border-radius: 100px;
    box-shadow: 0 12px 36px rgba(107, 78, 255, 0.4);
    min-width: 220px;
    letter-spacing: -0.005em;
    font-family: var(--body);
    font-weight: 600;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
}
.btn-bet:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 16px 44px rgba(107, 78, 255, 0.55); }
.btn-bet:active { transform: translateY(1px); }
.btn-bet:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.balance {
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.balance span {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 1.25rem;
    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(--text-soft);
    font-family: var(--body);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--hairline);
    padding: 9px 18px;
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.18s;
}
.slot-amount-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--hairline-strong);
    color: var(--white);
}
.slot-amount-btn.active {
    background: linear-gradient(90deg, var(--purple), var(--coral));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(107, 78, 255, 0.4);
}

/* Paytable */
.paytable {
    margin-top: 24px;
    padding: 22px;
    background: rgba(10, 13, 26, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.paytable-title {
    color: var(--gold-bright);
    font-family: var(--body);
    font-weight: 600;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

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

.paytable-grid span {
    background: rgba(255, 255, 255, 0.03);
    padding: 7px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--hairline);
}

.paytable-grid b { color: var(--coral-bright); font-size: 1.05rem; margin-right: 4px; font-family: var(--display); }

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

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

/* ============================================================================
   WIN CTA - glass + teal accent
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 26px 22px;
    border: 1px solid rgba(6, 214, 160, 0.35);
    border-radius: 20px;
    background: rgba(6, 214, 160, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 30px rgba(6, 214, 160, 0.18);
    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.6); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.win-cta-text {
    color: var(--teal-bright);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.win-cta-sub {
    margin-top: 12px;
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, var(--teal), var(--teal-bright), var(--teal));
    background-size: 200% 100%;
    color: var(--midnight);
    padding: 18px 40px;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(6, 214, 160, 0.4);
}

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

@keyframes greenFlash {
    0%, 100% { box-shadow: 0 12px 32px rgba(6, 214, 160, 0.4); transform: scale(1); }
    50%      { box-shadow: 0 16px 44px rgba(6, 214, 160, 0.65); transform: scale(1.03); }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

@media (max-width: 600px) {
    .btn-win-real { padding: 14px 28px; font-size: 0.92rem; }
}

/* ============================================================================
   GAME RECOMMENDATION - editorial feature card
   ============================================================================ */

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

.rec-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--hairline-strong);
    border-radius: 24px;
    padding: 32px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 24px 60px rgba(0, 0, 0, 0.5);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--hairline);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    font-size: 1.85rem;
    letter-spacing: -0.025em;
    font-weight: 600;
    line-height: 1.1;
}

.rec-bonus {
    color: var(--gold-pale);
    font-size: 1.18rem;
    font-weight: 400;
    font-family: var(--serif);
    font-style: italic;
}

.btn-play {
    background: linear-gradient(90deg, var(--purple), var(--coral));
    color: var(--white);
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 100px;
    box-shadow: 0 12px 32px rgba(107, 78, 255, 0.42);
    font-weight: 600;
    letter-spacing: -0.005em;
}

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

.site-footer {
    background: rgba(10, 13, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--hairline);
    padding: 40px 20px;
    margin-top: 30px;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    font-size: 1.65rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-family: var(--body);
    font-size: 0.92rem;
    letter-spacing: -0.005em;
    font-weight: 500;
    transition: color 0.18s;
}
.footer-nav a:hover { color: var(--white); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: -0.005em;
    font-weight: 400;
    margin: 0;
    font-family: var(--body);
}

/* ============================================================================
   ARTICLE BODY - editorial premium
   ============================================================================ */

.article-body {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--hairline-strong);
    border-radius: 24px;
    padding: 48px 52px;
    margin: 14px auto 30px;
    max-width: 760px;
    color: var(--text);
    font-family: var(--body);
    font-size: 1.05rem;
    line-height: 1.75;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 16px 50px rgba(0, 0, 0, 0.45);
}

.article-body h2 {
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    margin: 36px 0 14px;
    letter-spacing: -0.025em;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h2 em,
.article-body h2 .accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-pale);
}

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body em { color: var(--gold-pale); font-style: italic; font-family: var(--serif); font-weight: 400; font-size: 1.08em; }
.article-body a {
    color: var(--coral-bright);
    text-decoration: underline;
    text-decoration-color: var(--coral-soft);
    text-underline-offset: 3px;
}

.article-body .lead {
    font-size: 1.4rem;
    color: var(--white);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    padding-left: 22px;
    border-left: 2px solid var(--gold-bright);
    line-height: 1.5;
    letter-spacing: -0.005em;
}

.article-body .lead + p::first-letter {
    font-family: var(--serif);
    font-size: 4.2rem;
    line-height: 0.95;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-bright);
    float: left;
    padding: 6px 14px 0 0;
}

.article-body .verdict {
    margin-top: 28px;
    padding: 22px 26px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    font-size: 1.05rem;
    font-family: var(--body);
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 26px;
}
.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: 600;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '◆';
    display: inline-block;
    color: var(--gold-bright);
    margin-right: 10px;
    font-size: 0.78rem;
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(10, 13, 26, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hairline);
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.article-rating {
    text-align: center;
    padding-right: 26px;
    border-right: 1px solid var(--hairline);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    font-size: 3.8rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 600;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    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: 14px 24px;
}
.article-facts > div { display: flex; flex-direction: column; gap: 2px; }
.article-facts dt {
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.article-facts dd {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    font-family: var(--body);
    font-size: 1rem;
}

@media (max-width: 640px) {
    .article-body { padding: 32px 26px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating {
        border-right: none;
        border-bottom: 1px solid var(--hairline);
        padding: 0 0 16px;
    }
    .article-body .lead + p::first-letter { font-size: 3.2rem; }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 36px 28px;
    background: linear-gradient(135deg, rgba(107, 78, 255, 0.12), rgba(255, 107, 157, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 22px;
    text-align: center;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 16px 50px rgba(107, 78, 255, 0.18);
}
.bonus-headline {
    font-family: var(--display);
    font-variation-settings: 'opsz' 96;
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.bonus-sub {
    margin-top: 10px;
    color: var(--gold-pale);
    font-size: 1.3rem;
    font-family: var(--serif);
    font-style: italic;
    line-height: 1.3;
}
.bonus-tag {
    margin-top: 18px;
    display: inline-block;
    padding: 7px 18px;
    background: rgba(212, 175, 55, 0.14);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    font-family: var(--body);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

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

.play-now-cta {
    margin: 28px auto;
    max-width: 760px;
    padding: 30px 32px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(107, 78, 255, 0.08), rgba(255, 107, 157, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 16px 40px rgba(107, 78, 255, 0.15);
}

.play-now-text {
    color: var(--white);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 18px;
    letter-spacing: -0.005em;
    line-height: 1.4;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--purple), var(--coral));
    color: var(--white);
    padding: 16px 36px;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(107, 78, 255, 0.42);
}

.flashing-orange {
    animation: auroraFlash 1.6s ease-in-out infinite;
}

@keyframes auroraFlash {
    0%, 100% { box-shadow: 0 12px 32px rgba(107, 78, 255, 0.42); }
    50%      { box-shadow: 0 16px 44px rgba(255, 107, 157, 0.55), 0 0 28px rgba(107, 78, 255, 0.3); }
}

@media (max-width: 600px) {
    .btn-inline-play { padding: 14px 28px; font-size: 0.92rem; }
    .play-now-text { font-size: 1.25rem; }
}

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-soft);
    padding: 40px 20px;
    font-size: 1.1rem;
    letter-spacing: -0.005em;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

.load-error {
    text-align: center;
    color: var(--coral-bright);
    padding: 20px;
    font-weight: 600;
    font-family: var(--body);
    letter-spacing: -0.005em;
}

.footer { display: none; }

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.18s, transform 0.18s;
    cursor: pointer;
}
.brand-link:hover { opacity: 0.88; transform: translateY(-1px); }
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--gold-pale);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
