/* /batcasino2 - Imperial Asian "Five Blessings" / lucky-bat theme
   蝠 = fú (bat) = homophone of 福 (fortune) - bats are auspicious in Chinese culture.
   Vermilion red + imperial gold + jade + ink + ivory.
   Fonts: ZCOOL XiaoWei (display, oriental Latin), Forum (caps), Domine (body),
          Ma Shan Zheng (calligraphic accents)
   Vibe: temple lacquer-box, lantern-lit, hand-painted scroll
   Animation: floating lucky bats, fortune characters, cherry blossoms
*/

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

:root {
    /* Imperial palette */
    --ink:         #0d0608;
    --ink-2:       #1a0a0c;
    --bordeaux:    #2a0a10;
    --crimson-dk:  #5a0a14;
    --crimson:     #a8172a;
    --vermilion:   #c41e3a;          /* Imperial vermilion */
    --vermilion-2: #e0334d;

    --gold:        #b8860b;
    --gold-im:     #d4a44a;          /* Imperial gold */
    --gold-bright: #f4d878;
    --gold-pale:   #ead8a4;
    --gold-soft:   rgba(212, 164, 74, 0.55);

    --jade:        #0f7a5a;
    --jade-2:      #14a878;

    --ivory:       #f5e6c8;
    --paper:       #ebd9a8;
    --text:        #ead8a4;
    --muted:       #b09870;
    --dim:         #7a6850;

    --line:        rgba(212, 164, 74, 0.22);
    --line-soft:   rgba(212, 164, 74, 0.10);
    --line-strong: rgba(212, 164, 74, 0.45);

    /* Type */
    --display: 'ZCOOL XiaoWei', 'Bodoni Moda', Georgia, serif;
    --caps:    'Forum', 'Trajan Pro', serif;
    --serif:   'Domine', 'Cormorant Garamond', Georgia, serif;
    --body:    'Domine', Georgia, 'Times New Roman', serif;
    --hand:    'Ma Shan Zheng', cursive;
    --han:     'ZCOOL XiaoWei', 'Songti SC', 'STSong', serif;
}

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

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

/* Layer 1: deep crimson lacquer wash */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 0%, #5a0a14 0%, #2a0a10 40%, #1a0608 75%, #0a0204 100%);
}

/* Layer 2: subtle paper grain - hand-painted scroll feel */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(244, 216, 120, 0.04) 0, transparent 80px),
        radial-gradient(circle at 78% 42%, rgba(244, 216, 120, 0.04) 0, transparent 80px),
        radial-gradient(circle at 42% 88%, rgba(244, 216, 120, 0.04) 0, transparent 80px),
        radial-gradient(1px 1px at 20% 30%, rgba(244, 216, 120, 0.4) 50%, transparent 60%),
        radial-gradient(1px 1px at 50% 60%, rgba(244, 216, 120, 0.3) 50%, transparent 60%),
        radial-gradient(1px 1px at 80% 20%, rgba(244, 216, 120, 0.4) 50%, transparent 60%);
    opacity: 0.7;
}

/* Layer 3: lantern bloom + side wall sconces (reds) */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 400px at 50% 10%, rgba(212, 164, 74, 0.12), transparent 70%),
        radial-gradient(ellipse 500px 280px at 8% 60%, rgba(168, 23, 42, 0.18), transparent 70%),
        radial-gradient(ellipse 500px 280px at 92% 60%, rgba(168, 23, 42, 0.18), transparent 70%),
        radial-gradient(ellipse 700px 220px at 50% 100%, rgba(15, 122, 90, 0.10), transparent 70%);
}

/* Layer 4: heavy lacquer-box vignette */
.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.85) 100%);
}

/* Layer 5: lattice pattern - traditional Chinese window screen.
   Made entirely of CSS gradients to evoke lacquer-box latticework. */
.bg-lattice {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(45deg, transparent 48%, rgba(212, 164, 74, 0.04) 49%, rgba(212, 164, 74, 0.04) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 164, 74, 0.04) 49%, rgba(212, 164, 74, 0.04) 51%, transparent 52%),
        linear-gradient(0deg, transparent 49%, rgba(212, 164, 74, 0.025) 50%, transparent 51%);
    background-size: 60px 60px, 60px 60px, 120px 120px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Floating fortune symbols - the auspicious "rain of blessings" */
.bg-fortune {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fortune {
    position: absolute;
    line-height: 1;
    text-shadow: 0 0 10px currentColor, 0 2px 0 rgba(0,0,0,0.3);
    will-change: transform, opacity;
    animation-name: fortuneDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.fortune-han {
    font-family: var(--han);
    font-weight: 400;
}
.fortune-orn {
    font-family: 'Domine', serif;
}

@keyframes fortuneDrift {
    0% {
        transform: translate(0, 0) rotate(var(--r1)) scale(1);
    }
    50% {
        transform: translate(calc(var(--dx) * 0.5), calc(var(--dy) * 0.5)) rotate(calc((var(--r1) + var(--r2)) * 0.5)) scale(1.06);
    }
    100% {
        transform: translate(var(--dx), var(--dy)) rotate(var(--r2)) scale(0.94);
    }
}

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

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

.hero::before,
.hero::after {
    content: '蝠 福 蝠';
    display: block;
    font-family: var(--han);
    color: var(--gold-im);
    font-size: 1.6rem;
    letter-spacing: 18px;
    margin: 14px auto;
    text-shadow: 0 0 16px rgba(212, 164, 74, 0.5);
    line-height: 1;
    opacity: 0.85;
}

.hero-eyebrow {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 1.1rem;
    letter-spacing: 8px;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(244, 216, 120, 0.35);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 7.5vw, 5.6rem);
    margin: 0 0 22px;
    color: var(--ivory);
    letter-spacing: 0.005em;
    font-weight: 400;
    line-height: 1.1;
    text-shadow:
        0 2px 0 rgba(0,0,0,0.5),
        0 4px 30px rgba(212, 164, 74, 0.35);
}

.hero h1 .accent {
    background: linear-gradient(120deg, var(--gold-bright), var(--vermilion-2) 50%, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: normal;
    font-family: var(--display);
}

.subtitle {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.18rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

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

.accent {
    color: var(--gold-bright);
    font-family: var(--display);
}

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

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 38px 40px;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(42, 10, 16, 0.92), rgba(13, 6, 8, 0.96));
    border: 1px solid var(--gold-im);
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(13, 6, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(168, 23, 42, 0.25);
}

/* Corner ornaments - lucky bat + double-happiness */
.casino-hero::before,
.casino-hero::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(212, 164, 74, 0.6);
    font-weight: 400;
    line-height: 1;
}
.casino-hero::before {
    content: '蝠';
    top: 12px; left: 16px;
}
.casino-hero::after {
    content: '囍';
    bottom: 12px; right: 16px;
    color: var(--vermilion-2);
    text-shadow: 0 0 8px rgba(224, 51, 77, 0.5);
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--vermilion-2), var(--vermilion) 50%, var(--crimson));
    color: var(--gold-bright);
    font-family: var(--caps);
    font-weight: 400;
    padding: 8px 28px;
    font-size: 0.85rem;
    letter-spacing: 5px;
    border-radius: 2px;
    border: 1px solid var(--gold-im);
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
}

.hero-rank {
    position: absolute;
    top: 22px;
    right: 38px;
    background: transparent;
    color: var(--gold-bright);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--caps);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: none;
    z-index: 2;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.hero-rank::before {
    content: 'No.';
    color: var(--muted);
    margin-right: 5px;
    font-size: 0.85rem;
}

.hero-logo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid var(--gold-im);
    display: block;
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.4),
        0 8px 24px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-logo:hover img { transform: scale(1.03); }

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

.hero-name {
    margin: 4px 0 8px;
    font-family: var(--display);
    color: var(--ivory);
    font-size: clamp(2rem, 3.4vw, 3rem);
    letter-spacing: 0.005em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.hero-tagline {
    color: var(--muted);
    font-family: var(--caps);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-bonus {
    background: linear-gradient(180deg, rgba(212, 164, 74, 0.07), rgba(168, 23, 42, 0.04));
    border: 1px solid var(--line);
    border-left: 3px solid var(--vermilion);
    padding: 16px 20px;
    margin-top: 16px;
    border-radius: 0 4px 4px 0;
}

.bonus-label {
    display: block;
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.bonus-text {
    display: block;
    color: var(--ivory);
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.005em;
}

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

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

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

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

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

.alternatives {
    display: grid;
    gap: 24px;
    margin-bottom: 80px;
}

.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: 30px 22px 24px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(42, 10, 16, 0.92), rgba(13, 6, 8, 0.96));
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

/* Corner brackets - lacquer-box framing */
.casino-card::before,
.casino-card::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--gold-im);
    opacity: 0.55;
    transition: opacity 0.3s;
}
.casino-card::before {
    top: 8px; left: 8px;
    border-right: none; border-bottom: none;
}
.casino-card::after {
    bottom: 8px; right: 8px;
    border-left: none; border-top: none;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bright);
    box-shadow:
        inset 0 0 0 1px rgba(212, 164, 74, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 26px rgba(212, 164, 74, 0.18);
}
.casino-card:hover::before,
.casino-card:hover::after { opacity: 1; }

.rank {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: var(--gold-bright);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--caps);
    font-weight: 400;
    display: block;
    font-size: 0.85rem;
    box-shadow: none;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}
.rank::before {
    content: 'No.';
    color: var(--muted);
    margin-right: 4px;
    font-size: 0.78rem;
}

.logo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin: 18px auto 18px;
    display: block;
    border-radius: 3px;
    border: 2px solid var(--line-strong);
    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.5rem;
    margin: 0 0 12px;
    color: var(--ivory);
    letter-spacing: 0.005em;
    font-weight: 400;
}

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

.rating-num {
    color: var(--ivory);
    font-size: 0.85rem;
    margin-left: 8px;
    font-family: var(--caps);
    letter-spacing: 1.5px;
}

.bonus {
    background: linear-gradient(180deg, rgba(212, 164, 74, 0.05), rgba(212, 164, 74, 0.02));
    border: 1px solid var(--line);
    border-left: 3px solid var(--vermilion);
    padding: 12px 14px;
    margin-bottom: 16px;
    text-align: left;
    min-height: 76px;
    border-radius: 0 4px 4px 0;
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--paper);
    font-style: italic;
}

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--caps);
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    border: 1px solid currentColor;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    background: transparent;
    color: var(--ivory);
}

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

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--ink);
    border-color: rgba(0,0,0,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.45);
    font-weight: 400;
}

.btn-hero {
    padding: 18px 38px;
    font-size: 1rem;
    color: var(--ink);
    white-space: nowrap;
    box-shadow:
        0 4px 0 rgba(0,0,0,0.5),
        0 0 28px rgba(212, 164, 74, 0.45);
    border: 1px solid rgba(0,0,0,0.5);
    letter-spacing: 6px;
}

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

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 4px 0 rgba(0,0,0,0.5), 0 0 22px rgba(212, 164, 74, 0.45);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 4px 0 rgba(0,0,0,0.5), 0 0 40px rgba(196, 30, 58, 0.85);
        filter: brightness(1.1);
    }
}

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

.section-title {
    text-align: center;
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    margin: 24px 0 10px;
    letter-spacing: 0.005em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

.section-title::before,
.section-title::after {
    content: '蝠';
    font-family: var(--han);
    color: var(--gold-bright);
    margin: 0 22px;
    font-size: 0.85em;
    vertical-align: middle;
    text-shadow: 0 0 10px rgba(212, 164, 74, 0.55);
    font-weight: 400;
}

.section-sub {
    text-align: center;
    color: var(--paper);
    margin: 0 0 40px;
    font-family: var(--serif);
    font-size: 1.12rem;
    font-style: italic;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.games-section {
    background:
        linear-gradient(180deg, rgba(42, 10, 16, 0.7), rgba(13, 6, 8, 0.88));
    border: 1px solid var(--gold-im);
    border-radius: 4px;
    padding: 48px 32px;
    margin-bottom: 80px;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(13, 6, 8, 0.55),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.55);
    position: relative;
}

.games-section::before,
.games-section::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.15rem;
    text-shadow: 0 0 10px rgba(212, 164, 74, 0.55);
    font-weight: 400;
    line-height: 1;
}
.games-section::before { content: '蝠'; top: 16px; left: 22px; }
.games-section::after  { content: '財'; bottom: 16px; right: 22px; color: var(--vermilion-2); text-shadow: 0 0 10px rgba(224, 51, 77, 0.5); }

.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, var(--bordeaux) 0%, var(--ink-2) 50%, var(--ink) 100%);
    border: 4px solid var(--gold-bright);
    border-radius: 6px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(0,0,0,0.5),
        0 0 30px rgba(212, 164, 74, 0.35),
        0 12px 30px rgba(0,0,0,0.55);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: #050204;
    padding: 8px;
    border-radius: 3px;
    border: 2px solid #5d4218;
    box-shadow: inset 0 0 14px rgba(0,0,0,0.7);
}

.reel {
    width: 88px;
    height: 264px;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 50%, var(--ivory) 100%);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #5d4218;
}

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

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

.cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-family: var(--display);
    font-weight: 400;
    color: #1c1006;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--paper) 100%);
    border-bottom: 1px solid rgba(110, 77, 32, 0.4);
    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, #fff5d6 0%, #f0d68a 100%);
    box-shadow: inset 0 0 0 1px var(--gold-bright);
}

.cell.win {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-im) 100%);
    color: var(--ink);
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(244, 216, 120, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.55);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 12px rgba(244, 216, 120, 0.5), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 30px rgba(244, 216, 120, 0.95), inset 0 0 14px rgba(255,255,255,0.85); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-bright);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--gold-bright);
    animation: paylinePulse 1.4s ease-in-out infinite;
}
.payline-left  { left: 8px; }
.payline-right { right: 8px; }

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

.bookofra-result {
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--ivory);
    margin-bottom: 22px;
    min-height: 32px;
    letter-spacing: 0.005em;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

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

.btn-bet {
    background: linear-gradient(180deg, var(--vermilion-2), var(--vermilion) 50%, var(--crimson-dk));
    color: var(--gold-bright);
    padding: 16px 50px;
    font-family: var(--caps);
    font-size: 1.05rem;
    border: 2px solid var(--gold-im);
    border-radius: 4px;
    box-shadow: 0 4px 0 var(--crimson-dk), 0 0 18px rgba(168, 23, 42, 0.5);
    min-width: 240px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 400;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

.btn-bet:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--crimson-dk), 0 0 12px rgba(168, 23, 42, 0.4); }
.btn-bet:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.balance {
    color: var(--text);
    font-family: var(--caps);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.balance span {
    color: var(--gold-bright);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 0.005em;
    text-transform: none;
    margin-left: 6px;
}

/* Bet section */
.bet-section { margin: 18px auto; max-width: 480px; }
.bet-section-label {
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 0.85rem;
    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: rgba(212, 164, 74, 0.06);
    color: var(--text);
    border: 1px solid var(--line);
    padding: 10px 20px;
    font-family: var(--caps);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    text-transform: uppercase;
}
.slot-amount-btn:hover { background: rgba(212, 164, 74, 0.14); border-color: var(--gold-bright); }
.slot-amount-btn.active {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-im));
    color: var(--ink);
    border-color: var(--gold-bright);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

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

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

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

.paytable-grid span {
    background: rgba(212, 164, 74, 0.07);
    padding: 9px 10px;
    border-radius: 2px;
    text-align: center;
    border: 1px solid var(--line);
    letter-spacing: 0.5px;
}

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

.paytable-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    font-family: var(--serif);
    font-style: italic;
    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.88rem; }
}

/* ========================================================================== */
/* Win CTA - jade prosperity panel                                            */
/* ========================================================================== */

.win-cta {
    margin-top: 36px;
    text-align: center;
    padding: 40px 26px;
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 164, 74, 0.18), transparent 70%),
        linear-gradient(135deg, rgba(15, 122, 90, 0.45), rgba(13, 6, 8, 0.92));
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(13, 6, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 60px rgba(15, 122, 90, 0.35);
    position: relative;
    overflow: hidden;
}

.win-cta::before,
.win-cta::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(212, 164, 74, 0.6);
    font-weight: 400;
    line-height: 1;
}
.win-cta::before { content: '吉'; top: 14px; left: 18px; }
.win-cta::after  { content: '吉'; bottom: 14px; right: 18px; }

.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(--ivory);
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 22px;
    letter-spacing: 0.005em;
    line-height: 1.15;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6);
}
.win-cta-text em {
    color: var(--gold-bright);
    font-style: normal;
    font-family: var(--display);
}

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

.btn-win-real {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-im) 50%, #8b6508);
    color: var(--ink);
    padding: 22px 52px;
    font-family: var(--caps);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    border: 2px solid #2a1c08;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #2a1c08, 0 0 22px rgba(212, 164, 74, 0.55);
}

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

@keyframes imperialFlash {
    0%, 100% {
        box-shadow: 0 4px 0 #2a1c08, 0 0 22px rgba(212, 164, 74, 0.55);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 4px 0 #2a1c08, 0 0 40px rgba(244, 216, 120, 0.95), 0 0 70px rgba(196, 30, 58, 0.5);
        filter: brightness(1.15);
    }
}

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

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

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

.rec-card {
    background:
        linear-gradient(135deg, rgba(42, 10, 16, 0.92), rgba(13, 6, 8, 0.96));
    border: 1px solid var(--gold-im);
    border-radius: 4px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(13, 6, 8, 0.55),
        inset 0 0 0 7px var(--line-strong),
        0 24px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.rec-card::before,
.rec-card::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(212, 164, 74, 0.55);
    font-weight: 400;
    line-height: 1;
}
.rec-card::before { content: '蝠'; top: 14px; left: 18px; }
.rec-card::after  { content: '財'; bottom: 14px; right: 18px; color: var(--vermilion-2); text-shadow: 0 0 8px rgba(224, 51, 77, 0.5); }

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
    border: 2px solid var(--gold-im);
}

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

.rec-info h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    color: var(--ivory);
    font-size: 2.1rem;
    letter-spacing: 0.005em;
    font-weight: 400;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.rec-bonus {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}

.btn-play {
    background: linear-gradient(180deg, var(--vermilion-2), var(--vermilion) 50%, var(--crimson-dk));
    color: var(--gold-bright);
    font-family: var(--caps);
    font-size: 1rem;
    padding: 16px 32px;
    border: 1px solid var(--gold-im);
    box-shadow: 0 3px 0 var(--crimson-dk), 0 0 16px rgba(168, 23, 42, 0.4);
    letter-spacing: 4px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

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

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--muted);
    padding: 60px 20px;
    font-size: 1.05rem;
    letter-spacing: 1px;
    font-family: var(--serif);
    font-style: italic;
}

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

/* ========================================================================== */
/* 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.03);
    filter: brightness(1.18) drop-shadow(0 0 10px rgba(212, 164, 74, 0.55));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 14px rgba(212, 164, 74, 0.7);
}
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:
        linear-gradient(180deg, rgba(13, 6, 8, 0.96), rgba(42, 10, 16, 0.92));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-im);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.site-header::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--line);
    margin-top: 1px;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--display);
    color: var(--ivory);
    font-size: 1.65rem;
    letter-spacing: 0.005em;
    text-transform: none;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
    transition: filter 0.2s;
}
.site-logo:hover { filter: brightness(1.18); }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold-im) 60%, #6b4a08);
    color: var(--crimson-dk);
    font-family: var(--han);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    border: 2px solid var(--vermilion);
    box-shadow:
        inset 0 0 6px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 4px 14px rgba(212, 164, 74, 0.4);
    line-height: 1;
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 18px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--caps);
    font-size: 0.95rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.site-nav a:hover {
    color: var(--gold-bright);
    background: rgba(212, 164, 74, 0.07);
    border-color: var(--line);
}
.site-nav a.active {
    color: var(--gold-bright);
    background: linear-gradient(180deg, var(--vermilion), var(--crimson));
    border-color: var(--gold-im);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 12px 16px; }
    .site-logo { font-size: 1.2rem; }
    .logo-mark { width: 32px; height: 32px; font-size: 1.05rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.82rem; letter-spacing: 1.6px; }
}

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

.site-footer {
    background:
        linear-gradient(180deg, rgba(13, 6, 8, 0.85), rgba(5, 2, 4, 0.95));
    border-top: 2px solid var(--gold-im);
    padding: 56px 24px 36px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}
.site-footer::before {
    content: '蝠 福 蝠 福 蝠';
    display: block;
    text-align: center;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 18px;
    text-shadow: 0 0 10px rgba(212, 164, 74, 0.55);
    line-height: 1;
    opacity: 0.85;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--ivory);
    font-size: 1.9rem;
    letter-spacing: 0.005em;
    text-transform: none;
    margin-bottom: 18px;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
}
.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--caps);
    font-size: 0.92rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--caps);
    margin: 0;
}

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

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

.article-body {
    background:
        linear-gradient(180deg, rgba(42, 10, 16, 0.55), rgba(13, 6, 8, 0.78));
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 48px 56px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--body);
    font-size: 1.06rem;
    line-height: 1.85;
    box-shadow:
        inset 0 0 0 1px var(--line-soft),
        inset 0 0 0 6px rgba(13, 6, 8, 0.5),
        inset 0 0 0 7px var(--line),
        0 16px 40px rgba(0, 0, 0, 0.5);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--ivory);
    margin: 36px 0 14px;
    letter-spacing: 0.005em;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.15;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.article-body h2::before {
    content: '蝠 ';
    font-family: var(--han);
    color: var(--gold-bright);
    margin-right: 8px;
    font-size: 0.7em;
    vertical-align: middle;
    text-shadow: 0 0 8px rgba(212, 164, 74, 0.5);
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--gold-bright); font-weight: 700; }
.article-body em {
    color: var(--vermilion-2);
    font-family: var(--display);
    font-style: normal;
}
.article-body a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(212, 164, 74, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--gold-bright); }

.article-body .lead {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--ivory);
    font-style: normal;
    margin-bottom: 28px;
    padding-left: 18px;
    border-left: 3px solid var(--vermilion);
    line-height: 1.45;
    letter-spacing: 0.005em;
}

/* Drop cap with red seal background */
.article-body .lead + p::first-letter {
    font-family: var(--display);
    font-size: 4rem;
    line-height: 0.9;
    color: var(--ivory);
    background: var(--vermilion);
    padding: 8px 14px;
    margin: 6px 12px 0 0;
    float: left;
    border: 2px solid var(--gold-im);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.article-body .verdict {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(212, 164, 74, 0.12), rgba(168, 23, 42, 0.08));
    border: 1px solid var(--line);
    border-left: 4px solid var(--vermilion);
    border-radius: 0 4px 4px 0;
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.55;
    font-style: italic;
}

.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: 50px;
    position: relative;
    counter-increment: step;
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: -2px;
    width: 34px;
    height: 34px;
    background: var(--vermilion);
    color: var(--gold-bright);
    border: 1px solid var(--gold-im);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.check-list { list-style: none; padding-left: 0; }
.check-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 12px;
}
.check-list li::before {
    content: '蝠';
    font-family: var(--han);
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold-bright);
    font-size: 1rem;
    text-shadow: 0 0 6px rgba(212, 164, 74, 0.5);
    font-weight: 400;
}

/* Review meta block */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(42, 10, 16, 0.55));
    border: 1px solid var(--gold-im);
    border-radius: 4px;
    padding: 26px 30px;
    margin-bottom: 32px;
    box-shadow: inset 0 0 0 1px var(--line-soft);
}
.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.4rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 18px rgba(212, 164, 74, 0.4);
    font-weight: 400;
    letter-spacing: 0.005em;
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--caps);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-top: 6px;
    text-transform: uppercase;
}
.rating-stars {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.article-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px 24px;
}
.article-facts > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.article-facts dt {
    color: var(--vermilion-2);
    font-family: var(--caps);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.article-facts dd {
    margin: 0;
    color: var(--ivory);
    font-family: var(--display);
    font-weight: 400;
    font-size: 1.18rem;
}

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

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 164, 74, 0.2), transparent 70%),
        linear-gradient(135deg, rgba(168, 23, 42, 0.45), rgba(13, 6, 8, 0.85));
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(13, 6, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 50px rgba(212, 164, 74, 0.3);
    position: relative;
    overflow: hidden;
}
.bonus-spotlight::before,
.bonus-spotlight::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 164, 74, 0.6);
    font-weight: 400;
    line-height: 1;
}
.bonus-spotlight::before { content: '財'; top: 16px; left: 22px; }
.bonus-spotlight::after  { content: '富'; bottom: 16px; right: 22px; color: var(--vermilion-2); text-shadow: 0 0 10px rgba(224, 51, 77, 0.5); }

.bonus-headline {
    font-family: var(--display);
    color: var(--gold-bright);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 0.005em;
    line-height: 1.05;
    text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 22px rgba(212, 164, 74, 0.45);
}
.bonus-sub {
    margin-top: 12px;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
}
.bonus-tag {
    margin-top: 20px;
    display: inline-block;
    padding: 8px 22px;
    background: var(--vermilion);
    color: var(--gold-bright);
    border: 1px solid var(--gold-im);
    border-radius: 2px;
    font-family: var(--caps);
    font-size: 0.92rem;
    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: 32px 32px;
    text-align: center;
    border: 2px solid var(--gold-bright);
    border-radius: 4px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(168, 23, 42, 0.18), transparent 70%),
        linear-gradient(135deg, rgba(42, 10, 16, 0.85), rgba(13, 6, 8, 0.95));
    box-shadow:
        inset 0 0 0 1px var(--line-strong),
        inset 0 0 0 6px rgba(13, 6, 8, 0.6),
        inset 0 0 0 7px var(--line-strong),
        0 0 38px rgba(212, 164, 74, 0.3);
    position: relative;
    overflow: hidden;
}
.play-now-cta::before,
.play-now-cta::after {
    position: absolute;
    font-family: var(--han);
    color: var(--gold-bright);
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(212, 164, 74, 0.55);
    font-weight: 400;
    line-height: 1;
}
.play-now-cta::before { content: '蝠'; top: 14px; left: 18px; }
.play-now-cta::after  { content: '囍'; bottom: 14px; right: 18px; color: var(--vermilion-2); text-shadow: 0 0 8px rgba(224, 51, 77, 0.5); }

.play-now-text {
    color: var(--ivory);
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 400;
    letter-spacing: 0.005em;
    margin-bottom: 22px;
    line-height: 1.2;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.play-now-text em {
    color: var(--gold-bright);
    font-style: normal;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(180deg, var(--vermilion-2), var(--vermilion) 50%, var(--crimson-dk));
    color: var(--gold-bright);
    padding: 18px 40px;
    font-family: var(--caps);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 6px;
    border: 2px solid var(--gold-im);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 0 var(--crimson-dk), 0 0 18px rgba(168, 23, 42, 0.45);
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

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

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

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

::selection { background: var(--vermilion); color: var(--gold-bright); }
::-moz-selection { background: var(--vermilion); color: var(--gold-bright); }
