/* /wonderluk - Mystical purple + lucky neon green casino theme
   Both spellings (Wonderluk / Wonderluck) are SEO-targeted on every page.
   Fonts: Bricolage Grotesque (display), Crimson Pro (body), JetBrains Mono (labels)
   Vibe: magical wonder + lucky charm, vibrant gradient sparkles on deep purple.
*/

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

:root {
    /* Mystical purple base */
    --purple-0:  #0a0420;
    --purple-1:  #1a0a35;
    --purple-2:  #2a1448;
    --purple-3:  #3a1c5e;
    --purple-4:  #4a2078;
    --purple-5:  #5a2c8c;

    /* Accents */
    --violet:    #a955f7;
    --violet-dk: #6a26c0;
    --green:     #4ade80;        /* lucky neon */
    --green-2:   #22c55e;
    --green-dk:  #1eaa54;
    --pink:      #ff5fb0;
    --pink-dk:   #c41e6f;
    --gold:      #ffd86b;
    --gold-dk:   #c8901a;

    /* Text */
    --white:     #ffffff;
    --cream:     #fef5e7;
    --lavender:  #e8def8;
    --text:      #d4cbe8;
    --muted:     #9b8fb0;
    --dim:       #6b5e88;

    /* Lines */
    --line:        rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --line-violet: rgba(169, 85, 247, 0.32);
    --line-green:  rgba(74, 222, 128, 0.32);

    /* Type */
    --display: 'Bricolage Grotesque', 'Inter', system-ui, -apple-system, sans-serif;
    --serif:   'Crimson Pro', Georgia, 'Times New Roman', serif;
    --sans:    'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

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

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

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

/* Layer 1: deep mystical purple */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 30%, #5a2c8c 0%, #2a1448 40%, #1a0a35 80%, #0a0420 100%);
}

/* Layer 2: subtle star dust */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255, 216, 107, 0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 42%, rgba(74, 222, 128, 0.45) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 45% 15%, rgba(255, 95, 176, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 62% 35%, rgba(255, 255, 255, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 78% 18%, rgba(255, 216, 107, 0.55) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 60%, rgba(169, 85, 247, 0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 22% 80%, rgba(74, 222, 128, 0.45) 50%, transparent 60%);
    opacity: 0.7;
}

/* Layer 3: side color glows */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 700px 380px at 10% 20%, rgba(169, 85, 247, 0.15), transparent 70%),
        radial-gradient(ellipse 700px 380px at 90% 80%, rgba(74, 222, 128, 0.12), transparent 70%),
        radial-gradient(ellipse 500px 280px at 50% 100%, rgba(255, 95, 176, 0.10), transparent 70%);
    animation: cloudDrift 32s ease-in-out infinite alternate;
}

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

/* Layer 4: floating wonder sparkles */
.bg-wonder {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.wonder {
    position: absolute;
    line-height: 1;
    will-change: transform, opacity;
    animation-name: wonderDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes wonderDrift {
    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.15); }
    100% { transform: translate(var(--dx), var(--dy)) rotate(var(--r)) scale(0.88); }
}

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

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

.hero-eyebrow {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.74rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 18px;
    background: rgba(255, 216, 107, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.3);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}
.hero-eyebrow-alt {
    color: var(--green);
    text-transform: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 0.7rem;
}

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

.hero h1 .accent {
    background: linear-gradient(120deg, var(--green), var(--violet) 50%, var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: normal;
}

.subtitle {
    color: var(--lavender);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.005em;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

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

.accent {
    background: linear-gradient(120deg, var(--green), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    font-style: normal;
}

/* ========================================================================== */
/* Spelling note - SEO disambiguation block                                   */
/* ========================================================================== */

.spelling-note {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.12) 0%, rgba(169, 85, 247, 0.12) 100%);
    border: 1px solid var(--line-green);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    margin-bottom: 48px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.spelling-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--green), var(--violet));
}

.spelling-note-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green), var(--green-dk));
    color: var(--purple-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.4);
}

.spelling-note-body { flex: 1; min-width: 0; }

.spelling-note-h {
    font-family: var(--display);
    color: var(--white);
    font-size: 1.18rem;
    margin: 0 0 6px;
    letter-spacing: -0.015em;
    font-weight: 600;
    line-height: 1.3;
}
.spelling-note-h strong {
    color: var(--green);
    font-weight: 800;
}
.spelling-note-h strong:last-of-type { color: var(--violet); }

.spelling-note-p {
    margin: 0;
    color: var(--lavender);
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
}
.spelling-note-p strong { color: var(--white); font-weight: 700; }
.spelling-note-p em {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 600px) {
    .spelling-note { flex-direction: column; align-items: flex-start; padding: 20px 22px; }
    .spelling-note-h { font-size: 1.05rem; }
}

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

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

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

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

.casino-hero:hover {
    transform: translateY(-3px);
    border-color: var(--line-green);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 70px rgba(74, 222, 128, 0.3);
}

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

.hero-rank {
    position: absolute;
    top: 14px;
    right: 20px;
    background: rgba(255, 95, 176, 0.14);
    color: var(--pink);
    width: auto;
    height: auto;
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
    box-shadow: none;
    z-index: 2;
    letter-spacing: 1.5px;
    padding: 4px 11px;
    border: 1px solid rgba(255, 95, 176, 0.35);
    text-transform: uppercase;
}
.hero-rank::before {
    content: '#';
    color: var(--pink);
    margin-right: 1px;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid var(--line-violet);
    display: block;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 24px rgba(169, 85, 247, 0.25);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-logo:hover img { transform: scale(1.04); }

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

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

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

.hero-bonus {
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid var(--line-green);
    border-left: 3px solid var(--green);
    padding: 14px 18px;
    margin-top: 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

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

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

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

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

@media (max-width: 800px) {
    .casino-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 44px 22px 28px;
    }
    .badge-recommended { left: 50%; transform: translateX(-50%); top: 14px; }
    .hero-rank { right: 16px; top: 14px; }
    .hero-logo img { width: 180px; height: 180px; }
    .hero-bonus { width: 100%; }
}

/* ========================================================================== */
/* 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 20px 22px;
    text-align: center;
    background: linear-gradient(180deg, var(--purple-3) 0%, var(--purple-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.35);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-green);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 32px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(74, 222, 128, 0.22);
}
.casino-card:hover::before { opacity: 1; }

.rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--violet), var(--violet-dk));
    color: var(--white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(169, 85, 247, 0.45);
    z-index: 2;
    letter-spacing: -0.02em;
}

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

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

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

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

.bonus {
    background: rgba(74, 222, 128, 0.04);
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    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(--serif);
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--lavender);
    font-weight: 400;
}

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

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

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

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--purple-0);
    box-shadow: 0 6px 18px rgba(74, 222, 128, 0.35);
    font-weight: 800;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 0.95rem;
    color: var(--purple-0) !important;
    background: linear-gradient(180deg, var(--green), var(--green-2) 60%, var(--green-dk)) !important;
    white-space: nowrap;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 var(--green-dk),
        0 12px 28px rgba(74, 222, 128, 0.4);
    border: none;
    letter-spacing: 1.5px;
    font-weight: 800;
}

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

@keyframes btnPulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            0 6px 0 var(--green-dk),
            0 10px 24px rgba(74, 222, 128, 0.35);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.35),
            0 6px 0 var(--green-dk),
            0 14px 38px rgba(169, 85, 247, 0.75);
        filter: brightness(1.08);
    }
}

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 4, 32, 0.85);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid var(--line);
}

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

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

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green), var(--violet));
    color: var(--purple-0);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(169, 85, 247, 0.4);
}

.logo-text {
    font-family: var(--display);
    color: var(--white);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    text-transform: none;
    font-weight: 800;
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 16px;
    color: var(--lavender);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.88rem;
    letter-spacing: -0.005em;
    text-transform: none;
    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.06);
}
.site-nav a.active {
    color: var(--purple-0);
    background: linear-gradient(135deg, var(--green), var(--green-2));
    border-color: var(--green);
    font-weight: 800;
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 10px 16px; }
    .logo-text { font-size: 1.2rem; }
    .logo-mark { width: 30px; height: 30px; font-size: 1rem; border-radius: 10px; }
    .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(--purple-3) 0%, var(--purple-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: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), var(--violet), var(--pink), var(--gold), 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(--purple-2) 0%, var(--purple-1) 100%);
    border: 3px solid var(--green);
    border-radius: var(--radius);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(74, 222, 128, 0.4),
        0 12px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--purple-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, #fef5e7 0%, #f0e2d0 50%, #fef5e7 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

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

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

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 800;
    color: var(--purple-1);
    background: linear-gradient(180deg, #fef5e7 0%, #f0e2d0 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%, #d0f5d0 100%);
    box-shadow: inset 0 0 0 1px var(--green);
}
.cell.win {
    background: linear-gradient(135deg, var(--green) 0%, var(--violet) 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(74, 222, 128, 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(74, 222, 128, 0.45), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(169, 85, 247, 0.85), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--green);
    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.18rem;
    color: var(--white);
    margin-bottom: 22px;
    min-height: 30px;
    letter-spacing: -0.02em;
    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(--green), var(--green-2) 60%, var(--green-dk));
    color: var(--purple-0);
    padding: 17px 50px;
    font-family: var(--display);
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 var(--green-dk),
        0 12px 30px rgba(74, 222, 128, 0.4);
    min-width: 240px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
}
.btn-bet:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(4px); }
.btn-bet:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

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

.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--green);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.bet-amounts { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.slot-amount-btn {
    background: rgba(74, 222, 128, 0.06);
    color: var(--lavender);
    border: 1px solid var(--line-strong);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}
.slot-amount-btn:hover { background: rgba(74, 222, 128, 0.14); border-color: var(--green); color: var(--green); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--green), var(--green-2));
    color: var(--purple-0);
    border-color: var(--green);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(10, 4, 32, 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(--lavender);
    font-family: var(--sans);
    font-weight: 500;
}
.paytable-grid span {
    background: rgba(74, 222, 128, 0.04);
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--line);
}
.paytable-grid b {
    color: var(--green);
    font-family: var(--display);
    font-size: 1.1rem;
    margin-right: 4px;
    font-weight: 800;
}
.paytable-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    font-family: var(--serif);
    font-style: italic;
    margin-top: 12px;
}
@media (max-width: 600px) {
    .reel { width: 60px; height: 180px; }
    .cell { font-size: 1.6rem; }
    .bookofra-machine { padding: 16px 22px; }
    .paytable-grid { grid-template-columns: repeat(2, 1fr); font-size: 0.85rem; }
}

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

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

.win-cta-text {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.win-cta-text em { color: var(--green); 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(--green), var(--green-2) 60%, var(--green-dk));
    color: var(--purple-0);
    padding: 20px 50px;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--radius-pill);
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 0 var(--green-dk),
        0 14px 36px rgba(74, 222, 128, 0.45);
}
.flashing-green { animation: btnPulse 1.8s ease-in-out infinite; }
@media (max-width: 600px) { .btn-win-real { padding: 16px 28px; font-size: 0.9rem; } }

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

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

.rec-card {
    background: linear-gradient(135deg, var(--purple-3), var(--purple-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(--green), var(--violet), transparent);
}
.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line-violet);
    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(--lavender);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}
.btn-play {
    background: linear-gradient(180deg, var(--green), var(--green-2) 60%, var(--green-dk)) !important;
    color: var(--purple-0) !important;
    font-family: var(--display);
    font-size: 0.92rem;
    padding: 16px 32px;
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 0 var(--green-dk),
        0 12px 28px rgba(74, 222, 128, 0.35);
    letter-spacing: 1.5px;
    font-weight: 800;
}

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 60px 20px;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    font-family: var(--mono);
    text-transform: uppercase;
    font-weight: 500;
}
.load-error { text-align: center; color: var(--pink); 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(--green); }
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }

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

.site-footer {
    background: linear-gradient(180deg, var(--purple-1), var(--purple-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: none;
    margin-bottom: 22px;
    font-weight: 800;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 22px;
}
.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: -0.005em;
    text-transform: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green); }
.footer-disclaimer {
    color: var(--dim);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin: 0;
    font-weight: 500;
}
.footer { display: none; }

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

.article-body {
    background: linear-gradient(180deg, var(--purple-3), var(--purple-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(--serif);
    font-size: 1.12rem;
    line-height: 1.75;
    font-weight: 400;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}
.article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), var(--violet), transparent);
}
.article-body h2 {
    font-family: var(--display);
    color: var(--white);
    margin: 36px 0 14px;
    letter-spacing: -0.03em;
    font-size: 1.75rem;
    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(--gold);
    font-style: italic;
    font-weight: 500;
}
.article-body a {
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
    font-weight: 600;
}
.article-body a:hover { text-decoration-color: var(--green); color: var(--green-2); }

.article-body .lead {
    font-family: var(--serif);
    font-size: 1.32rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 3px solid var(--green);
    line-height: 1.55;
    letter-spacing: 0.005em;
    font-weight: 400;
}

.article-body .verdict {
    margin-top: 28px;
    padding: 22px 26px;
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid var(--line-green);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.55;
    font-style: italic;
    font-weight: 400;
}

.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: 48px; position: relative; counter-increment: step; }
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--green), var(--violet));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(169, 85, 247, 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: 2px;
    color: var(--green);
    font-size: 1rem;
    text-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(10, 4, 32, 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.3rem;
    color: var(--green);
    line-height: 1;
    text-shadow: 0 0 16px rgba(74, 222, 128, 0.4);
    font-weight: 800;
    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(--green);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.article-facts dd {
    margin: 0;
    color: var(--white);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.005em;
}

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

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.18), transparent 70%),
        var(--purple-2);
    border: 1px solid var(--green);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 0 50px rgba(74, 222, 128, 0.25);
    position: relative;
    overflow: hidden;
}
.bonus-headline {
    font-family: var(--display);
    background: linear-gradient(120deg, var(--green), var(--violet) 50%, var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.bonus-sub {
    margin-top: 12px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
}
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 7px 18px;
    background: rgba(74, 222, 128, 0.12);
    color: var(--green);
    border: 1px solid var(--line-green);
    border-radius: var(--radius-pill);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

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

/* ========================================================================== */
/* FAQ panel                                                                  */
/* ========================================================================== */

.faq {
    margin: 0 auto 60px;
    max-width: 920px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: linear-gradient(180deg, var(--purple-3), var(--purple-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.25s;
}
.faq-item[open] {
    border-color: var(--line-green);
    box-shadow: 0 8px 22px rgba(74, 222, 128, 0.15);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    position: relative;
    padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--lavender);
    font-family: var(--serif);
    font-size: 1.02rem;
    line-height: 1.65;
}
.faq-item p strong { color: var(--white); font-weight: 700; }
.faq-item p em { color: var(--gold); font-style: italic; }
.faq-item p a {
    color: var(--green);
    text-decoration: underline;
    text-decoration-color: rgba(74, 222, 128, 0.4);
    text-underline-offset: 4px;
    font-weight: 600;
}
.faq-item p a:hover { text-decoration-color: var(--green); }

/* ========================================================================== */
/* Closing SEO prose                                                          */
/* ========================================================================== */

.seo-prose {
    margin: 0 auto 80px;
    max-width: 920px;
}
.seo-prose .prose {
    background: linear-gradient(180deg, var(--purple-3), var(--purple-2));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    color: var(--text);
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.75;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.seo-prose .prose p { margin: 0 0 18px; }
.seo-prose .prose p:last-child { margin-bottom: 0; }
.seo-prose .prose strong { color: var(--white); font-weight: 700; }
.seo-prose .prose em { color: var(--gold); font-style: italic; }

@media (max-width: 640px) {
    .seo-prose .prose { padding: 26px 24px; font-size: 1.02rem; }
}

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

::selection { background: var(--green); color: var(--purple-0); }
::-moz-selection { background: var(--green); color: var(--purple-0); }
