/* ============================================================================
   Hyperoll - Cyberpunk 2077 / Night City theme
   Palette: pitch black + electric yellow + hot magenta + cyan + glitch purple
   Fonts:   Chakra Petch (angular cyberpunk display)
            + Share Tech Mono (terminal accent)
            + Inter (clean modern body)
   Effects: RGB-split glitch H1 / scanlines / data-stream / neon perspective grid
   ============================================================================ */

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

:root {
    --void: #050505;
    --night: #0a0a10;
    --jet: #14141a;
    --steel: #1a1a24;
    --slate: #2a2a34;

    --yellow: #fcee0a;          /* the iconic CP2077 chrome yellow */
    --yellow-bright: #fff700;
    --yellow-soft: rgba(252, 238, 10, 0.55);

    --magenta: #ff003c;          /* hot CP magenta */
    --magenta-bright: #ff2a5e;
    --magenta-soft: rgba(255, 0, 60, 0.55);

    --pink: #ff0080;
    --pink-soft: rgba(255, 0, 128, 0.5);

    --cyan: #00f0ff;
    --cyan-bright: #5afaff;
    --cyan-soft: rgba(0, 240, 255, 0.55);

    --purple: #8a00d4;          /* glitch purple */
    --purple-soft: rgba(138, 0, 212, 0.55);

    --paper: #f0f0f8;
    --paper-soft: rgba(240, 240, 248, 0.85);

    --text: #f0f0f8;
    --text-soft: rgba(240, 240, 248, 0.78);
    --muted: #6a6a78;

    --display: 'Chakra Petch', 'Audiowide', 'Russo One', sans-serif;
    --mono: 'Share Tech Mono', 'VT323', 'Courier New', monospace;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* ============================================================================
   BACKGROUND - Night City at midnight + HUD overlays
   ============================================================================ */

.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -7;
    background:
        radial-gradient(ellipse at 50% 0%, #1a0a26 0%, #0a0612 25%, var(--void) 70%, #000 100%);
}

/* Neon halos in the corners + sparse static */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -6;
    pointer-events: none;
    background:
        /* Magenta glow upper-left */
        radial-gradient(circle 380px at 8% 10%, rgba(255, 0, 60, 0.18), transparent 70%),
        /* Cyan glow upper-right */
        radial-gradient(circle 320px at 92% 16%, rgba(0, 240, 255, 0.18), transparent 70%),
        /* Yellow glint top */
        radial-gradient(circle 180px at 50% 4%, rgba(252, 238, 10, 0.15), transparent 70%),
        /* Static pinpoints */
        radial-gradient(1px 1px at 24% 38%, rgba(252, 238, 10, 0.4), transparent 60%),
        radial-gradient(1px 1px at 48% 62%, rgba(0, 240, 255, 0.45), transparent 60%),
        radial-gradient(1.5px 1.5px at 72% 28%, rgba(255, 0, 60, 0.45), transparent 60%);
    animation: hudShimmer 4s ease-in-out infinite alternate;
}

@keyframes hudShimmer {
    0%, 100% { opacity: 0.85; }
    50%      { opacity: 1; }
}

/* Bottom horizon + magenta haze */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background:
        /* Magenta horizon glow */
        radial-gradient(ellipse 100vw 24vh at 50% 100%, rgba(255, 0, 60, 0.22), transparent 70%),
        /* Cyan secondary horizon */
        radial-gradient(ellipse 80vw 14vh at 50% 100%, rgba(0, 240, 255, 0.16), transparent 70%);
}

/* ============================================================================
   NEON PERSPECTIVE GRID FLOOR (Tron / Night City)
   ============================================================================ */

.bg-grid {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50vh;
    z-index: -4;
    pointer-events: none;
    background:
        /* Vertical magenta grid lines */
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 0, 60, 0.6) calc(50% - 1px), rgba(255, 0, 60, 0.6) calc(50% + 1px), transparent calc(50% + 1px)) 0 0 / 60px 100% repeat-x,
        /* Horizontal cyan grid lines */
        linear-gradient(0deg,  transparent calc(50% - 1px), rgba(0, 240, 255, 0.4) calc(50% - 1px), rgba(0, 240, 255, 0.4) calc(50% + 1px), transparent calc(50% + 1px)) 0 0 / 100% 60px repeat-y;
    transform: perspective(400px) rotateX(60deg);
    transform-origin: 50% 100%;
    /* Fade upper edge - so the grid recedes toward the horizon */
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 100%);
    animation: gridScroll 6s linear infinite;
    opacity: 0.7;
}

@keyframes gridScroll {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 0 0, 0 60px; }
}

/* ============================================================================
   DATA STREAM - falling katakana + digits + symbols
   ============================================================================ */

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

.datastream {
    position: absolute;
    top: -8vh;
    font-family: var(--mono);
    line-height: 1;
    will-change: transform, opacity;
    animation-name: dataFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.t-yellow  { color: var(--yellow);  text-shadow: 0 0 6px var(--yellow), 0 0 14px var(--yellow-soft); }
.t-cyan    { color: var(--cyan);    text-shadow: 0 0 6px var(--cyan),    0 0 14px var(--cyan-soft); }
.t-magenta { color: var(--magenta); text-shadow: 0 0 6px var(--magenta), 0 0 14px var(--magenta-soft); }

@keyframes dataFall {
    0%   { transform: translate3d(0, 0, 0); opacity: 0; }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translate3d(0, 110vh, 0); opacity: 0; }
}

/* ============================================================================
   CRT SCANLINES OVERLAY - subtle horizontal lines
   ============================================================================ */

.bg-scanlines {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent 0,
        transparent 2px,
        rgba(0, 0, 0, 0.18) 2px,
        rgba(0, 0, 0, 0.18) 3px
    );
    /* Subtle CRT flicker */
    animation: crtFlicker 0.15s steps(2) infinite;
    opacity: 0.6;
}

@keyframes crtFlicker {
    0%   { opacity: 0.55; }
    50%  { opacity: 0.65; }
    100% { opacity: 0.55; }
}

/* ============================================================================
   SITE HEADER + NAV - HUD bar
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.97), rgba(20, 20, 26, 0.92));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--yellow);
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 0 18px var(--yellow-soft),
        0 4px 22px rgba(0, 0, 0, 0.85);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--display);
    color: var(--yellow);
    font-size: 1.85rem;
    letter-spacing: 4px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    /* RGB-split glitch */
    text-shadow:
        -1.5px 0 var(--magenta),
        1.5px 0 var(--cyan),
        0 0 14px var(--yellow-soft);
    transition: filter 0.2s, transform 0.2s;
}
.site-logo:hover { filter: brightness(1.18); transform: translateY(-1px); }

/* Hex / chip-shaped logo mark */
.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background:
        radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--yellow) 50%, #8a8000);
    color: var(--void);
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 900;
    font-style: italic;
    box-shadow:
        0 0 14px var(--yellow-soft),
        0 0 28px var(--magenta-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.55);
    border: 2px solid var(--void);
    /* Hexagon clip */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
}
.logo-mark::before { content: '\23E3'; }   /* ⏣ Benzene ring - tech glyph */
.logo-mark > * { display: none; }

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 18px;
    color: var(--paper);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.84rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 0;
    transition: color 0.18s, background 0.18s, border-color 0.18s, text-shadow 0.18s;
    /* Cyberpunk corner-cut shape */
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.site-nav a:hover {
    color: var(--cyan-bright);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan);
    text-shadow: 0 0 8px var(--cyan-soft);
}
.site-nav a.active {
    color: var(--void);
    background: var(--yellow);
    border-color: var(--magenta);
    box-shadow: 0 0 18px var(--yellow-soft), 0 0 30px var(--magenta-soft);
}

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

/* ============================================================================
   PAGE HERO - HUD splash with RGB-split glitch
   ============================================================================ */

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

.hero-eyebrow {
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 0.92rem;
    letter-spacing: 5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 0 12px var(--cyan-soft);
}

.hero-eyebrow::after {
    content: '◢ ◣ ◤ ◥';
    display: block;
    margin-top: 8px;
    color: var(--magenta);
    font-size: 1.1rem;
    letter-spacing: 18px;
    text-shadow: 0 0 12px var(--magenta-soft);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 7vw, 5rem);
    margin: 0 0 14px;
    color: var(--yellow);
    letter-spacing: 4px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.05;
    text-transform: uppercase;
    /* The classic CP2077 RGB-split glitch effect on the headline */
    text-shadow:
        -3px 0 var(--magenta),
        3px 0 var(--cyan),
        0 0 22px rgba(252, 238, 10, 0.4),
        0 4px 0 #000;
    animation: rgbShift 3.2s steps(8) infinite;
}

@keyframes rgbShift {
    0%, 100% {
        text-shadow:
            -3px 0 var(--magenta),
            3px 0 var(--cyan),
            0 0 22px rgba(252, 238, 10, 0.4),
            0 4px 0 #000;
    }
    20% {
        text-shadow:
            -5px 1px var(--magenta),
            5px -1px var(--cyan),
            0 0 28px rgba(252, 238, 10, 0.6),
            0 4px 0 #000;
    }
    35% {
        text-shadow:
            -1px 0 var(--magenta),
            1px 0 var(--cyan),
            0 0 18px rgba(252, 238, 10, 0.3),
            0 4px 0 #000;
    }
    55% {
        text-shadow:
            -4px -1px var(--magenta),
            4px 1px var(--cyan),
            0 0 26px rgba(252, 238, 10, 0.5),
            0 4px 0 #000;
    }
    72% {
        text-shadow:
            -2px 0 var(--magenta),
            2px 0 var(--cyan),
            0 0 22px rgba(252, 238, 10, 0.4),
            0 4px 0 #000;
    }
    88% {
        text-shadow:
            -6px 0 var(--magenta),
            6px 0 var(--cyan),
            0 0 32px rgba(252, 238, 10, 0.7),
            0 4px 0 #000;
    }
}

.subtitle {
    color: var(--cyan-bright);
    font-size: 1.05rem;
    font-family: var(--mono);
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto;
    letter-spacing: 4px;
    line-height: 1.5;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan-soft), 0 1px 2px #000;
}

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

.accent {
    color: var(--magenta);
    font-family: var(--display);
    font-style: italic;
    text-shadow: 0 0 14px var(--magenta-soft), 2px 2px 0 #000;
    font-weight: 700;
}

/* ============================================================================
   HERO RECOMMENDED ROW - chrome HUD card
   ============================================================================ */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(20, 20, 26, 0.96), rgba(5, 5, 5, 0.98));
    border: 2px solid var(--yellow);
    /* Cyberpunk corner-cut shape */
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 0 35px var(--yellow-soft),
        0 0 70px var(--magenta-soft),
        0 14px 38px rgba(0, 0, 0, 0.85);
    animation: heroHudGlow 1.8s ease-in-out infinite alternate;
}

@keyframes heroHudGlow {
    0%   { border-color: var(--yellow);  box-shadow: 0 0 0 1px var(--magenta) inset, 0 0 28px var(--yellow-soft), 0 14px 38px rgba(0,0,0,0.85); }
    50%  { border-color: var(--cyan);    box-shadow: 0 0 0 1px var(--magenta) inset, 0 0 38px var(--cyan-soft),    0 0 60px var(--yellow-soft), 0 14px 38px rgba(0,0,0,0.85); }
    100% { border-color: var(--magenta); box-shadow: 0 0 0 1px var(--cyan) inset,    0 0 50px var(--magenta-soft), 0 0 80px var(--yellow-soft), 0 14px 38px rgba(0,0,0,0.85); }
}

.badge-recommended {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--void);
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    padding: 7px 26px;
    font-size: 0.85rem;
    letter-spacing: 4px;
    border-radius: 0;
    white-space: nowrap;
    text-transform: uppercase;
    border: 2px solid var(--void);
    /* Slanted parallelogram shape */
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.7),
        0 0 18px var(--yellow-soft);
}

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--yellow) 55%, #8a8000);
    color: var(--void);
    width: 46px;
    height: 46px;
    font-family: var(--display);
    font-weight: 900;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow:
        0 0 14px var(--yellow-soft),
        inset 0 -2px 4px rgba(0, 0, 0, 0.45),
        inset 0 2px 2px rgba(255, 255, 255, 0.55);
    z-index: 2;
    border: 2px solid var(--void);
    /* Hexagon shape */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    border: 2px solid var(--cyan);
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 0 22px var(--cyan-soft),
        0 0 36px var(--magenta-soft);
    display: block;
}

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

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    color: var(--paper);
    font-size: clamp(1.95rem, 3.3vw, 2.7rem);
    letter-spacing: 3px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow:
        -2px 0 var(--magenta),
        2px 0 var(--cyan),
        0 0 12px var(--yellow-soft),
        2px 2px 0 #000;
}

.hero-tagline {
    color: var(--cyan-bright);
    font-family: var(--mono);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 4px;
    line-height: 1.3;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan-soft), 1px 1px 0 #000;
}

.hero-bonus {
    background: rgba(252, 238, 10, 0.07);
    border-left: 4px solid var(--magenta);
    padding: 14px 18px;
    margin-top: 12px;
    border-radius: 0;
}

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

.bonus-text {
    display: block;
    color: var(--paper);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--body);
}

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

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

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

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

/* ============================================================================
   ALTERNATIVES GRID
   ============================================================================ */

.alternatives {
    display: grid;
    gap: 22px;
    margin-bottom: 50px;
}

.alternatives.five-col { grid-template-columns: repeat(5, 1fr); }
.alternatives.three-col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) { .alternatives.five-col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  {
    .alternatives.five-col { grid-template-columns: repeat(2, 1fr); }
    .alternatives.three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px)  {
    .alternatives.five-col,
    .alternatives.three-col { grid-template-columns: 1fr; }
}

.casino-card {
    position: relative;
    padding: 22px 18px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(20, 20, 26, 0.94), rgba(5, 5, 5, 0.97));
    border: 1px solid var(--cyan);
    border-radius: 0;
    /* Corner-cut bottom-right */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 8px 26px rgba(0, 0, 0, 0.7),
        0 0 18px var(--cyan-soft);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.casino-card::before {
    /* Cycling top stripe */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--cyan), var(--yellow));
    background-size: 200% 100%;
    animation: stripeCycle 3s linear infinite;
}

@keyframes stripeCycle {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta);
    box-shadow: 0 0 0 1px var(--cyan) inset, 0 14px 36px var(--magenta-soft);
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: radial-gradient(circle at 30% 30%, var(--yellow-bright), var(--yellow) 55%, #8a8000);
    color: var(--void);
    width: 36px;
    height: 36px;
    font-family: var(--display);
    font-weight: 900;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 12px var(--yellow-soft);
    z-index: 2;
    border: 2px solid var(--void);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border-radius: 0;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 0;
    border: 1px solid var(--magenta);
    box-shadow: 0 0 14px var(--magenta-soft);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--paper);
    letter-spacing: 2px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--yellow-soft), 1.5px 1.5px 0 #000;
    position: relative;
    z-index: 1;
}

/* Stars - chrome yellow */
.rating { margin-bottom: 12px; font-size: 1.1rem; position: relative; z-index: 1; }
.star.full {
    color: var(--yellow);
    text-shadow: 0 0 6px var(--yellow-soft), 0 0 12px rgba(255, 0, 60, 0.3);
}
.star.half { color: var(--yellow); opacity: 0.55; }
.star.empty { color: rgba(106, 106, 120, 0.3); }

.rating-num {
    color: var(--cyan-bright);
    font-size: 0.85rem;
    margin-left: 6px;
    font-family: var(--mono);
    font-weight: 400;
    letter-spacing: 1px;
}

.bonus {
    background: rgba(0, 240, 255, 0.06);
    border-left: 3px solid var(--magenta);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0;
    font-family: var(--body);
    position: relative;
    z-index: 1;
}

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

.btn {
    display: inline-block;
    padding: 13px 22px;
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--void);
    border-radius: 0;
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    background: transparent;
    color: var(--paper);
    position: relative;
    z-index: 1;
    /* Cyberpunk corner cut */
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

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

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--void);
    font-weight: 900;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.05rem;
    color: var(--void);
    white-space: nowrap;
    box-shadow: 0 0 24px var(--yellow-soft), 0 0 40px var(--magenta-soft);
    font-weight: 900;
    border: 2px solid var(--void);
    letter-spacing: 4px;
}

.flashing { animation: btnHudFlash 0.85s ease-in-out infinite; }
@keyframes btnHudFlash {
    0%, 100% {
        box-shadow: 0 0 18px var(--yellow-soft), 0 0 28px var(--magenta-soft);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 38px var(--yellow), 0 0 60px var(--magenta), 0 0 80px var(--cyan-soft);
        filter: brightness(1.32);
    }
}

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

.section-title {
    text-align: center;
    color: var(--yellow);
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    margin: 16px 0 6px;
    letter-spacing: 4px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow:
        -2px 0 var(--magenta),
        2px 0 var(--cyan),
        0 0 22px var(--yellow-soft),
        2px 2px 0 #000;
}

.section-title::after {
    content: '◢ ◣ ◤ ◥';
    display: block;
    margin-top: 10px;
    color: var(--magenta);
    font-size: 1rem;
    letter-spacing: 16px;
    text-shadow: 0 0 12px var(--magenta-soft);
}

.section-sub {
    text-align: center;
    color: var(--cyan-bright);
    margin: 12px 0 26px;
    font-size: 1rem;
    font-family: var(--mono);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan-soft);
}

/* ============================================================================
   GAMES SECTION + BOOK OF RA SLOT - cyberdeck cabinet
   ============================================================================ */

.games-section {
    background:
        linear-gradient(135deg, rgba(20, 20, 26, 0.78), rgba(5, 5, 5, 0.94));
    border: 2px solid var(--magenta);
    border-radius: 0;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 1px var(--cyan) inset,
        0 0 30px var(--magenta-soft),
        0 0 60px var(--cyan-soft);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 24px 30px;
    background: linear-gradient(180deg, var(--steel) 0%, var(--void) 100%);
    border: 3px solid var(--yellow);
    border-radius: 0;
    box-shadow:
        0 0 0 2px var(--magenta) inset,
        inset 0 0 30px rgba(0, 0, 0, 0.85),
        0 0 35px var(--yellow-soft),
        0 0 60px var(--magenta-soft);
    margin-bottom: 14px;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--void);
    padding: 8px;
    border-radius: 0;
    border: 2px solid var(--cyan);
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.95);
}

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, #1a0a1e 0%, #050508 50%, #1a0a1e 100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--magenta);
    box-shadow: inset 0 0 14px rgba(252, 238, 10, 0.18);
}

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

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

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    color: var(--yellow);
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.7) 0%, rgba(5, 5, 5, 0.9) 100%);
    border-bottom: 1px solid var(--magenta-soft);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
    text-shadow: 0 0 8px var(--yellow-soft), 1px 1px 0 #000;
}

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

.cell.payline {
    background: linear-gradient(180deg, rgba(252, 238, 10, 0.18) 0%, rgba(255, 0, 60, 0.18) 100%);
    box-shadow: inset 0 0 0 1px var(--yellow);
}

.cell.win {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--magenta) 100%);
    color: var(--void);
    transform: scale(1.05);
    box-shadow:
        0 0 22px var(--yellow),
        0 0 36px var(--magenta-soft),
        inset 0 0 12px rgba(255, 255, 255, 0.55);
    animation: winPulse 0.6s ease-in-out infinite alternate;
    text-shadow: 0 1px 0 #fff;
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--yellow), inset 0 0 8px rgba(255,255,255,0.55); }
    to   { box-shadow: 0 0 36px var(--yellow-bright), 0 0 50px var(--magenta), inset 0 0 14px rgba(255,255,255,0.85); }
}

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

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

.bookofra-result {
    font-family: var(--mono);
    font-size: 1.15rem;
    color: var(--cyan-bright);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--cyan-soft), 1px 1px 0 #000;
}

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

.btn-bet {
    background: linear-gradient(180deg, var(--magenta-bright), var(--magenta) 50%, #6e0020);
    color: var(--paper);
    padding: 16px 50px;
    font-size: 1.05rem;
    border: 3px solid var(--void);
    border-radius: 0;
    box-shadow:
        0 0 0 1px var(--yellow) inset,
        0 4px 0 var(--void),
        0 0 24px var(--magenta-soft),
        0 0 40px var(--cyan-soft);
    min-width: 220px;
    letter-spacing: 5px;
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-bet:hover { filter: brightness(1.18); transform: translateY(-1px); }
.btn-bet:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 1px var(--yellow) inset, 0 2px 0 var(--void), 0 0 14px var(--magenta-soft);
}
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.balance {
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.balance span {
    color: var(--yellow);
    font-weight: 400;
    font-size: 1.4rem;
    text-shadow: 0 0 12px var(--yellow-soft), 1px 1px 0 #000;
    margin-left: 6px;
    font-family: var(--mono);
}

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

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

.slot-amount-btn {
    background: rgba(0, 240, 255, 0.07);
    color: var(--paper);
    border: 1px solid var(--cyan);
    padding: 9px 18px;
    font-family: var(--mono);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.18s;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.slot-amount-btn:hover {
    background: rgba(0, 240, 255, 0.18);
    border-color: var(--cyan-bright);
    color: var(--cyan-bright);
}
.slot-amount-btn.active {
    background: var(--yellow);
    color: var(--void);
    border-color: var(--magenta);
    box-shadow: 0 3px 0 var(--void), 0 0 16px var(--yellow-soft);
}

/* Paytable */
.paytable {
    margin-top: 22px;
    padding: 18px;
    background: rgba(5, 5, 5, 0.65);
    border: 1px solid var(--magenta);
    border-radius: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.paytable-title {
    color: var(--yellow);
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 4px;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--yellow-soft);
}

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

.paytable-grid span {
    background: rgba(252, 238, 10, 0.05);
    padding: 6px 10px;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(252, 238, 10, 0.25);
}

.paytable-grid b { color: var(--magenta); font-size: 1.1rem; margin-right: 4px; text-shadow: 0 0 6px var(--magenta-soft); }

.paytable-note {
    text-align: center;
    color: var(--text-soft);
    font-size: 0.88rem;
    margin-top: 12px;
    font-family: var(--mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@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.88rem; }
}

/* ============================================================================
   WIN CTA
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 3px dashed #76ff03;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(0, 60, 20, 0.6), rgba(5, 5, 5, 0.94));
    box-shadow: 0 0 30px rgba(118, 255, 3, 0.4);
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.win-cta.hidden { display: none; }

.cta-pop { animation: ctaPop 0.5s cubic-bezier(0.25, 1.4, 0.5, 1); }
@keyframes ctaPop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.win-cta-text {
    color: #76ff03;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow:
        -1.5px 0 var(--cyan),
        1.5px 0 var(--magenta),
        0 0 14px rgba(118, 255, 3, 0.7);
}

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

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, #2e8b57, #76ff03, #c8ff7a, #76ff03, #2e8b57);
    background-size: 300% 100%;
    color: var(--void);
    padding: 20px 42px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 5px;
    border: 3px solid var(--void);
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--void);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

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

@keyframes greenFlash {
    0%, 100% {
        box-shadow: 0 5px 0 var(--void), 0 0 22px rgba(118, 255, 3, 0.7);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 5px 0 var(--void), 0 0 50px #76ff03, 0 0 90px rgba(127, 223, 96, 0.85);
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

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

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

.rec-card {
    background:
        linear-gradient(135deg, rgba(20, 20, 26, 0.97), rgba(5, 5, 5, 0.98));
    border: 2px solid var(--cyan);
    border-radius: 0;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 0 30px var(--cyan-soft),
        0 0 50px var(--magenta-soft);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

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

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--paper);
    font-size: 2.05rem;
    letter-spacing: 3px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow:
        -2px 0 var(--magenta),
        2px 0 var(--cyan),
        0 0 14px var(--yellow-soft);
}

.rec-bonus {
    color: var(--paper);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--mono);
    letter-spacing: 1px;
}

.btn-play {
    background: linear-gradient(180deg, var(--magenta-bright), var(--magenta));
    color: var(--yellow);
    font-size: 1.1rem;
    padding: 16px 32px;
    border: 3px solid var(--void);
    box-shadow: 0 5px 0 var(--void), 0 0 22px var(--magenta-soft);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 4px;
}

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

.site-footer {
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.92), rgba(0, 0, 0, 0.99));
    border-top: 2px solid var(--yellow);
    padding: 32px 20px;
    margin-top: 30px;
    box-shadow: inset 0 4px 0 var(--magenta);
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--yellow);
    font-size: 1.85rem;
    letter-spacing: 5px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow:
        -2px 0 var(--magenta),
        2px 0 var(--cyan),
        0 0 18px var(--yellow-soft);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--paper);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.15s, text-shadow 0.15s;
}
.footer-nav a:hover { color: var(--cyan-bright); text-shadow: 0 0 8px var(--cyan-soft); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    font-family: var(--mono);
}

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

.article-body {
    background:
        linear-gradient(135deg, rgba(20, 20, 26, 0.55), rgba(5, 5, 5, 0.78));
    border: 1px solid var(--cyan);
    border-radius: 0;
    padding: 40px 44px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--paper);
    font-family: var(--body);
    font-size: 1.06rem;
    line-height: 1.78;
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 6px 28px rgba(0, 0, 0, 0.6);
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.article-body h2 {
    font-family: var(--display);
    color: var(--yellow);
    margin: 32px 0 14px;
    letter-spacing: 3px;
    font-size: 1.85rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow:
        -1.5px 0 var(--magenta),
        1.5px 0 var(--cyan),
        0 0 12px var(--yellow-soft);
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--cyan-bright); text-shadow: 0 0 6px var(--cyan-soft); font-weight: 700; }
.article-body em { color: var(--magenta); font-style: normal; font-family: var(--mono); font-weight: 400; font-size: 1.1em; letter-spacing: 1px; }
.article-body a {
    color: var(--cyan-bright);
    text-decoration: underline;
    text-decoration-color: var(--cyan-soft);
}

.article-body .lead {
    font-size: 1.18rem;
    color: var(--cyan);
    font-family: var(--mono);
    font-weight: 400;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 4px solid var(--magenta);
    line-height: 1.55;
    letter-spacing: 1px;
}

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.14), rgba(255, 0, 60, 0.06));
    border-left: 4px solid var(--yellow);
    border-radius: 0;
    font-size: 1.06rem;
    font-family: var(--body);
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 28px;
}
.step-list li, .check-list li { margin-bottom: 10px; font-family: var(--body); }
.step-list li::marker {
    color: var(--yellow);
    font-family: var(--mono);
    font-weight: 400;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '◢';
    display: inline-block;
    color: var(--magenta);
    margin-right: 12px;
    font-size: 0.95rem;
    text-shadow: 0 0 6px var(--magenta-soft);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(5, 5, 5, 0.7);
    border: 1px solid var(--cyan);
    border-radius: 0;
    padding: 24px 28px;
    margin-bottom: 30px;
    box-shadow: 0 0 0 1px var(--magenta) inset;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid var(--cyan-soft);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-style: italic;
    font-size: 4rem;
    color: var(--yellow);
    line-height: 1;
    text-shadow: -2px 0 var(--magenta), 2px 0 var(--cyan), 0 0 18px var(--yellow-soft);
    font-weight: 700;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-top: 6px;
    font-weight: 400;
    text-transform: uppercase;
}
.rating-stars { display: block; margin-top: 8px; font-size: 1.2rem; }

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

@media (max-width: 640px) {
    .article-body { padding: 28px 24px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating {
        border-right: none;
        border-bottom: 1px solid var(--cyan-soft);
        padding: 0 0 16px;
    }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.18), rgba(255, 0, 60, 0.1));
    border: 3px solid var(--yellow);
    border-radius: 0;
    text-align: center;
    box-shadow:
        0 0 0 1px var(--magenta) inset,
        0 0 30px var(--yellow-soft);
    animation: bonusGlow 2.4s ease-in-out infinite alternate;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
@keyframes bonusGlow {
    from { box-shadow: 0 0 0 1px var(--magenta) inset, 0 0 18px var(--yellow-soft); }
    to   { box-shadow: 0 0 0 1px var(--cyan) inset, 0 0 50px var(--yellow), 0 0 80px var(--magenta-soft); }
}
.bonus-headline {
    font-family: var(--display);
    color: var(--yellow);
    font-size: 2.8rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow:
        -3px 0 var(--magenta),
        3px 0 var(--cyan),
        0 0 18px var(--yellow-soft);
}
.bonus-sub {
    margin-top: 8px;
    color: var(--cyan-bright);
    font-size: 1.4rem;
    font-family: var(--mono);
    line-height: 1.3;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan-soft);
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 6px 18px;
    background: var(--magenta);
    color: var(--yellow);
    border: 2px solid var(--void);
    border-radius: 0;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
}

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

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

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

.play-now-cta {
    margin: 28px auto;
    max-width: 880px;
    padding: 26px 28px;
    text-align: center;
    border: 3px dashed var(--yellow);
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(252, 238, 10, 0.14), rgba(255, 0, 60, 0.08)),
        rgba(5, 5, 5, 0.62);
    box-shadow: 0 0 24px var(--yellow-soft);
    animation: ctaBannerGlow 2s ease-in-out infinite alternate;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
@keyframes ctaBannerGlow {
    from { box-shadow: 0 0 18px var(--yellow-soft); }
    to   { box-shadow: 0 0 44px var(--magenta), 0 0 60px var(--cyan-soft); }
}

.play-now-text {
    color: var(--cyan-bright);
    font-family: var(--display);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 3px;
    line-height: 1.3;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--cyan-soft), 2px 2px 0 #000;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--magenta), var(--yellow), var(--cyan), var(--yellow), var(--magenta));
    background-size: 300% 100%;
    color: var(--void);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 5px;
    border: 3px solid var(--void);
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 5px 0 var(--void);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

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

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 5px 0 var(--void), 0 0 22px var(--yellow-soft);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 5px 0 var(--void), 0 0 48px var(--yellow), 0 0 70px var(--magenta), 0 0 90px var(--cyan-soft);
        transform: scale(1.04);
        filter: brightness(1.25);
    }
}
@keyframes orangeSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--cyan);
    padding: 40px 20px;
    font-size: 1.05rem;
    letter-spacing: 4px;
    font-family: var(--mono);
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--cyan-soft);
}

.load-error {
    text-align: center;
    color: var(--magenta-bright);
    padding: 20px;
    font-weight: 700;
    font-family: var(--display);
    font-style: italic;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--magenta-soft);
}

.footer { display: none; }

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.18s, filter 0.18s;
    cursor: pointer;
}
.brand-link:hover {
    transform: scale(1.04);
    filter: brightness(1.25) drop-shadow(0 0 14px var(--yellow));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--yellow);
    text-shadow: -1.5px 0 var(--magenta), 1.5px 0 var(--cyan), 0 0 14px var(--yellow);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
