/* /momobet - ultra-stylish editorial luxe theme
   Noir + cream + signature peach-coral + rose-gold
   Fonts: Fraunces (variable serif w/ SOFT axis) + Inter Tight + Space Mono
   Vibe: high-end fashion magazine x boutique hotel x perfume ad
   Animation: slow drifting peach-blossom petals, single signature element
*/

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

:root {
    /* Editorial palette */
    --noir:        #0d0d0e;
    --noir-2:      #161618;
    --noir-3:      #1f1f22;
    --ink:         #0a0a0a;

    --cream:       #f5f1ea;
    --bone:        #e8e2d6;
    --paper:       #efe9dd;

    /* Signature accent - peach blossom / coral */
    --coral:       #ff7a8a;
    --coral-soft:  #ffb199;
    --peach:       #ffd1a3;
    --blush:       #ffc4b8;
    --rose-gold:   #d4a574;
    --rose-gold-2: #b07a5b;

    --text:        #e8e2d6;
    --muted:       #8b8478;
    --line:        rgba(245, 241, 234, 0.12);
    --line-soft:   rgba(245, 241, 234, 0.06);

    /* Typography */
    --serif:   'Fraunces', 'Bodoni Moda', Georgia, serif;
    --sans:    'Inter Tight', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
    --mono:    'Space Mono', 'SF Mono', Menlo, monospace;

    /* Variable font axis defaults for Fraunces */
    --fraunces-soft: "SOFT" 50, "opsz" 96;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--noir);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    font-feature-settings: "ss01", "ss02", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(ellipse at 70% 0%, #2a1a1c 0%, #14101a 38%, #0a0a0c 75%, #050506 100%);
}

/* Subtle noise via SVG-like gradient pattern */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(255, 122, 138, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 28% 42%, rgba(212, 165, 116, 0.3) 50%, transparent 60%),
        radial-gradient(1px 1px at 73% 22%, rgba(255, 209, 163, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 88% 65%, rgba(255, 122, 138, 0.3) 50%, transparent 60%),
        radial-gradient(1px 1px at 45% 88%, rgba(212, 165, 116, 0.3) 50%, transparent 60%);
    opacity: 0.6;
}

/* Massive coral glow blooms - the editorial "perfume ad" centerpiece */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 600px at 85% 15%, rgba(255, 122, 138, 0.18), transparent 60%),
        radial-gradient(ellipse 800px 500px at 10% 90%, rgba(212, 165, 116, 0.14), transparent 60%),
        radial-gradient(ellipse 600px 400px at 50% 50%, rgba(255, 177, 153, 0.06), transparent 60%);
    animation: glowDrift 28s ease-in-out infinite alternate;
}

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

/* Editorial grid lines - subtle vertical guides */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, transparent 0, transparent calc(50% - 0.5px), rgba(245, 241, 234, 0.04) calc(50% - 0.5px), rgba(245, 241, 234, 0.04) calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%),
        linear-gradient(90deg, transparent 0, transparent calc(20% - 0.5px), rgba(245, 241, 234, 0.025) calc(20% - 0.5px), rgba(245, 241, 234, 0.025) calc(20% + 0.5px), transparent calc(20% + 0.5px), transparent 100%),
        linear-gradient(90deg, transparent 0, transparent calc(80% - 0.5px), rgba(245, 241, 234, 0.025) calc(80% - 0.5px), rgba(245, 241, 234, 0.025) calc(80% + 0.5px), transparent calc(80% + 0.5px), transparent 100%);
}

/* Drifting peach blossom petals */
.bg-petals {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    bottom: -40px;
    color: var(--coral);
    text-shadow: 0 0 8px rgba(255, 122, 138, 0.4);
    animation-name: petalFall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

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

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

.hero {
    text-align: center;
    padding: 96px 20px 56px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    margin: 0 auto 36px;
    background: linear-gradient(180deg, transparent, var(--coral) 50%, transparent);
}

.hero-eyebrow {
    color: var(--coral);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 6px;
    margin-bottom: 26px;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 1px;
    background: var(--coral);
    opacity: 0.55;
}

.hero h1 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 60;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    margin: 0 0 22px;
    color: var(--cream);
    letter-spacing: -0.025em;
    font-weight: 350;
    line-height: 1.02;
}

.hero h1 .accent {
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
    color: var(--coral);
    background: linear-gradient(120deg, var(--coral), var(--peach), var(--rose-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.subtitle {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.accent {
    color: var(--coral);
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 96, "wght" 400, "SOFT" 100;
}

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

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 44px 44px 44px 56px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(22, 22, 24, 0.85), rgba(13, 13, 14, 0.95));
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: border-color 0.4s;
}

/* Hairline accent on left edge */
.casino-hero::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--coral), var(--peach), var(--rose-gold));
}

/* Subtle corner mark */
.casino-hero::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-top: 1px solid var(--coral);
    border-right: 1px solid var(--coral);
    opacity: 0.6;
}

.casino-hero:hover { border-color: rgba(255, 122, 138, 0.3); }

.badge-recommended {
    position: absolute;
    top: 22px;
    left: 56px;
    background: transparent;
    color: var(--coral);
    font-family: var(--mono);
    font-weight: 400;
    padding: 0;
    font-size: 0.65rem;
    letter-spacing: 4px;
    border-radius: 0;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.badge-recommended::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--coral);
    animation: pulseDot 2s ease-in-out infinite;
}

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

.hero-rank {
    position: absolute;
    top: 22px;
    right: 36px;
    background: transparent;
    color: var(--cream);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--mono);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: none;
    z-index: 2;
    letter-spacing: 2px;
}
.hero-rank::before {
    content: 'No.';
    color: var(--muted);
    margin-right: 4px;
    font-size: 0.65rem;
}

.hero-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--line);
    display: block;
    filter: contrast(1.05) saturate(0.95);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-logo:hover img { transform: scale(1.03); }

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

.hero-name {
    margin: 4px 0 8px;
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 80;
    color: var(--cream);
    font-size: clamp(2rem, 3.4vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 400;
    line-height: 1.05;
}

.hero-tagline {
    color: var(--muted);
    font-family: var(--mono);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 0.7rem;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-bonus {
    background: transparent;
    border: none;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
    margin-top: 18px;
    border-radius: 0;
    position: relative;
}

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

.bonus-text {
    display: block;
    color: var(--cream);
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 60;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

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

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

.hero-cta-sub {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--mono);
}

@media (max-width: 800px) {
    .casino-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 60px 28px 36px;
        gap: 24px;
    }
    .badge-recommended { left: 28px; }
    .hero-rank { right: 28px; }
    .hero-logo img { width: 180px; height: 180px; }
    .hero-bonus { width: 100%; }
}

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

.alternatives {
    display: grid;
    gap: 1px;
    margin-bottom: 80px;
    background: var(--line);
    border: 1px solid var(--line);
}

.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; } }

.casino-card {
    position: relative;
    padding: 36px 24px 28px;
    text-align: center;
    background: var(--noir);
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.35s, transform 0.35s;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.casino-card:hover {
    background: var(--noir-2);
    transform: translateY(-4px);
}

.casino-card:hover::before { opacity: 1; }

.rank {
    position: absolute;
    top: 14px;
    left: 16px;
    background: transparent;
    color: var(--muted);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--mono);
    font-weight: 400;
    display: block;
    font-size: 0.65rem;
    box-shadow: none;
    letter-spacing: 2px;
}
.rank::before {
    content: 'N°';
    color: var(--coral);
    margin-right: 3px;
}

.logo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin: 8px auto 18px;
    display: block;
    border-radius: 2px;
    border: 1px solid var(--line);
    filter: contrast(1.05) saturate(0.95);
    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(--serif);
    font-variation-settings: "opsz" 96, "wght" 400, "SOFT" 60;
    font-size: 1.35rem;
    margin: 0 0 12px;
    color: var(--cream);
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* Stars */
.rating { margin-bottom: 14px; font-size: 0.85rem; letter-spacing: 2px; }
.star.full { color: var(--coral); }
.star.half { color: var(--coral); opacity: 0.5; }
.star.empty { color: rgba(255, 122, 138, 0.18); }

.rating-num {
    color: var(--cream);
    font-size: 0.7rem;
    margin-left: 8px;
    font-family: var(--mono);
    font-weight: 400;
    letter-spacing: 1.5px;
}

.bonus {
    background: transparent;
    border: none;
    border-top: 1px solid var(--line);
    padding: 14px 0 16px;
    margin-bottom: 18px;
    text-align: left;
    min-height: 78px;
    border-radius: 0;
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 60;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--cream);
}

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

.btn {
    display: inline-block;
    padding: 16px 30px;
    font-family: var(--mono);
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid currentColor;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.72rem;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
    background: transparent;
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--ink);
    border-color: transparent;
    box-shadow: 0 0 0 1px var(--coral);
    font-weight: 700;
}
.btn-claim:hover { box-shadow: 0 0 0 1px var(--coral), 0 8px 24px rgba(255, 122, 138, 0.3); }

.btn-hero {
    padding: 20px 42px;
    font-size: 0.78rem;
    color: var(--ink);
    white-space: nowrap;
    box-shadow: 0 0 0 1px var(--coral), 0 12px 30px rgba(255, 122, 138, 0.25);
    border: none;
    font-weight: 700;
    letter-spacing: 5px;
}

.flashing {
    animation: btnFlash 2.4s ease-in-out infinite;
}

@keyframes btnFlash {
    0%, 100% {
        box-shadow: 0 0 0 1px var(--coral), 0 8px 24px rgba(255, 122, 138, 0.25);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 0 1px var(--coral), 0 12px 38px rgba(255, 122, 138, 0.55);
        filter: brightness(1.08);
    }
}

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

.section-title {
    text-align: center;
    color: var(--cream);
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 80;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 24px 0 8px;
    letter-spacing: -0.02em;
    font-weight: 350;
    line-height: 1.05;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 40px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

.games-section {
    background:
        linear-gradient(180deg, rgba(22, 22, 24, 0.7), rgba(13, 13, 14, 0.85));
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 56px 32px;
    margin-bottom: 80px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
}

.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 28px 32px;
    background:
        linear-gradient(180deg, #1a1a1c 0%, #0d0d0e 100%);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 122, 138, 0.1),
        0 24px 60px rgba(0, 0, 0, 0.6);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 4px;
    background: #0a0a0a;
    padding: 8px;
    border-radius: 2px;
    border: 1px solid var(--line);
}

.reel {
    width: 88px;
    height: 264px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 50%, var(--cream) 100%);
    border-radius: 2px;
    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(--serif);
    font-variation-settings: "opsz" 96, "wght" 500, "SOFT" 40;
    font-weight: 500;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    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, #fff 0%, var(--blush) 100%);
    box-shadow: inset 0 0 0 1px var(--coral);
}

.cell.win {
    background: linear-gradient(180deg, var(--coral) 0%, var(--coral-soft) 100%);
    color: var(--ink);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(255, 122, 138, 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(255, 122, 138, 0.45), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(255, 122, 138, 0.85), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--coral);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--coral);
    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(--serif);
    font-variation-settings: "opsz" 96, "wght" 400, "SOFT" 80;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 22px;
    min-height: 32px;
    letter-spacing: -0.01em;
    font-style: italic;
}

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

.btn-bet {
    background: linear-gradient(135deg, var(--coral), var(--coral-soft));
    color: var(--ink);
    padding: 18px 50px;
    font-family: var(--mono);
    font-size: 0.78rem;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 22px rgba(255, 122, 138, 0.3);
    min-width: 240px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    cursor: pointer;
}

.btn-bet:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(255, 122, 138, 0.45); }
.btn-bet:active { transform: translateY(0); }
.btn-bet:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.balance {
    color: var(--cream);
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.balance span {
    color: var(--coral);
    font-family: var(--serif);
    font-variation-settings: "opsz" 96, "wght" 400, "SOFT" 80;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: none;
    margin-left: 6px;
    font-style: italic;
}

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

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

.slot-amount-btn {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--line);
    padding: 11px 20px;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s;
    text-transform: uppercase;
}
.slot-amount-btn:hover { background: var(--noir-2); border-color: rgba(255, 122, 138, 0.4); }
.slot-amount-btn.active {
    background: var(--coral);
    color: var(--ink);
    border-color: var(--coral);
    font-weight: 700;
}

/* Paytable */
.paytable {
    margin-top: 28px;
    padding: 22px;
    background: rgba(13, 13, 14, 0.55);
    border: 1px solid var(--line);
    border-radius: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paytable-title {
    color: var(--muted);
    font-family: var(--mono);
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

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

.paytable-grid span {
    background: rgba(255, 122, 138, 0.05);
    padding: 8px 10px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--line);
    letter-spacing: 1px;
}

.paytable-grid b {
    color: var(--coral);
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 500, "SOFT" 60;
    font-size: 1.2rem;
    margin-right: 4px;
    font-weight: 500;
    font-style: italic;
}

.paytable-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 80;
    margin-top: 14px;
}

@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: 40px 24px;
    border: 1px solid var(--coral);
    border-radius: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 122, 138, 0.12), transparent 70%),
        rgba(13, 13, 14, 0.85);
    box-shadow: 0 0 60px rgba(255, 122, 138, 0.2);
    position: relative;
    overflow: hidden;
}

.win-cta::before,
.win-cta::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--coral);
}
.win-cta::before {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}
.win-cta::after {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

.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(--cream);
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 80;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 350;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.win-cta-text em {
    color: var(--coral);
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
}

.win-cta-sub {
    margin-top: 16px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--coral-soft) 50%, var(--peach));
    background-size: 200% 100%;
    color: var(--ink);
    padding: 22px 52px;
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 5px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(255, 122, 138, 0.35);
}

.flashing-green {
    animation: coralFlash 2s ease-in-out infinite, coralSlide 6s linear infinite;
}

@keyframes coralFlash {
    0%, 100% {
        box-shadow: 0 12px 32px rgba(255, 122, 138, 0.35);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 16px 50px rgba(255, 122, 138, 0.7), 0 0 80px rgba(255, 209, 163, 0.5);
        filter: brightness(1.1);
    }
}

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

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

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

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

.rec-card {
    background:
        linear-gradient(135deg, rgba(22, 22, 24, 0.85), rgba(13, 13, 14, 0.95));
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rec-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--coral), var(--rose-gold));
}

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--line);
    filter: contrast(1.05) saturate(0.95);
}

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

.rec-info h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 80;
    color: var(--cream);
    font-size: 2.1rem;
    letter-spacing: -0.02em;
    font-weight: 400;
    line-height: 1.05;
}

.rec-bonus {
    color: var(--text);
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 60;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
}

.btn-play {
    background: linear-gradient(135deg, var(--coral), var(--coral-soft));
    color: var(--ink);
    font-family: var(--mono);
    font-size: 0.78rem;
    padding: 18px 36px;
    border: none;
    box-shadow: 0 12px 30px rgba(255, 122, 138, 0.3);
    letter-spacing: 4px;
    font-weight: 700;
}

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 60px 20px;
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-family: var(--mono);
    text-transform: uppercase;
}

.load-error {
    text-align: center;
    color: #ff5a5f;
    padding: 24px;
    font-family: var(--mono);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

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

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.25s, filter 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(--coral);
}
a.brand-link.logo,
a.brand-link.hero-logo {
    display: block;
}

/* ========================================================================== */
/* Site header + main navigation                                              */
/* ========================================================================== */

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

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--serif);
    font-variation-settings: "opsz" 96, "wght" 400, "SOFT" 80;
    color: var(--cream);
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: none;
    font-weight: 400;
    transition: filter 0.2s;
}
.site-logo:hover { filter: brightness(1.15); }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    color: var(--ink);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 122, 138, 0.4);
}

.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: 10px 18px;
    color: var(--muted);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
    position: relative;
}
.site-nav a:hover {
    color: var(--cream);
}
.site-nav a.active {
    color: var(--coral);
}
.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--coral);
    border-radius: 50%;
    transform: translateX(-50%);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 14px 18px; }
    .site-logo { font-size: 1.15rem; }
    .logo-mark { width: 28px; height: 28px; font-size: 0.85rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 8px 12px; font-size: 0.62rem; letter-spacing: 2px; }
}

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

.site-footer {
    background: var(--ink);
    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(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 80;
    color: var(--cream);
    font-size: 2rem;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 22px;
    font-weight: 350;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 22px;
}
.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--coral); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin: 0;
    opacity: 0.7;
}

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

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

.article-body {
    background:
        linear-gradient(180deg, rgba(22, 22, 24, 0.5), rgba(13, 13, 14, 0.7));
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 56px 64px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 1.06rem;
    line-height: 1.8;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
}

.article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--coral);
}

.article-body h2 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 80;
    color: var(--cream);
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
    font-size: 2rem;
    font-weight: 350;
    line-height: 1.1;
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; font-weight: 300; }
.article-body strong { color: var(--cream); font-weight: 600; }
.article-body em {
    color: var(--coral);
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 100;
    font-style: italic;
}
.article-body a {
    color: var(--coral);
    text-decoration: underline;
    text-decoration-color: rgba(255, 122, 138, 0.35);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--coral); }

.article-body .lead {
    font-family: var(--serif);
    font-variation-settings: "opsz" 96, "wght" 350, "SOFT" 80;
    font-size: 1.5rem;
    color: var(--cream);
    font-style: normal;
    margin-bottom: 32px;
    padding-left: 0;
    border-left: none;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-weight: 350;
}

/* Drop cap on first paragraph after .lead */
.article-body .lead + p::first-letter {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 100;
    font-size: 4.4rem;
    line-height: 0.85;
    color: var(--coral);
    float: left;
    padding: 8px 12px 0 0;
    margin-top: 6px;
    font-style: italic;
}

.article-body .verdict {
    margin-top: 30px;
    padding: 22px 24px;
    background: rgba(255, 122, 138, 0.04);
    border: 1px solid var(--line);
    border-left: 2px solid var(--coral);
    border-radius: 0;
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 80;
    font-size: 1.15rem;
    line-height: 1.5;
}

.step-list, .check-list {
    margin: 16px 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, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--coral);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 400;
}
.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: 12px;
    width: 12px;
    height: 1px;
    background: var(--coral);
}

/* Review meta block */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    background: rgba(13, 13, 14, 0.5);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 28px 32px;
    margin-bottom: 36px;
    position: relative;
}
.article-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--coral);
}
.article-rating {
    text-align: center;
    padding-right: 28px;
    border-right: 1px solid var(--line);
}
.big-rating {
    display: block;
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 100;
    font-size: 4rem;
    color: var(--coral);
    line-height: 1;
    font-style: italic;
    font-weight: 350;
    letter-spacing: -0.02em;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-top: 8px;
    text-transform: uppercase;
}
.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: 16px 28px;
}
.article-facts > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.article-facts dt {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.article-facts dd {
    margin: 0;
    color: var(--cream);
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 60;
    font-weight: 400;
    font-size: 1.1rem;
}

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

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 48px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 122, 138, 0.18), transparent 70%),
        rgba(13, 13, 14, 0.6);
    border: 1px solid var(--coral);
    border-radius: 0;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 122, 138, 0.15);
    position: relative;
    overflow: hidden;
}
.bonus-spotlight::before,
.bonus-spotlight::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--coral);
}
.bonus-spotlight::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.bonus-spotlight::after  { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.bonus-headline {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 100;
    color: var(--cream);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 350;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.bonus-headline em {
    color: var(--coral);
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
}
.bonus-sub {
    margin-top: 12px;
    color: var(--muted);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1.1rem;
    font-style: normal;
}
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: var(--coral);
    border: 1px solid var(--coral);
    border-radius: 0;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ========================================================================== */
/* Top 3 alternatives grid                                                    */
/* ========================================================================== */

.top-alternatives { margin: 36px auto 80px; }
.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; } }

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

.play-now-cta {
    margin: 36px auto;
    max-width: 880px;
    padding: 36px 32px;
    text-align: center;
    border: 1px solid var(--coral);
    border-radius: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 122, 138, 0.1), transparent 70%),
        rgba(13, 13, 14, 0.6);
    box-shadow: 0 0 40px rgba(255, 122, 138, 0.18);
    position: relative;
    overflow: hidden;
}

.play-now-text {
    color: var(--cream);
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 80;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 350;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    line-height: 1.2;
}
.play-now-text em {
    color: var(--coral);
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--coral-soft) 50%, var(--peach));
    background-size: 200% 100%;
    color: var(--ink);
    padding: 20px 44px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(255, 122, 138, 0.35);
}

.flashing-orange {
    animation: coralFlash 2s ease-in-out infinite, coralSlide 6s linear infinite;
}

@media (max-width: 600px) {
    .btn-inline-play { padding: 16px 24px; font-size: 0.7rem; letter-spacing: 3px; }
}

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

::selection { background: var(--coral); color: var(--ink); }
::-moz-selection { background: var(--coral); color: var(--ink); }
