/* /panosta - Deep navy gaming lobby (matches screenshot)
   Midnight navy + electric sky-blue + coin orange-gold + chip particles.
   Fonts: Space Grotesk (display), Inter (body), JetBrains Mono (labels)
   Vibe: modern gaming platform, intergalactic casino lounge.
*/

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

:root {
    /* Navy base */
    --navy-0:    #050818;
    --navy-1:    #0b1226;
    --navy-2:    #0e1633;
    --navy-3:    #131c42;
    --navy-4:    #1a2348;
    --navy-5:    #24305e;
    --slate:     #2e3a6b;

    /* Electric blue */
    --blue:      #2d8eff;
    --blue-2:    #3d99ff;
    --blue-3:    #66b1ff;
    --blue-dk:   #1e6fdc;
    --blue-dp:   #144c9a;

    /* Coin orange-gold */
    --orange:    #ffa940;
    --orange-2:  #ffc266;
    --orange-dk: #c87d20;
    --gold:      #ffd86b;
    --gold-pale: #ffe89c;

    /* Other small accents */
    --pink:      #ff5fb0;
    --green:     #4ade80;
    --purple:    #7c5cf2;

    /* Text */
    --white:     #ffffff;
    --grey-0:    #e6ebf5;
    --grey-1:    #c8d0e0;
    --text:      #b0bbd2;
    --muted:     #8a96b8;
    --dim:       #5c6890;

    /* Lines */
    --line:        rgba(255, 255, 255, 0.06);
    --line-strong: rgba(255, 255, 255, 0.12);
    --line-blue:   rgba(61, 153, 255, 0.28);

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

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

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--navy-2);
    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 - the screenshot's intergalactic-lounge sky                     */
/* ========================================================================== */

/* Layer 1: deep navy with a soft cobalt bloom */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -6;
    background:
        radial-gradient(ellipse at 50% 18%, #1a2966 0%, #0e1633 40%, #0b1226 70%, #050818 100%);
}

/* Layer 2: starfield in mixed blue/orange/white */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 8% 12%,  rgba(255, 255, 255, 0.7)  50%, transparent 60%),
        radial-gradient(1px 1px at 22% 30%, rgba(61, 153, 255, 0.6)  50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 36% 8%, rgba(255, 169, 64, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 52% 22%, rgba(255, 255, 255, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 70% 14%, rgba(61, 153, 255, 0.65) 50%, transparent 60%),
        radial-gradient(1px 1px at 84% 32%, rgba(255, 169, 64, 0.55) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 94% 18%, rgba(255, 255, 255, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 12% 60%, rgba(61, 153, 255, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 42% 78%, rgba(255, 169, 64, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 70% 88%, rgba(255, 255, 255, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 70%, rgba(61, 153, 255, 0.55) 50%, transparent 60%);
    opacity: 0.85;
    animation: starTwinkle 5s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.6; }
    50%      { opacity: 0.95; }
}

/* Layer 3: soft cosmic glow blooms (blue + orange) */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 420px at 18% 30%, rgba(61, 153, 255, 0.16), transparent 70%),
        radial-gradient(ellipse 800px 420px at 84% 70%, rgba(255, 169, 64, 0.12), transparent 70%),
        radial-gradient(ellipse 500px 280px at 50% 95%, rgba(124, 92, 242, 0.10), transparent 70%);
    animation: cloudDrift 36s ease-in-out infinite alternate;
}

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

/* Layer 4: the glowing golden portal ring (matches the screenshot's hero glow) */
.bg-portal {
    position: fixed;
    top: 22vh;
    left: 26vw;
    width: 320px;
    height: 320px;
    z-index: -3;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, transparent 38%, rgba(255, 169, 64, 0.55) 40%, rgba(255, 169, 64, 0.18) 50%, transparent 70%),
        radial-gradient(circle at 50% 50%, transparent 0, transparent 35%, rgba(255, 216, 107, 0.16) 38%, transparent 60%);
    filter: blur(2px);
    animation: portalPulse 5s ease-in-out infinite alternate, portalSpin 80s linear infinite;
    mix-blend-mode: screen;
    opacity: 0.85;
}
@keyframes portalPulse {
    from { transform: scale(0.95); opacity: 0.6; }
    to   { transform: scale(1.05); opacity: 1; }
}
@keyframes portalSpin {
    from { filter: blur(2px) hue-rotate(0deg); }
    to   { filter: blur(2px) hue-rotate(20deg); }
}

@media (max-width: 1100px) {
    .bg-portal { left: 50%; transform: translateX(-50%); top: 12vh; }
}

/* Layer 5: drifting casino chips */
.bg-chips {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.chip {
    position: absolute;
    border-radius: 50%;
    will-change: transform, opacity;
    animation-name: chipDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.5),
        inset 0 0 0 6px var(--rim),
        inset 0 0 0 8px rgba(255, 255, 255, 0.12),
        inset 0 -8px 18px rgba(0, 0, 0, 0.35);
    background: var(--rim);
    overflow: hidden;
}
.chip-inner {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.25), transparent 60%),
        radial-gradient(circle at 50% 50%, var(--core), color-mix(in srgb, var(--core) 70%, #000 30%));
}
.chip-inner::before {
    /* central pip + radial slashes */
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, var(--rim) 0, var(--rim) 18%, transparent 19%);
}
.chip-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        /* eight evenly-spaced radial slashes */
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 8deg, var(--rim) 8deg, var(--rim) 14deg, transparent 14deg,
            transparent 53deg, var(--rim) 53deg, var(--rim) 59deg, transparent 59deg,
            transparent 98deg, var(--rim) 98deg, var(--rim) 104deg, transparent 104deg,
            transparent 143deg, var(--rim) 143deg, var(--rim) 149deg, transparent 149deg,
            transparent 188deg, var(--rim) 188deg, var(--rim) 194deg, transparent 194deg,
            transparent 233deg, var(--rim) 233deg, var(--rim) 239deg, transparent 239deg,
            transparent 278deg, var(--rim) 278deg, var(--rim) 284deg, transparent 284deg,
            transparent 323deg, var(--rim) 323deg, var(--rim) 329deg, transparent 329deg
        );
    -webkit-mask:
        radial-gradient(circle at 50% 50%, transparent 0, transparent 32%, black 32%, black 100%);
            mask:
        radial-gradient(circle at 50% 50%, transparent 0, transparent 32%, black 32%, black 100%);
}

@keyframes chipDrift {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    50%  { transform: translate(calc(var(--dx) * 0.5), calc(var(--dy) * 0.5)) rotate(calc(var(--r) * 0.5)) scale(1.05); }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--r)) scale(0.95); }
}

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

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 3px;
    margin-bottom: 26px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 7px 16px;
    background: rgba(255, 169, 64, 0.08);
    border: 1px solid rgba(255, 169, 64, 0.28);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
    content: '⚡';
    color: var(--blue-2);
    font-size: 0.9rem;
    line-height: 1;
}

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

.hero h1 .accent {
    color: var(--blue-2);
    text-shadow: 0 0 16px rgba(61, 153, 255, 0.4);
    font-style: normal;
}

.subtitle {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 1.08rem;
    font-weight: 400;
    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(--blue-2);
    font-weight: 700;
    font-style: normal;
}

/* ========================================================================== */
/* Casino hero card - matches the screenshot's centered dark glass panel     */
/* ========================================================================== */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(26, 35, 72, 0.92) 0%, rgba(11, 18, 38, 0.96) 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.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

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

.casino-hero:hover {
    transform: translateY(-3px);
    border-color: var(--line-blue);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(61, 153, 255, 0.18);
}

.badge-recommended {
    position: absolute;
    top: 18px;
    left: 26px;
    background: linear-gradient(180deg, var(--orange-2), var(--orange) 60%, var(--orange-dk));
    color: var(--navy-0);
    font-family: var(--mono);
    font-weight: 700;
    padding: 5px 14px;
    font-size: 0.64rem;
    letter-spacing: 2.5px;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 169, 64, 0.4);
    z-index: 3;
}

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

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

.hero-content { min-width: 0; padding-top: 8px; position: relative; z-index: 2; }

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

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

.hero-bonus {
    background: rgba(61, 153, 255, 0.05);
    border: 1px solid var(--line-blue);
    border-left: 3px solid var(--blue-2);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

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

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

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

.hero-cta-sub {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    font-weight: 500;
}

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

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

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

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

.btn-claim {
    width: 100%;
    padding: 16px 22px;
    color: var(--white);
    box-shadow: 0 8px 22px rgba(61, 153, 255, 0.4);
    font-weight: 700;
}

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

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

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 10px 28px rgba(61, 153, 255, 0.4); filter: brightness(1); }
    50%      { box-shadow: 0 14px 42px rgba(61, 153, 255, 0.75), 0 0 60px rgba(255, 169, 64, 0.25); filter: brightness(1.08); }
}

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

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

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

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

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

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

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

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

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

.casino-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-blue);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 30px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(61, 153, 255, 0.18);
}
.casino-card:hover::before { opacity: 1; }

/* Ranks - blue circle pills like the screenshot game-tile ranks */
.rank {
    position: absolute;
    top: 12px;
    left: 14px;
    background: var(--blue-2);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    box-shadow: 0 3px 10px rgba(61, 153, 255, 0.4);
    z-index: 2;
    letter-spacing: -0.02em;
}
.rank::before { content: ''; }   /* hide '#' for screenshot match */

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

.casino-name {
    font-family: var(--display);
    font-size: 1.1rem;
    margin: 0 0 4px;
    color: var(--white);
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Stars */
.rating { margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 1px; }
.star.full { color: var(--orange); }
.star.half { color: var(--orange); opacity: 0.5; }
.star.empty { color: rgba(255, 169, 64, 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(61, 153, 255, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue-2);
    padding: 10px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 74px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--sans);
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--grey-1);
    font-weight: 500;
}

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

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

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

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}
.site-logo:hover { opacity: 0.9; transform: scale(1.02); }

/* Logo wordmark - "PAN[coin]STA" with coin-O matching the screenshot */
.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--display);
    color: var(--white);
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
}
.lg-l { display: inline-block; line-height: 1; }

/* The coin in place of "O" */
.lg-coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow:
        0 0 0 2px var(--white),
        0 4px 10px rgba(255, 169, 64, 0.5);
    margin: 0 1px;
    flex-shrink: 0;
    position: relative;
}
.lg-coin-inner {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4), transparent 50%),
        radial-gradient(circle at 50% 50%, var(--gold), var(--orange-dk));
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.lg-coin-inner::after {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy-0);
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 18px;
    color: var(--grey-1);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.site-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}
.site-nav a.active {
    color: var(--white);
    background: linear-gradient(180deg, var(--blue-2), var(--blue-dk));
    border-color: var(--blue-2);
    box-shadow: 0 4px 14px rgba(61, 153, 255, 0.35);
}

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

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

.games-section {
    background: linear-gradient(180deg, var(--navy-4) 0%, var(--navy-2) 100%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(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: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-2), var(--orange), 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-3) 0%, var(--navy-1) 100%);
    border: 2px solid var(--blue-2);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(61, 153, 255, 0.35),
        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: var(--radius-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.3);
}
.reel.spinning .cell { animation: reelBlur 0.06s linear infinite; }
@keyframes reelBlur { from { transform: translateY(-4px); filter: blur(0.6px); } to { transform: translateY(4px); filter: blur(0.6px); } }

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 700;
    color: var(--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%, #d8eeff 100%); box-shadow: inset 0 0 0 1px var(--blue-2); }
.cell.win {
    background: linear-gradient(135deg, var(--blue-2) 0%, var(--orange) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(61, 153, 255, 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(61, 153, 255, 0.45), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(255, 169, 64, 0.85),  inset 0 0 14px rgba(255,255,255,0.8); }
}

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

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

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

.btn-bet {
    background: linear-gradient(180deg, var(--blue-2), var(--blue) 60%, var(--blue-dk));
    color: var(--white);
    padding: 18px 50px;
    font-family: var(--display);
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 28px rgba(61, 153, 255, 0.4);
    min-width: 240px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
}
.btn-bet:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(0); }
.btn-bet:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

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

.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.bet-amounts { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.slot-amount-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--grey-1);
    border: 1px solid var(--line);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}
.slot-amount-btn:hover { background: rgba(61, 153, 255, 0.1); border-color: var(--line-blue); color: var(--blue-2); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--blue-2), var(--blue));
    color: var(--white);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(61, 153, 255, 0.4);
}

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

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

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

.win-cta {
    margin-top: 36px;
    text-align: center;
    padding: 38px 26px;
    border: 1px solid var(--blue-2);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(61, 153, 255, 0.14), transparent 70%),
        var(--navy-3);
    box-shadow: 0 0 50px rgba(61, 153, 255, 0.22);
    position: relative;
    overflow: hidden;
}
.win-cta.hidden { display: none; }
.cta-pop { animation: ctaPop 0.55s cubic-bezier(0.25, 1.4, 0.5, 1); }
@keyframes ctaPop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.win-cta-text {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.win-cta-text em { color: var(--orange); 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(--blue-2), var(--blue) 60%, var(--blue-dk));
    color: var(--white);
    padding: 20px 50px;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(61, 153, 255, 0.45);
}
.flashing-green { animation: btnGlow 2s 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: 70px; }

.rec-card {
    background: linear-gradient(135deg, var(--navy-4), var(--navy-2));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(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(--blue-2), var(--orange), transparent);
}

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-blue);
    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: 700;
    line-height: 1.05;
}
.rec-bonus {
    color: var(--grey-1);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}
.btn-play {
    background: linear-gradient(180deg, var(--blue-2), var(--blue) 60%, var(--blue-dk)) !important;
    color: var(--white) !important;
    font-family: var(--display);
    font-size: 0.95rem;
    padding: 16px 32px;
    border: none;
    box-shadow: 0 12px 28px rgba(61, 153, 255, 0.4);
    letter-spacing: 0.04em;
    font-weight: 700;
}

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

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

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

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

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

.site-footer {
    background: 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.025em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 700;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 22px; }
.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue-2); }
.footer-disclaimer {
    color: var(--dim);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin: 0;
    font-weight: 500;
}
.footer { display: none; }

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

.article-body {
    background: linear-gradient(180deg, var(--navy-4), var(--navy-2));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.75;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        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(--blue-2), var(--orange), transparent);
}
.article-body h2 {
    font-family: var(--display);
    color: var(--white);
    margin: 36px 0 14px;
    letter-spacing: -0.025em;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body em { color: var(--orange); font-style: normal; font-weight: 600; }
.article-body a {
    color: var(--blue-2);
    text-decoration: underline;
    text-decoration-color: rgba(61, 153, 255, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
    font-weight: 600;
}
.article-body a:hover { text-decoration-color: var(--blue-2); }

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

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: rgba(61, 153, 255, 0.06);
    border: 1px solid var(--line-blue);
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 1.06rem;
    line-height: 1.55;
}

.step-list, .check-list { margin: 14px 0 22px; padding-left: 0; counter-reset: step; }
.step-list { list-style: none; }
.step-list li { margin-bottom: 14px; padding-left: 44px; position: relative; counter-increment: step; }
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--blue-2), var(--blue-dk));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(61, 153, 255, 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(--blue-2);
    font-family: var(--sans);
    font-weight: 800;
    font-size: 1rem;
}

.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(11, 18, 38, 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(--orange);
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 169, 64, 0.4);
    font-weight: 700;
    letter-spacing: -0.04em;
}
.big-rating-out { display: block; color: var(--muted); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 2px; margin-top: 6px; text-transform: uppercase; font-weight: 500; }
.rating-stars { display: block; margin-top: 10px; font-size: 1rem; letter-spacing: 1px; }

.article-facts { margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px 24px; }
.article-facts > div { display: flex; flex-direction: column; gap: 2px; }
.article-facts dt { color: var(--muted); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.article-facts dd { margin: 0; color: var(--white); font-family: var(--display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.015em; }

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

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(61, 153, 255, 0.16), transparent 70%),
        var(--navy-3);
    border: 1px solid var(--blue-2);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 50px rgba(61, 153, 255, 0.22);
    position: relative;
    overflow: hidden;
}
.bonus-headline {
    font-family: var(--display);
    color: var(--orange);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-shadow: 0 0 22px rgba(255, 169, 64, 0.4);
}
.bonus-sub { margin-top: 12px; color: var(--white); font-family: var(--sans); font-size: 1.18rem; font-weight: 500; }
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 7px 18px;
    background: rgba(61, 153, 255, 0.1);
    color: var(--blue-2);
    border: 1px solid var(--blue-2);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

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

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

.play-now-cta {
    margin: 36px auto;
    max-width: 880px;
    padding: 32px 32px;
    text-align: center;
    border: 1px solid var(--line-blue);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(61, 153, 255, 0.1), transparent 70%),
        var(--navy-3);
    box-shadow: 0 0 30px rgba(61, 153, 255, 0.18);
    position: relative;
    overflow: hidden;
}
.play-now-text {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    line-height: 1.2;
}
.play-now-text em { color: var(--orange); font-style: normal; }
.btn-inline-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--blue-2), var(--blue) 60%, var(--blue-dk));
    color: var(--white);
    padding: 18px 38px;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(61, 153, 255, 0.4);
}
.flashing-orange { animation: btnGlow 2s ease-in-out infinite; }
@media (max-width: 600px) { .btn-inline-play { padding: 14px 26px; font-size: 0.88rem; } }

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

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