/* /zenthoryx - Cyberzen sanctuary
   Charcoal void + chartreuse pulse + soft-rose pop + pearl cream.
   Fonts: Big Shoulders Display (display, chunky condensed),
          Geologica (body, modern variable sans),
          IBM Plex Mono (labels)
   Vibe: meditative + futuristic, the still point inside the spin.
*/

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

:root {
    /* Charcoal-void base */
    --void-0:    #050507;
    --void-1:    #0d0d14;
    --void-2:    #13131e;
    --void-3:    #1a1a28;
    --void-4:    #22223a;
    --void-5:    #2e2e4a;

    /* Chartreuse primary */
    --char:       #a3e635;
    --char-2:     #84cc16;
    --char-3:     #bef264;
    --char-4:     #ecfccb;
    --char-dk:    #65a30d;
    --char-dp:    #4d7c0f;

    /* Soft-rose pop */
    --rose:       #fb7185;
    --rose-2:     #fda4af;
    --rose-dk:    #be123c;

    /* Pearl cream */
    --pearl:      #f5f3ed;
    --paper:      #e8e4d8;
    --sand:       #cbc7b6;

    /* Text */
    --white:     #ffffff;
    --text:      #c4c2b8;
    --muted:     #8a8678;
    --dim:       #5a564a;

    /* Lines */
    --line:        rgba(163, 230, 53, 0.10);
    --line-strong: rgba(163, 230, 53, 0.22);
    --line-char:   rgba(163, 230, 53, 0.32);
    --line-rose:   rgba(251, 113, 133, 0.28);

    /* Type */
    --display: 'Big Shoulders Display', 'Inter', system-ui, sans-serif;
    --sans:    'Geologica', 'Inter', system-ui, -apple-system, sans-serif;
    --mono:    'IBM Plex Mono', 'SF Mono', Menlo, monospace;

    --radius:    10px;
    --radius-lg: 16px;
    --radius-sm: 6px;
    --radius-pill: 100px;
}

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

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

/* Layer 1: deep void with a chartreuse bloom near horizon */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 40%, #1d2818 0%, #13131e 38%, #0d0d14 75%, #050507 100%);
}

/* Layer 2: minimalist starfield */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 16%, rgba(163, 230, 53, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 32%, rgba(251, 113, 133, 0.45) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 48% 10%, rgba(163, 230, 53, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 64% 26%, rgba(255, 255, 255, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 78% 14%, rgba(163, 230, 53, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 56%, rgba(251, 113, 133, 0.35) 50%, transparent 60%),
        radial-gradient(1px 1px at 22% 74%, rgba(163, 230, 53, 0.45) 50%, transparent 60%);
    opacity: 0.55;
    animation: starTwinkle 6s ease-in-out infinite alternate;
}
@keyframes starTwinkle { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.75; } }

/* Layer 3: ambient glow blooms */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 420px at 16% 24%, rgba(163, 230, 53, 0.10), transparent 70%),
        radial-gradient(ellipse 700px 380px at 84% 76%, rgba(251, 113, 133, 0.08), transparent 70%);
    animation: cloudDrift 38s ease-in-out infinite alternate;
}
@keyframes cloudDrift { 0% { transform: translate(-1.5%, 1%); } 100% { transform: translate(1.5%, -1%); } }

/* Layer 4: enso zen-circle on the horizon (slow rotating) */
.bg-enso {
    position: fixed;
    top: 36vh;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    z-index: -2;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid rgba(163, 230, 53, 0.18);
    box-shadow:
        inset 0 0 60px rgba(163, 230, 53, 0.06),
        0 0 80px rgba(163, 230, 53, 0.05);
    animation: ensoBreathe 12s ease-in-out infinite alternate, ensoSpin 240s linear infinite;
    /* Mask creates a gap so the ring isn't a full circle - like a real enso */
    mask-image: conic-gradient(from 30deg, transparent 0deg, black 8deg, black 340deg, transparent 350deg);
    -webkit-mask-image: conic-gradient(from 30deg, transparent 0deg, black 8deg, black 340deg, transparent 350deg);
}
@keyframes ensoBreathe {
    from { transform: translateX(-50%) scale(0.97); opacity: 0.7; }
    to   { transform: translateX(-50%) scale(1.03); opacity: 1; }
}
@keyframes ensoSpin {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(15deg); }
}

@media (max-width: 800px) {
    .bg-enso { width: 320px; height: 320px; top: 30vh; }
}

/* Layer 5: drifting zen glyphs */
.bg-drift {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.zen {
    position: absolute;
    bottom: -40px;
    line-height: 1;
    will-change: transform, opacity;
    animation-name: zenFloat;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

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

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--char-3);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 4px;
    margin-bottom: 26px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 16px;
    background: rgba(163, 230, 53, 0.06);
    border: 1px solid var(--line-char);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--char);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--char);
    animation: pulseDot 2.6s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.65); }
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 7.5vw, 5.6rem);
    margin: 0 0 22px;
    color: var(--pearl);
    letter-spacing: -0.01em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hero h1 .accent {
    color: var(--char);
    text-shadow: 0 0 22px rgba(163, 230, 53, 0.55);
    font-style: normal;
}

.subtitle {
    color: var(--paper);
    font-family: var(--sans);
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

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

.accent {
    color: var(--char);
    font-weight: 700;
    font-style: normal;
}

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

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse 600px 320px at 80% 50%, rgba(163, 230, 53, 0.10), transparent 70%),
        linear-gradient(135deg, var(--void-4) 0%, var(--void-2) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--char), var(--rose), transparent);
}

.casino-hero:hover {
    transform: translateY(-3px);
    border-color: var(--line-char);
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(163, 230, 53, 0.22);
}

.badge-recommended {
    position: absolute;
    top: 18px;
    left: 24px;
    background: linear-gradient(180deg, var(--char), var(--char-2) 60%, var(--char-dp));
    color: var(--void-0);
    font-family: var(--mono);
    font-weight: 600;
    padding: 5px 14px;
    font-size: 0.64rem;
    letter-spacing: 2.5px;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(163, 230, 53, 0.45);
    z-index: 3;
}

.hero-rank {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(163, 230, 53, 0.08);
    color: var(--char-3);
    width: auto;
    height: auto;
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    box-shadow: none;
    z-index: 2;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border: 1px solid var(--line-char);
    text-transform: uppercase;
}
.hero-rank::before { content: '#'; color: var(--char); margin-right: 1px; opacity: 0.85; }

.hero-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-strong);
    display: block;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(163, 230, 53, 0.15);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-logo:hover img { transform: scale(1.04); }

.hero-content { min-width: 0; padding-top: 8px; }

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.015em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hero-tagline {
    color: var(--char);
    font-family: var(--mono);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2.5px;
    font-size: 0.72rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-bonus {
    background: rgba(163, 230, 53, 0.05);
    border: 1px solid var(--line-char);
    border-left: 3px solid var(--char);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bonus-label {
    display: block;
    color: var(--char-3);
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.bonus-text {
    display: block;
    color: var(--pearl);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.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.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    font-weight: 500;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    background: transparent;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.btn-claim {
    width: 100%;
    padding: 16px 22px;
    color: var(--void-0);
    box-shadow: 0 8px 22px rgba(163, 230, 53, 0.45);
    font-weight: 700;
}

.btn-hero {
    padding: 20px 42px;
    font-size: 1.05rem;
    color: var(--void-0) !important;
    background: linear-gradient(180deg, var(--char-3), var(--char) 50%, var(--char-dk)) !important;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 14px 36px rgba(163, 230, 53, 0.5);
    border: none;
    letter-spacing: 0.07em;
    font-weight: 700;
}

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

@keyframes btnGlow {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 28px rgba(163, 230, 53, 0.45); filter: brightness(1); }
    50%      { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 14px 42px rgba(163, 230, 53, 0.85), 0 0 60px rgba(251, 113, 133, 0.35); filter: brightness(1.08); }
}

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

.section-title {
    text-align: center;
    color: var(--pearl);
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 28px 0 8px;
    letter-spacing: -0.015em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 32px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.alternatives {
    display: grid;
    gap: 18px;
    margin-bottom: 70px;
}

.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; } }

.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; } }

.casino-card {
    position: relative;
    padding: 26px 22px 22px;
    text-align: center;
    background: linear-gradient(180deg, var(--void-4) 0%, var(--void-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.04),
        0 8px 22px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--char), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.casino-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-char);
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.07),
        0 14px 30px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(163, 230, 53, 0.18);
}
.casino-card:hover::before { opacity: 1; }

.rank {
    position: absolute;
    top: 12px;
    left: 14px;
    background: var(--char);
    color: var(--void-0);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(163, 230, 53, 0.5);
    z-index: 2;
    letter-spacing: -0.02em;
}
.rank::before { content: ''; }

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 16px;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo:hover img { transform: scale(1.05); }

.casino-name {
    font-family: var(--display);
    font-size: 1.15rem;
    margin: 0 0 4px;
    color: var(--pearl);
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
}

/* Stars */
.rating { margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 1px; }
.star.full { color: var(--char); }
.star.half { color: var(--char); opacity: 0.55; }
.star.empty { color: rgba(163, 230, 53, 0.18); }

.rating-num {
    color: var(--pearl);
    font-size: 0.7rem;
    margin-left: 6px;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: 1px;
}

.bonus {
    background: rgba(163, 230, 53, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--char);
    padding: 10px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 74px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--sans);
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--paper);
    font-weight: 500;
}

/* ========================================================================== */
/* Site header                                                                */
/* ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 7, 0.78);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-bottom: 1px solid var(--line);
}

.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: 12px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.site-logo:hover { opacity: 0.9; transform: scale(1.02); }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--char);
    font-size: 1.5rem;
    line-height: 1;
    text-shadow: 0 0 14px rgba(163, 230, 53, 0.7), 0 0 28px rgba(163, 230, 53, 0.4);
    animation: ensoMarkBreathe 4s ease-in-out infinite alternate;
}
@keyframes ensoMarkBreathe {
    from { text-shadow: 0 0 10px rgba(163, 230, 53, 0.5); }
    to   { text-shadow: 0 0 18px rgba(163, 230, 53, 0.9), 0 0 32px rgba(163, 230, 53, 0.5); }
}

.logo-text {
    font-family: var(--display);
    color: var(--pearl);
    font-size: 1.6rem;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    font-weight: 700;
}

.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(--paper);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.site-nav a:hover {
    color: var(--char);
    background: rgba(163, 230, 53, 0.06);
}
.site-nav a.active {
    color: var(--void-0);
    background: linear-gradient(180deg, var(--char-3), var(--char-dk));
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(163, 230, 53, 0.42);
    font-weight: 700;
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 12px 18px; }
    .logo-text { font-size: 1.25rem; }
    .logo-mark { width: 28px; height: 28px; font-size: 1.2rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.72rem; letter-spacing: 1px; }
}

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

.games-section {
    background: linear-gradient(180deg, var(--void-4) 0%, var(--void-2) 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.45);
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--char), var(--rose), transparent);
}

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

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 26px 30px;
    background: linear-gradient(180deg, var(--void-3) 0%, var(--void-1) 100%);
    border: 2px solid var(--char);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(163, 230, 53, 0.35),
        0 12px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--void-0);
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    box-shadow: inset 0 0 14px rgba(0,0,0,0.7);
}

.reel {
    width: 88px;
    height: 264px;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--paper) 50%, var(--pearl) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.reel.spinning .cell { animation: reelBlur 0.06s linear infinite; }
@keyframes reelBlur { from { transform: translateY(-4px); filter: blur(0.6px); } to { transform: translateY(4px); filter: blur(0.6px); } }

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 700;
    color: var(--void-0);
    background: linear-gradient(180deg, var(--pearl) 0%, var(--paper) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    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, #ffffff 0%, #ecfccb 100%); box-shadow: inset 0 0 0 1px var(--char); }
.cell.win {
    background: linear-gradient(135deg, var(--char) 0%, var(--rose) 100%);
    color: var(--void-0);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(163, 230, 53, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.55);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}
@keyframes winPulse {
    from { box-shadow: 0 0 14px rgba(163, 230, 53, 0.5), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(251, 113, 133, 0.85), inset 0 0 14px rgba(255,255,255,0.85); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--char);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--char);
    animation: paylinePulse 1.4s ease-in-out infinite;
}
.payline-left  { left: 6px; }
.payline-right { right: 6px; }
@keyframes paylinePulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.bookofra-result {
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--pearl);
    margin-bottom: 22px;
    min-height: 30px;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
}

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

.btn-bet {
    background: linear-gradient(180deg, var(--char-3), var(--char) 50%, var(--char-dk));
    color: var(--void-0);
    padding: 17px 50px;
    font-family: var(--display);
    font-size: 1.05rem;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 12px 30px rgba(163, 230, 53, 0.42);
    min-width: 240px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
}
.btn-bet:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(0); }
.btn-bet:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.balance {
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.balance span {
    color: var(--char);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-left: 6px;
}

.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--char-3);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin-bottom: 12px;
    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(--paper);
    border: 1px solid var(--line);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}
.slot-amount-btn:hover { background: rgba(163, 230, 53, 0.1); border-color: var(--line-char); color: var(--char); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--char-3), var(--char-dk));
    color: var(--void-0);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(163, 230, 53, 0.4);
}

.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(5, 5, 7, 0.55);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.paytable-title { color: var(--char-3); font-family: var(--mono); font-weight: 500; margin-bottom: 14px; text-align: center; letter-spacing: 2.5px; font-size: 0.7rem; text-transform: uppercase; }
.paytable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; font-size: 0.92rem; color: var(--paper); font-family: var(--sans); font-weight: 500; }
.paytable-grid span { background: rgba(163, 230, 53, 0.04); padding: 9px 10px; border-radius: var(--radius-sm); text-align: center; border: 1px solid var(--line); }
.paytable-grid b { color: var(--char); font-family: var(--display); font-size: 1.1rem; margin-right: 4px; font-weight: 700; }
.paytable-note { text-align: center; color: var(--muted); font-size: 0.85rem; font-family: var(--sans); margin-top: 12px; font-weight: 500; }

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

/* ========================================================================== */
/* Win CTA                                                                    */
/* ========================================================================== */

.win-cta {
    margin-top: 36px;
    text-align: center;
    padding: 38px 26px;
    border: 1px solid var(--char);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(163, 230, 53, 0.16), transparent 70%),
        var(--void-3);
    box-shadow: 0 0 50px rgba(163, 230, 53, 0.28);
    position: relative;
    overflow: hidden;
}
.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(--pearl);
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}
.win-cta-text em { color: var(--char); font-style: normal; }
.win-cta-sub { margin-top: 16px; color: var(--paper); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; }

.btn-win-real {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--char-3), var(--char) 50%, var(--char-dk));
    color: var(--void-0);
    padding: 20px 50px;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 14px 36px rgba(163, 230, 53, 0.5);
}
.flashing-green { animation: btnGlow 2s ease-in-out infinite; }
@media (max-width: 600px) { .btn-win-real { padding: 16px 28px; font-size: 0.95rem; } }

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

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

.rec-card {
    background:
        radial-gradient(ellipse 500px 280px at 78% 50%, rgba(163, 230, 53, 0.10), transparent 70%),
        linear-gradient(135deg, var(--void-4), var(--void-2));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}
.rec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--char), var(--rose), transparent);
}
.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-char);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.rec-info { flex: 1 1 240px; min-width: 200px; }
.rec-info h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    color: var(--pearl);
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.rec-bonus { color: var(--paper); font-family: var(--sans); font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.btn-play {
    background: linear-gradient(180deg, var(--char-3), var(--char) 50%, var(--char-dk)) !important;
    color: var(--void-0) !important;
    font-family: var(--display);
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 12px 28px rgba(163, 230, 53, 0.4);
    letter-spacing: 0.06em;
    font-weight: 700;
}

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

.loading-state { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 60px 20px; font-size: 0.8rem; letter-spacing: 2.5px; font-family: var(--mono); text-transform: uppercase; font-weight: 500; }
.load-error { text-align: center; color: var(--rose); padding: 24px; font-family: var(--mono); letter-spacing: 1px; font-size: 0.85rem; }

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

.brand-link { text-decoration: none; color: inherit; display: inline-block; transition: transform 0.25s, color 0.25s; cursor: pointer; }
.brand-link:hover { transform: scale(1.02); }
.casino-name a.brand-link:hover, .hero-name a.brand-link:hover, .rec-info h3 a.brand-link:hover { color: var(--char); }
a.brand-link.logo, a.brand-link.hero-logo { display: block; }

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

.site-footer { background: var(--void-0); border-top: 1px solid var(--line); padding: 56px 24px 36px; margin-top: 80px; position: relative; z-index: 2; }
.site-footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer-brand {
    font-family: var(--display);
    color: var(--pearl);
    font-size: 1.75rem;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 700;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 22px; }
.footer-nav a { color: var(--paper); text-decoration: none; font-family: var(--display); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover { color: var(--char); }
.footer-disclaimer { color: var(--dim); font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; font-family: var(--mono); margin: 0; font-weight: 500; }
.footer { display: none; }

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

.article-body {
    background: linear-gradient(180deg, var(--void-4), var(--void-2));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.75;
    box-shadow:
        inset 0 1px 0 rgba(163, 230, 53, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.45);
    position: relative;
}
.article-body::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 2px; background: linear-gradient(90deg, transparent, var(--char), var(--rose), transparent); }

.article-body h2 {
    font-family: var(--display);
    color: var(--pearl);
    margin: 36px 0 14px;
    letter-spacing: -0.02em;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body em { color: var(--char); font-style: normal; font-weight: 600; }
.article-body a { color: var(--char); text-decoration: underline; text-decoration-color: rgba(163, 230, 53, 0.4); text-underline-offset: 4px; transition: text-decoration-color 0.2s; font-weight: 600; }
.article-body a:hover { text-decoration-color: var(--char); }

.article-body .lead {
    font-family: var(--display);
    font-size: 1.35rem;
    color: var(--pearl);
    font-weight: 600;
    margin-bottom: 26px;
    padding-left: 14px;
    border-left: 3px solid var(--char);
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: rgba(163, 230, 53, 0.06);
    border: 1px solid var(--line-char);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.55;
}

.step-list, .check-list { margin: 14px 0 22px; padding-left: 0; counter-reset: step; }
.step-list { list-style: none; }
.step-list li { margin-bottom: 14px; padding-left: 44px; position: relative; counter-increment: step; }
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--char-3), var(--char-dk));
    color: var(--void-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(163, 230, 53, 0.45);
}
.check-list { list-style: none; padding-left: 0; }
.check-list li { margin-bottom: 12px; padding-left: 28px; position: relative; }
.check-list li::before {
    content: '◯';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--char);
    font-family: var(--sans);
    font-size: 1rem;
}

.article-meta { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; background: rgba(5, 5, 7, 0.55); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 32px; }
.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(--char); line-height: 1; text-shadow: 0 0 18px rgba(163, 230, 53, 0.55); font-weight: 700; letter-spacing: -0.04em; }
.big-rating-out { display: block; color: var(--muted); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 2px; margin-top: 6px; text-transform: uppercase; font-weight: 500; }
.rating-stars { display: block; margin-top: 10px; font-size: 1rem; letter-spacing: 1px; }

.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(--muted); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.article-facts dd { margin: 0; color: var(--white); font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; text-transform: uppercase; }

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

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(163, 230, 53, 0.18), transparent 70%),
        var(--void-3);
    border: 1px solid var(--char);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 50px rgba(163, 230, 53, 0.28);
    position: relative;
    overflow: hidden;
}
.bonus-headline {
    font-family: var(--display);
    background: linear-gradient(120deg, var(--char), var(--rose) 50%, var(--char));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}
.bonus-sub { margin-top: 12px; color: var(--pearl); font-family: var(--sans); font-size: 1.18rem; font-weight: 500; }
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 7px 18px;
    background: rgba(163, 230, 53, 0.1);
    color: var(--char);
    border: 1px solid var(--char);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.top-alternatives { margin: 36px auto 80px; }

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

.play-now-cta {
    margin: 36px auto;
    max-width: 880px;
    padding: 32px 32px;
    text-align: center;
    border: 1px solid var(--line-char);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(163, 230, 53, 0.1), transparent 70%),
        var(--void-3);
    box-shadow: 0 0 30px rgba(163, 230, 53, 0.22);
    position: relative;
    overflow: hidden;
}
.play-now-text {
    color: var(--pearl);
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    line-height: 1.1;
    text-transform: uppercase;
}
.play-now-text em { color: var(--char); font-style: normal; }
.btn-inline-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--char-3), var(--char) 50%, var(--char-dk));
    color: var(--void-0);
    padding: 18px 38px;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 14px 32px rgba(163, 230, 53, 0.4);
}
.flashing-orange { animation: btnGlow 2s ease-in-out infinite; }
@media (max-width: 600px) { .btn-inline-play { padding: 14px 26px; font-size: 0.92rem; } }

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

::selection { background: var(--char); color: var(--void-0); }
::-moz-selection { background: var(--char); color: var(--void-0); }
