/* /golazzo - Sleek navy casino lobby (matches screenshot)
   Deep midnight navy + electric cyan + pink ribbon + brass + violet hint.
   Fonts: Archivo Black (chunky display), Archivo (body 300-800), JetBrains Mono (labels)
   Vibe: modern crypto-casino lobby, sport-casino crossover, stadium-floodlight clean.
*/

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

:root {
    /* Navy base */
    --navy-0:      #06101c;
    --navy-1:      #0a1830;
    --navy-2:      #0e1f3f;
    --navy-3:      #11233f;
    --navy-4:      #15294a;
    --navy-5:      #1c3258;
    --slate:       #233a62;

    /* Accents */
    --cyan:        #3fd4f0;
    --cyan-2:      #22b8e0;
    --cyan-dk:     #1186b0;
    --pink:        #ff3d8f;
    --pink-dk:     #c41e6f;
    --brass:       #d4a44a;
    --brass-br:    #f0c75e;
    --brass-dk:    #8a6508;
    --violet:      #5e3ad8;
    --green:       #2dd360;

    /* Text */
    --white:       #ffffff;
    --cream:       #e8eef8;
    --text:        #c4d0e4;
    --muted:       #8090aa;
    --dim:         #5c6c88;

    /* Lines */
    --line:        rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --line-cyan:   rgba(63, 212, 240, 0.28);

    /* Type */
    --display: 'Archivo Black', 'Inter', system-ui, sans-serif;
    --sans:    'Archivo', 'Inter', system-ui, -apple-system, sans-serif;
    --mono:    'JetBrains 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(--navy-0);
    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 navy with cyan bloom at top */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 0%, #173a6e 0%, #0a1830 40%, #06101c 80%, #03070f 100%);
}

/* Layer 2: very subtle starfield */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(63, 212, 240, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 42%, rgba(255, 255, 255, 0.4) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 45% 15%, rgba(63, 212, 240, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 62% 35%, rgba(255, 61, 143, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 78% 18%, rgba(63, 212, 240, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 60%, rgba(212, 164, 74, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 22% 80%, rgba(63, 212, 240, 0.5) 50%, transparent 60%);
    opacity: 0.6;
}

/* Layer 3: side color glows */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 700px 380px at 10% 70%, rgba(63, 212, 240, 0.10), transparent 70%),
        radial-gradient(ellipse 700px 380px at 90% 30%, rgba(255, 61, 143, 0.08), transparent 70%),
        radial-gradient(ellipse 500px 280px at 50% 100%, rgba(94, 58, 216, 0.10), transparent 70%);
}

/* Layer 4: vertical pillar grain (the screenshot's stadium-floodlight texture) */
.bg-pillars {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 119px,
            rgba(63, 212, 240, 0.025) 119px,
            rgba(63, 212, 240, 0.025) 120px,
            transparent 120px,
            transparent 240px
        );
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Layer 5: tiny sparkle particles drifting upward */
.bg-spark {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    animation-name: sparkRise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

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

/* ========================================================================== */
/* Hero (page banner)                                                         */
/* ========================================================================== */

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

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

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

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    margin: 0 0 22px;
    color: var(--white);
    letter-spacing: -0.03em;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
}

.hero h1 .accent {
    color: var(--cyan);
    font-style: normal;
}

.subtitle {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 1.1rem;
    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(--cyan);
    font-weight: 700;
    font-style: normal;
}

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

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-1) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(63, 212, 240, 0.08);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

/* Cyan top-edge accent */
.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
}

.casino-hero:hover {
    transform: translateY(-3px);
    border-color: var(--line-cyan);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(63, 212, 240, 0.2);
}

.badge-recommended {
    position: absolute;
    top: 16px;
    left: 24px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dk));
    color: var(--white);
    font-family: var(--mono);
    font-weight: 700;
    padding: 5px 12px;
    font-size: 0.62rem;
    letter-spacing: 2px;
    border-radius: 3px;
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 61, 143, 0.45);
    z-index: 3;
}

.hero-rank {
    position: absolute;
    top: 14px;
    right: 20px;
    background: rgba(63, 212, 240, 0.1);
    color: var(--cyan);
    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 11px;
    border: 1px solid var(--line-cyan);
    text-transform: uppercase;
}
.hero-rank::before {
    content: '#';
    color: var(--cyan);
    margin-right: 1px;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--line-cyan);
    display: block;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(63, 212, 240, 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; }

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

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

.hero-bonus {
    background: rgba(63, 212, 240, 0.05);
    border: 1px solid var(--line-cyan);
    border-left: 3px solid var(--cyan);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.bonus-text {
    display: block;
    color: var(--white);
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

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

.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;
    }
    .badge-recommended { left: 50%; transform: translateX(-50%); top: 14px; }
    .hero-rank { right: 16px; top: 14px; }
    .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 26px;
    font-family: var(--sans);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.88rem;
    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: 14px 18px;
    color: var(--navy-0);
    box-shadow: 0 6px 18px rgba(63, 212, 240, 0.35);
    font-weight: 800;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 0.95rem;
    color: var(--navy-0) !important;
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2) 60%, var(--cyan-dk)) !important;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 rgba(17, 134, 176, 0.5),
        0 12px 28px rgba(63, 212, 240, 0.4);
    border: none;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.btn-cyan {
    color: var(--navy-0) !important;
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2) 60%, var(--cyan-dk));
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 rgba(17, 134, 176, 0.5),
        0 10px 24px rgba(63, 212, 240, 0.35);
}

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

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

@keyframes btnPulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            0 6px 0 rgba(17, 134, 176, 0.5),
            0 10px 24px rgba(63, 212, 240, 0.35);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.35),
            0 6px 0 rgba(17, 134, 176, 0.5),
            0 14px 36px rgba(63, 212, 240, 0.75);
        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: 24px 0 8px;
    letter-spacing: -0.03em;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 32px;
    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 (6 brands: 1 hero + 5 cards)                             */
/* ========================================================================== */

.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 20px 22px;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-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.35);
    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(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.casino-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-cyan);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 30px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(63, 212, 240, 0.2);
}
.casino-card:hover::before { opacity: 1; }

.rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dk));
    color: var(--white);
    width: auto;
    height: auto;
    border-radius: 3px;
    font-family: var(--mono);
    font-weight: 700;
    display: block;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    box-shadow: 0 3px 10px rgba(255, 61, 143, 0.4);
    text-transform: uppercase;
    z-index: 2;
}
.rank::before {
    content: '#';
    margin-right: 1px;
    opacity: 0.85;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 10px 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.04); }

.casino-name {
    font-family: var(--display);
    font-size: 1.05rem;
    margin: 0 0 12px;
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 400;
    text-transform: uppercase;
}

/* Stars */
.rating { margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 1px; }
.star.full { color: var(--brass-br); text-shadow: 0 0 6px rgba(240, 199, 94, 0.5); }
.star.half { color: var(--brass-br); opacity: 0.55; }
.star.empty { color: rgba(240, 199, 94, 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(63, 212, 240, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--cyan);
    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(--cream);
    font-weight: 500;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 16, 28, 0.85);
    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: 14px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    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: 30px;
    height: 30px;
    color: var(--cyan);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 12px rgba(63, 212, 240, 0.55);
}

.logo-text {
    font-family: var(--display);
    color: var(--white);
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 400;
    font-style: italic;
    transform: skewX(-6deg);
    display: inline-block;
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 16px;
    color: var(--cream);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    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(--cyan);
    background: rgba(63, 212, 240, 0.06);
}
.site-nav a.active {
    color: var(--cyan);
    background: rgba(63, 212, 240, 0.12);
    border-color: var(--line-cyan);
    font-weight: 700;
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 10px 16px; }
    .logo-text { font-size: 1.2rem; }
    .logo-mark { width: 26px; height: 26px; font-size: 1.15rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.74rem; }
}

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

.games-section {
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-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.06),
        0 24px 60px rgba(0, 0, 0, 0.4);
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), var(--brass), 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(--navy-2) 0%, var(--navy-0) 100%);
    border: 3px solid var(--cyan);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(63, 212, 240, 0.4),
        0 12px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--navy-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: 4px;
    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: 400;
    color: var(--navy-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%, #cffafe 100%);
    box-shadow: inset 0 0 0 1px var(--cyan);
}

.cell.win {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(63, 212, 240, 0.6), 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(63, 212, 240, 0.45), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(255, 61, 143, 0.85), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--cyan);
    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.15rem;
    color: var(--white);
    margin-bottom: 22px;
    min-height: 30px;
    letter-spacing: -0.015em;
    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(--cyan), var(--cyan-2) 60%, var(--cyan-dk));
    color: var(--navy-0);
    padding: 17px 50px;
    font-family: var(--sans);
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 var(--cyan-dk),
        0 12px 30px rgba(63, 212, 240, 0.4);
    min-width: 240px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    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(4px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 0 var(--cyan-dk), 0 4px 12px rgba(63, 212, 240, 0.4); }
.btn-bet:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.balance {
    color: var(--cream);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.balance span {
    color: var(--cyan);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-left: 6px;
}

/* Bet section */
.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: rgba(63, 212, 240, 0.06);
    color: var(--cream);
    border: 1px solid var(--line-strong);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}
.slot-amount-btn:hover { background: rgba(63, 212, 240, 0.14); border-color: var(--cyan); color: var(--cyan); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
    color: var(--navy-0);
    border-color: var(--cyan);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(63, 212, 240, 0.3);
}

/* Paytable */
.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(6, 16, 28, 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(--cream);
    font-family: var(--sans);
    font-weight: 500;
}

.paytable-grid span {
    background: rgba(63, 212, 240, 0.04);
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--line);
}

.paytable-grid b {
    color: var(--cyan);
    font-family: var(--display);
    font-size: 1.1rem;
    margin-right: 4px;
    font-weight: 400;
}

.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: 36px 24px;
    border: 1px solid var(--cyan);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(63, 212, 240, 0.14), transparent 70%),
        var(--navy-2);
    box-shadow: 0 0 50px rgba(63, 212, 240, 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.4rem, 2.6vw, 2rem);
    font-weight: 400;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: uppercase;
}
.win-cta-text em {
    color: var(--cyan);
    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(--cyan), var(--cyan-2) 60%, var(--cyan-dk));
    color: var(--navy-0);
    padding: 20px 50px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 0 var(--cyan-dk),
        0 14px 36px rgba(63, 212, 240, 0.45);
}

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

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

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

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

.rec-card {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-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.06),
        0 24px 60px rgba(0, 0, 0, 0.4);
    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(--cyan), var(--pink), transparent);
}

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-cyan);
    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(--white);
    font-size: 1.85rem;
    letter-spacing: -0.025em;
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}

.rec-bonus {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.btn-play {
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2) 60%, var(--cyan-dk)) !important;
    color: var(--navy-0) !important;
    font-family: var(--sans);
    font-size: 0.92rem;
    padding: 16px 32px;
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 var(--cyan-dk),
        0 12px 28px rgba(63, 212, 240, 0.35);
    letter-spacing: 1.5px;
    font-weight: 800;
}

/* ========================================================================== */
/* 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(--cyan);
}
a.brand-link.logo,
a.brand-link.hero-logo {
    display: block;
}

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

.site-footer {
    background: linear-gradient(180deg, var(--navy-1), var(--navy-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.02em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 400;
    font-style: italic;
}
.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(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cyan); }
.footer-disclaimer {
    color: var(--dim);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin: 0;
    font-weight: 500;
}

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

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

.article-body {
    background: linear-gradient(180deg, var(--navy-2), var(--navy-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;
    font-weight: 400;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.4);
    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(--cyan), var(--pink), transparent);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--white);
    margin: 32px 0 14px;
    letter-spacing: -0.025em;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 16px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 600;
}
.article-body a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(63, 212, 240, 0.35);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
    font-weight: 600;
}
.article-body a:hover { text-decoration-color: var(--cyan); }

.article-body .lead {
    font-family: var(--sans);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 26px;
    padding-left: 14px;
    border-left: 3px solid var(--cyan);
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: rgba(63, 212, 240, 0.06);
    border: 1px solid var(--line-cyan);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 1.06rem;
    line-height: 1.55;
    font-weight: 500;
}

.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(--cyan), var(--cyan-dk));
    color: var(--navy-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 400;
    box-shadow: 0 4px 10px rgba(63, 212, 240, 0.4);
}
.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(--cyan);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 1rem;
}

/* Review meta block */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(6, 16, 28, 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(--cyan);
    line-height: 1;
    text-shadow: 0 0 16px rgba(63, 212, 240, 0.4);
    font-weight: 400;
    letter-spacing: -0.03em;
}
.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(--sans);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.005em;
}

@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 card                                                       */
/* ========================================================================== */

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(63, 212, 240, 0.16), transparent 70%),
        var(--navy-2);
    border: 1px solid var(--cyan);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 50px rgba(63, 212, 240, 0.22);
    position: relative;
    overflow: hidden;
}

.bonus-headline {
    font-family: var(--display);
    color: var(--cyan);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 0 22px rgba(63, 212, 240, 0.4);
    text-transform: uppercase;
}
.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(63, 212, 240, 0.1);
    color: var(--cyan);
    border: 1px solid var(--cyan);
    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 grid (sub-pages)                                          */
/* ========================================================================== */

.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-cyan);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(63, 212, 240, 0.1), transparent 70%),
        var(--navy-2);
    box-shadow: 0 0 30px rgba(63, 212, 240, 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: 400;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    line-height: 1.2;
    text-transform: uppercase;
}
.play-now-text em {
    color: var(--cyan);
    font-style: normal;
}

.btn-inline-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2) 60%, var(--cyan-dk));
    color: var(--navy-0);
    padding: 18px 38px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 0 var(--cyan-dk),
        0 14px 32px rgba(63, 212, 240, 0.4);
}

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

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

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

::selection { background: var(--cyan); color: var(--navy-0); }
::-moz-selection { background: var(--cyan); color: var(--navy-0); }

/* ========================================================================== */
/* 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: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-1) 100%);
    border: 1px solid var(--line-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        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(--cyan), var(--pink), var(--brass));
}

.dossier-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    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(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
    animation: pulseDot 2s ease-in-out infinite;
}

.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.03em;
    font-weight: 400;
    line-height: 1.02;
    text-transform: uppercase;
}

.dossier-deck {
    color: var(--cream);
    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(63, 212, 240, 0.06);
    border: 1px solid var(--line-cyan);
    border-left: 3px solid var(--cyan);
    padding: 12px 18px;
    margin-bottom: 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.dossier-bonus-tag {
    color: var(--cyan);
    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.2rem;
    letter-spacing: -0.015em;
    font-weight: 400;
}
.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-cyan);
    border-radius: var(--radius);
    background: rgba(63, 212, 240, 0.04);
}
.score-num {
    font-family: var(--display);
    color: var(--cyan);
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 400;
    text-shadow: 0 0 18px rgba(63, 212, 240, 0.5);
}
.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(--cream);
    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 / Cons                                                                */
/* ========================================================================== */

.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(--navy-3), var(--navy-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.35);
    position: relative;
    overflow: hidden;
}
.proscons-pros::before,
.proscons-cons::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
}
.proscons-pros::before { background: var(--cyan); }
.proscons-cons::before { background: var(--pink); }

.proscons-h {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--white);
    margin: 0 0 14px;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    font-weight: 400;
}
.proscons-pros .proscons-h { color: var(--cyan); }
.proscons-cons .proscons-h { color: var(--pink); }

.proscons-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.proscons-col li {
    color: var(--cream);
    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(--cyan);
    font-family: var(--display);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}
.proscons-cons li::before {
    content: '−';
    position: absolute;
    left: 4px;
    top: 9px;
    color: var(--pink);
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

/* ========================================================================== */
/* 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(63, 212, 240, 0.04);
    color: var(--cream);
    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(--cyan);
    color: var(--cyan);
    background: rgba(63, 212, 240, 0.1);
}

/* Active tab highlighting via :checked */
#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-rg:checked       ~ .tab-bar [for=tab-rg],
#tab-support:checked  ~ .tab-bar [for=tab-support] {
    background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
    color: var(--navy-0);
    border-color: var(--cyan);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(63, 212, 240, 0.3);
}

/* Show / hide panels */
.tab-panel { display: none; }

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

.tab-panel {
    background: linear-gradient(180deg, var(--navy-3), var(--navy-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.06),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Key-value lists inside tab panels */
.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(--cyan);
    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(--cyan); text-decoration: underline; text-decoration-color: rgba(63, 212, 240, 0.35); }

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

.kv-note {
    margin: 18px 0 0;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.96rem;
    line-height: 1.55;
    padding: 14px 18px;
    background: rgba(63, 212, 240, 0.05);
    border-left: 3px solid var(--cyan);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 400;
}
.kv-note strong { color: var(--white); font-weight: 700; }

/* Dossier inner tables */
.dossier-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0 4px;
    font-family: var(--sans);
}
.dossier-table th {
    text-align: left;
    color: var(--cyan);
    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(63, 212, 240, 0.04);
}
.dossier-table td {
    color: var(--cream);
    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 chips cloud */
.provider-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.provider-chip {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(63, 212, 240, 0.04);
    color: var(--cream);
    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(--cyan);
    color: var(--cyan);
    background: rgba(63, 212, 240, 0.1);
}
