/* /iris - Sweet candy-pop casino lobby (matches screenshot)
   Pure black + vivid purple + coral/red + candy yellow accents.
   Fonts: Fredoka (display - rounded chunky), Mulish (body), JetBrains Mono (labels)
   Vibe: candy-shop x modern crypto-casino, playful + polished.
*/

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

:root {
    /* Pure black surface */
    --bg-0:      #000000;
    --bg-1:      #0a0a0a;
    --bg-2:      #141414;
    --bg-3:      #1a1a1a;
    --bg-4:      #222222;
    --bg-5:      #2c2c2c;

    /* Candy purple primary */
    --purple:    #8a3df0;
    --purple-2:  #a855f7;
    --purple-3:  #c084fc;
    --purple-dk: #7c3aed;
    --purple-dp: #5b21b6;

    /* Coral / sign-up red */
    --coral:     #ff5b3e;
    --coral-2:   #ff7a5c;
    --coral-3:   #ff9577;
    --coral-dk:  #c41e3a;

    /* Candy yellow (welcome-pack headline) */
    --yellow:    #ffd86b;
    --yellow-2:  #ffe89c;
    --yellow-dk: #c89a08;
    --gold:      #ffa940;

    /* Soft mint accent */
    --mint:      #4ade80;

    /* Text */
    --white:     #ffffff;
    --grey-0:    #f5f5f5;
    --grey-1:    #d4d4d4;
    --text:      #b8b8b8;
    --muted:     #7a7a7a;
    --dim:       #555555;

    /* Lines */
    --line:        rgba(255, 255, 255, 0.06);
    --line-strong: rgba(255, 255, 255, 0.12);
    --line-purple: rgba(168, 85, 247, 0.32);
    --line-coral:  rgba(255, 91, 62, 0.32);

    /* Type */
    --display: 'Fredoka', 'Inter', system-ui, sans-serif;
    --sans:    'Mulish', 'Inter', system-ui, -apple-system, sans-serif;
    --mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

    --radius:    14px;
    --radius-lg: 22px;
    --radius-sm: 8px;
    --radius-pill: 100px;
}

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

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

/* Layer 1: pure black with a soft purple top-bloom */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 0%, #1f0a3a 0%, #0a0a0a 45%, #000000 100%);
}

/* Layer 2: subtle starfield in candy hues */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(168, 85, 247, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 42%, rgba(255, 91, 62, 0.55) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 45% 15%, rgba(255, 216, 107, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 62% 35%, rgba(168, 85, 247, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 78% 18%, rgba(255, 91, 62, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 60%, rgba(255, 255, 255, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 22% 80%, rgba(168, 85, 247, 0.5) 50%, transparent 60%);
    opacity: 0.5;
}

/* Layer 3: soft candy glow blooms */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 420px at 16% 20%, rgba(168, 85, 247, 0.16), transparent 70%),
        radial-gradient(ellipse 700px 380px at 84% 80%, rgba(255, 91, 62, 0.12), transparent 70%),
        radial-gradient(ellipse 500px 280px at 50% 50%, rgba(255, 216, 107, 0.06), transparent 70%);
    animation: cloudDrift 32s ease-in-out infinite alternate;
}

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

/* Layer 4: floating candy bubbles drifting upward */
.bg-bubbles {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    will-change: transform, opacity;
    animation-name: bubbleRise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.bubble::after {
    /* Highlight sheen on each bubble */
    content: '';
    position: absolute;
    top: 14%;
    left: 18%;
    width: 28%;
    height: 28%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.55), transparent 60%);
    pointer-events: none;
}

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

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 18px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--line-purple);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    text-shadow: 0 0 14px rgba(255, 216, 107, 0.5);
}
.hero-eyebrow::before {
    content: '✦';
    color: var(--purple-2);
    font-size: 0.9rem;
    line-height: 1;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 6.5vw, 4.8rem);
    margin: 0 0 22px;
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.05;
}

.hero h1 .accent {
    color: var(--purple-2);
    text-shadow: 0 0 18px rgba(168, 85, 247, 0.55);
    font-style: normal;
}

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

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

.accent {
    color: var(--purple-2);
    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(168, 85, 247, 0.16), transparent 70%),
        linear-gradient(135deg, var(--bg-3) 0%, var(--bg-1) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.6);
    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(--purple-2), var(--coral), var(--yellow), transparent);
}

.casino-hero:hover {
    transform: translateY(-3px);
    border-color: var(--line-purple);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 70px rgba(0, 0, 0, 0.65),
        0 0 70px rgba(168, 85, 247, 0.22);
}

.badge-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--coral-2), var(--coral) 60%, var(--coral-dk));
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    padding: 7px 22px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    border-radius: var(--radius-pill);
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(255, 91, 62, 0.5);
    z-index: 3;
}

.hero-rank {
    position: absolute;
    top: 18px;
    right: 22px;
    background: var(--purple);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 2;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.45);
    border: 2px solid var(--white);
}

.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.65),
        0 0 30px rgba(168, 85, 247, 0.18);
    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; position: relative; z-index: 2; }

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

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

.hero-bonus {
    background: rgba(168, 85, 247, 0.07);
    border: 1px solid var(--line-purple);
    border-left: 3px solid var(--purple-2);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bonus-label {
    display: block;
    color: var(--purple-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(--white);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

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

.hero-cta { text-align: center; position: relative; z-index: 2; }

.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: 48px 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.05em;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.92rem;
    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(--white);
    box-shadow: 0 8px 22px rgba(168, 85, 247, 0.45);
    font-weight: 700;
}

.btn-hero {
    padding: 20px 40px;
    font-size: 1rem;
    color: var(--white) !important;
    background: linear-gradient(180deg, var(--purple-2), var(--purple) 60%, var(--purple-dk)) !important;
    white-space: nowrap;
    box-shadow: 0 14px 36px rgba(168, 85, 247, 0.5);
    border: none;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.btn-cta {
    background: linear-gradient(180deg, var(--purple-2), var(--purple) 60%, var(--purple-dk));
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 24px rgba(168, 85, 247, 0.42);
}

.btn-ghost {
    background: transparent;
    color: var(--grey-1) !important;
    border: 1px solid var(--line-strong);
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--purple-2);
    color: var(--purple-2) !important;
}

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

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 10px 28px rgba(168, 85, 247, 0.42); filter: brightness(1); }
    50%      { box-shadow: 0 14px 42px rgba(168, 85, 247, 0.8), 0 0 60px rgba(255, 91, 62, 0.3); filter: brightness(1.08); }
}

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

.section-title {
    text-align: center;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    margin: 28px 0 8px;
    letter-spacing: -0.025em;
    font-weight: 700;
    line-height: 1.05;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 36px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    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(--bg-3) 0%, var(--bg-1) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 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(--purple-2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.casino-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-purple);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 30px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(168, 85, 247, 0.22);
}
.casino-card:hover::before { opacity: 1; }

/* Rank pills - purple solid circles */
.rank {
    position: absolute;
    top: 10px;
    left: 12px;
    background: var(--purple);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    box-shadow: 0 3px 10px rgba(168, 85, 247, 0.45);
    z-index: 2;
    letter-spacing: -0.02em;
}
.rank::before { content: ''; }

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 14px auto 14px;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
    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.05rem;
    margin: 0 0 4px;
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 700;
}

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

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

.bonus {
    background: rgba(168, 85, 247, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--purple-2);
    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(--grey-1);
    font-weight: 500;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    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;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.site-logo:hover { opacity: 0.9; transform: scale(1.02); }

/* Logo wordmark - "iris" with the flower mark above the first i */
.logo-text {
    display: inline-flex;
    align-items: flex-end;
    gap: 0;
    font-family: var(--display);
    color: var(--white);
    font-size: 1.85rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    line-height: 1;
    font-weight: 600;
}
.lg-i, .lg-l { display: inline-block; line-height: 1; position: relative; }

/* The iris-flower mark above the first 'i' */
.lg-iris {
    position: absolute;
    top: -0.55em;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--coral-2), var(--coral) 70%, var(--coral-dk));
    box-shadow: 0 0 10px rgba(255, 91, 62, 0.55);
}
.lg-iris::before, .lg-iris::after {
    /* Two stylized petals flanking the dot */
    content: '';
    position: absolute;
    top: 50%;
    width: 0.45em;
    height: 0.28em;
    background: radial-gradient(ellipse at 50% 50%, var(--purple-2), var(--purple-dk));
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}
.lg-iris::before { right: 80%; transform: translateY(-60%) rotate(-30deg); }
.lg-iris::after  { left:  80%; transform: translateY(-60%) rotate(30deg); }

.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(--grey-1);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    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(--white);
    background: rgba(255, 255, 255, 0.05);
}
.site-nav a.active {
    color: var(--white);
    background: linear-gradient(180deg, var(--purple-2), var(--purple-dk));
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.45);
    font-weight: 700;
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 12px 18px; }
    .logo-text { font-size: 1.55rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.78rem; }
}

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

.games-section {
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-1) 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(255, 255, 255, 0.05),
        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(--purple-2), var(--coral), var(--yellow), 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(--bg-3) 0%, var(--bg-0) 100%);
    border: 2px solid var(--purple-2);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(168, 85, 247, 0.4),
        0 12px 30px rgba(0, 0, 0, 0.55);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--bg-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, #f8fafc 0%, #e2e8f0 50%, #f8fafc 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(--bg-0);
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 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%, #f0d9ff 100%); box-shadow: inset 0 0 0 1px var(--purple-2); }
.cell.win {
    background: linear-gradient(135deg, var(--purple-2) 0%, var(--coral) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.65), inset 0 0 8px rgba(255, 255, 255, 0.5);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}
@keyframes winPulse {
    from { box-shadow: 0 0 14px rgba(168, 85, 247, 0.5), inset 0 0 8px  rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(255, 91, 62, 0.85), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple-2);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--purple-2);
    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(--white);
    margin-bottom: 22px;
    min-height: 30px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

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

.btn-bet {
    background: linear-gradient(180deg, var(--purple-2), var(--purple) 60%, var(--purple-dk));
    color: var(--white);
    padding: 18px 50px;
    font-family: var(--display);
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 28px rgba(168, 85, 247, 0.45);
    min-width: 240px;
    letter-spacing: 0.05em;
    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(--grey-1);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.balance span {
    color: var(--yellow);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.42rem;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-left: 6px;
}

.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--muted);
    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(--grey-1);
    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(168, 85, 247, 0.1); border-color: var(--line-purple); color: var(--purple-2); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--purple-2), var(--purple-dk));
    color: var(--white);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.45);
}

.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.paytable-title {
    color: var(--muted);
    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(--grey-1);
    font-family: var(--sans);
    font-weight: 500;
}
.paytable-grid span {
    background: rgba(168, 85, 247, 0.04);
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--line);
}
.paytable-grid b {
    color: var(--yellow);
    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(--purple-2);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.16), transparent 70%),
        var(--bg-3);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.25);
    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(--white);
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.win-cta-text em { color: var(--yellow); font-style: normal; }
.win-cta-sub {
    margin-top: 16px;
    color: var(--muted);
    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(--coral-2), var(--coral) 60%, var(--coral-dk));
    color: var(--white);
    padding: 20px 50px;
    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: 0 14px 36px rgba(255, 91, 62, 0.5);
}
.flashing-green {
    animation: coralGlow 2s ease-in-out infinite;
}
@keyframes coralGlow {
    0%, 100% { box-shadow: 0 10px 28px rgba(255, 91, 62, 0.45); filter: brightness(1); }
    50%      { box-shadow: 0 14px 42px rgba(255, 91, 62, 0.8), 0 0 60px rgba(255, 216, 107, 0.3); filter: brightness(1.08); }
}
@media (max-width: 600px) { .btn-win-real { padding: 16px 28px; font-size: 0.9rem; } }

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

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

.rec-card {
    background:
        radial-gradient(ellipse 500px 280px at 78% 50%, rgba(168, 85, 247, 0.14), transparent 70%),
        linear-gradient(135deg, var(--bg-3), var(--bg-1));
    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(255, 255, 255, 0.05),
        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(--purple-2), var(--coral), transparent);
}

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-purple);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}
.rec-info { flex: 1 1 240px; min-width: 200px; }
.rec-info h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    color: var(--white);
    font-size: 1.85rem;
    letter-spacing: -0.025em;
    font-weight: 700;
    line-height: 1.05;
}
.rec-bonus {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}
.btn-play {
    background: linear-gradient(180deg, var(--coral-2), var(--coral) 60%, var(--coral-dk)) !important;
    color: var(--white) !important;
    font-family: var(--display);
    font-size: 0.95rem;
    padding: 16px 32px;
    border: none;
    box-shadow: 0 12px 28px rgba(255, 91, 62, 0.4);
    letter-spacing: 0.04em;
    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: #ff5a5f; 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(--purple-2); }
a.brand-link.logo, a.brand-link.hero-logo { display: block; }

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

.site-footer {
    background: var(--bg-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(--white);
    font-size: 1.7rem;
    letter-spacing: -0.025em;
    text-transform: lowercase;
    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(--muted);
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--purple-2); }
.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(--bg-3), var(--bg-1));
    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(255, 255, 255, 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(--purple-2), var(--coral), transparent);
}
.article-body h2 {
    font-family: var(--display);
    color: var(--white);
    margin: 36px 0 14px;
    letter-spacing: -0.025em;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}
.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(--coral); font-style: normal; font-weight: 600; }
.article-body a {
    color: var(--purple-2);
    text-decoration: underline;
    text-decoration-color: rgba(168, 85, 247, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
    font-weight: 600;
}
.article-body a:hover { text-decoration-color: var(--purple-2); }

.article-body .lead {
    font-family: var(--display);
    font-size: 1.32rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 26px;
    padding-left: 14px;
    border-left: 3px solid var(--purple-2);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid var(--line-purple);
    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(--purple-2), var(--purple-dk));
    color: var(--white);
    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(168, 85, 247, 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: 0;
    color: var(--coral);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 1rem;
}

.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(0, 0, 0, 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.2rem;
    color: var(--purple-2);
    line-height: 1;
    text-shadow: 0 0 18px rgba(168, 85, 247, 0.5);
    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: 1rem; letter-spacing: -0.015em; }

@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(168, 85, 247, 0.16), transparent 70%),
        var(--bg-3);
    border: 1px solid var(--purple-2);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.22);
    position: relative;
    overflow: hidden;
}
.bonus-headline {
    font-family: var(--display);
    color: var(--yellow);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-shadow: 0 0 22px rgba(255, 216, 107, 0.4);
}
.bonus-sub { margin-top: 12px; color: var(--white); font-family: var(--sans); font-size: 1.18rem; font-weight: 600; }
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 7px 18px;
    background: rgba(168, 85, 247, 0.12);
    color: var(--purple-2);
    border: 1px solid var(--purple-2);
    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-coral);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 91, 62, 0.1), transparent 70%),
        var(--bg-3);
    box-shadow: 0 0 30px rgba(255, 91, 62, 0.18);
    position: relative;
    overflow: hidden;
}
.play-now-text {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    line-height: 1.2;
}
.play-now-text em { color: var(--coral); font-style: normal; }
.btn-inline-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--coral-2), var(--coral) 60%, var(--coral-dk));
    color: var(--white);
    padding: 18px 38px;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(255, 91, 62, 0.45);
}
.flashing-orange { animation: coralGlow 2s ease-in-out infinite; }
@media (max-width: 600px) { .btn-inline-play { padding: 14px 26px; font-size: 0.88rem; } }

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

::selection { background: var(--purple-2); color: var(--white); }
::-moz-selection { background: var(--purple-2); color: var(--white); }

/* ========================================================================== */
/* REVIEW PAGE - Dossier hero                                                 */
/* ========================================================================== */

.dossier-hero {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 28px;
    align-items: center;
    padding: 36px 36px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse 600px 320px at 80% 50%, rgba(168, 85, 247, 0.16), transparent 70%),
        linear-gradient(135deg, var(--bg-3) 0%, var(--bg-1) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.5);
    margin: 12px 0 36px;
    position: relative;
    overflow: hidden;
}

.dossier-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-2), var(--coral), var(--yellow));
}

.dossier-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-3);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}
.dossier-eyebrow .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--purple-2);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--purple-2);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}

.dossier-title {
    font-family: var(--display);
    color: var(--white);
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    margin: 0 0 12px;
    letter-spacing: -0.025em;
    font-weight: 700;
    line-height: 1.02;
}

.dossier-deck {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 20px;
    max-width: 580px;
}

.dossier-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(168, 85, 247, 0.07);
    border: 1px solid var(--line-purple);
    border-left: 3px solid var(--purple-2);
    padding: 12px 18px;
    margin-bottom: 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.dossier-bonus-tag {
    color: var(--purple-3);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.dossier-bonus-amount {
    color: var(--white);
    font-family: var(--display);
    font-size: 1.22rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.dossier-bonus-kind {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.dossier-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.dossier-hero-right {
    text-align: center;
}

.dossier-score {
    padding: 18px 12px;
    border: 1px solid var(--line-purple);
    border-radius: var(--radius);
    background: rgba(168, 85, 247, 0.05);
}
.score-num {
    font-family: var(--display);
    color: var(--purple-2);
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(168, 85, 247, 0.55);
}
.score-out {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}
.score-stars {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
}
.score-label {
    color: var(--grey-1);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

@media (max-width: 800px) {
    .dossier-hero { grid-template-columns: 1fr; padding: 28px 22px; }
    .dossier-hero-right { order: -1; }
}

/* ========================================================================== */
/* Pros / Our take                                                            */
/* ========================================================================== */

.proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 50px;
}
@media (max-width: 700px) { .proscons { grid-template-columns: 1fr; } }

.proscons-col {
    background: linear-gradient(180deg, var(--bg-3), var(--bg-1));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 26px 26px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.proscons-pros::before, .proscons-pick::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
}
.proscons-pros::before { background: var(--purple-2); }
.proscons-pick::before { background: var(--coral); }

.proscons-h {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--white);
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    font-weight: 700;
}
.proscons-pros .proscons-h { color: var(--purple-2); }
.proscons-pick .proscons-h { color: var(--coral); }

.proscons-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.proscons-col li {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 0.98rem;
    line-height: 1.5;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--line);
    position: relative;
    font-weight: 500;
}
.proscons-col li:last-child { border-bottom: none; }

.proscons-pros li::before {
    content: '+';
    position: absolute;
    left: 4px;
    top: 9px;
    color: var(--purple-2);
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.pick-line {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 14px;
    font-weight: 500;
}
.pick-line strong { color: var(--white); font-weight: 700; }
.pick-tag {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
}

/* ========================================================================== */
/* Tabbed details                                                             */
/* ========================================================================== */

.dossier-tabs {
    margin-bottom: 60px;
}

.tab-input { display: none; }

.tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    justify-content: center;
}
.tab-pill {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(168, 85, 247, 0.05);
    color: var(--grey-1);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.tab-pill:hover {
    border-color: var(--purple-2);
    color: var(--purple-2);
    background: rgba(168, 85, 247, 0.1);
}

#tab-general:checked  ~ .tab-bar [for=tab-general],
#tab-payments:checked ~ .tab-bar [for=tab-payments],
#tab-games:checked    ~ .tab-bar [for=tab-games],
#tab-support:checked  ~ .tab-bar [for=tab-support] {
    background: linear-gradient(180deg, var(--purple-2), var(--purple-dk));
    color: var(--white);
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.tab-panel { display: none; }

#tab-general:checked  ~ .tab-general,
#tab-payments:checked ~ .tab-payments,
#tab-games:checked    ~ .tab-games,
#tab-support:checked  ~ .tab-support {
    display: block;
}

.tab-panel {
    background: linear-gradient(180deg, var(--bg-3), var(--bg-1));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 28px rgba(0, 0, 0, 0.4);
}

.kv {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
}
@media (max-width: 700px) { .kv { grid-template-columns: 1fr; } }

.kv > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px dotted var(--line);
}
.kv dt {
    color: var(--purple-3);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.kv dd {
    margin: 0;
    color: var(--white);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.98rem;
    line-height: 1.5;
}
.kv dd a { color: var(--purple-2); text-decoration: underline; text-decoration-color: rgba(168, 85, 247, 0.4); }

.kv-h {
    font-family: var(--display);
    color: var(--white);
    font-size: 1rem;
    margin: 24px 0 12px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

.kv-note {
    margin: 18px 0 0;
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 0.96rem;
    line-height: 1.55;
    padding: 14px 18px;
    background: rgba(168, 85, 247, 0.05);
    border-left: 3px solid var(--purple-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 400;
}
.kv-note strong { color: var(--white); font-weight: 700; }

.dossier-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 4px;
    font-family: var(--sans);
}
.dossier-table th {
    text-align: left;
    color: var(--purple-3);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line-strong);
    background: rgba(168, 85, 247, 0.04);
}
.dossier-table td {
    color: var(--grey-1);
    font-size: 0.96rem;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
}
.dossier-table td:first-child {
    color: var(--white);
    font-weight: 600;
}
.dossier-table tr:last-child td { border-bottom: none; }

.provider-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.provider-chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(168, 85, 247, 0.04);
    color: var(--grey-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.provider-chip:hover {
    border-color: var(--purple-2);
    color: var(--purple-2);
    background: rgba(168, 85, 247, 0.1);
}
