/* /betlexo2 - Light editorial / Kinfolk-magazine theme
   Cream paper + ink + terracotta + saffron + slate-teal accents.
   Fonts: Newsreader (variable serif, italic + opsz), Hanken Grotesk (body), DM Mono (caps)
   Vibe: Conde Nast Traveller / Kinfolk / Cereal magazine spread.
   Animation: very subtle drifting paper specks, no other motion.
*/

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

:root {
    /* Light editorial palette */
    --paper:       #f5efe4;
    --paper-2:     #ede5d4;
    --paper-3:     #e3dac4;
    --cream:       #faf6ed;

    /* Ink */
    --ink:         #1a1410;
    --ink-2:       #0d0b08;
    --ink-soft:    #3a3530;
    --char:        #5a544a;

    /* Accents */
    --terracotta:  #b85b3c;
    --terra-dk:    #8a3a22;
    --saffron:     #c08a3c;
    --saffron-dk:  #8a5e22;
    --teal:        #3a6a6e;
    --teal-dk:     #224548;
    --burgundy:    #8a2538;

    --rule:        rgba(26, 20, 16, 0.18);
    --rule-strong: rgba(26, 20, 16, 0.45);
    --rule-soft:   rgba(26, 20, 16, 0.10);

    /* Type */
    --serif:   'Newsreader', 'Cardo', Georgia, serif;
    --sans:    'Hanken Grotesk', 'Inter', system-ui, sans-serif;
    --mono:    'DM Mono', 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

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

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

/* Layer 1: warm cream paper */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% 0%, #faf3e6 0%, #f5efe4 50%, #ede5d4 100%);
}

/* Layer 2: faint paper grain (multiplied dot pattern) */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(26, 20, 16, 0.025) 0, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(184, 91, 60, 0.025) 0, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(26, 20, 16, 0.022) 0, transparent 1.5px);
    background-size: 7px 7px, 11px 11px, 13px 13px;
    opacity: 0.85;
}

/* Layer 3: soft tonal washes (corner blooms) */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 700px 380px at 8% 12%, rgba(184, 91, 60, 0.05), transparent 70%),
        radial-gradient(ellipse 700px 380px at 92% 88%, rgba(58, 106, 110, 0.04), transparent 70%);
}

/* Layer 4: thin masthead rule along the top */
.bg-rule {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 49;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--ink) 0%, var(--ink) 60%, var(--terracotta) 60%, var(--terracotta) 80%, var(--saffron) 80%, var(--saffron) 100%);
    box-shadow: 0 1px 0 var(--rule-soft);
}

/* Layer 5: tiny drifting paper specks (subtle, very few) */
.bg-specks {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.speck {
    position: absolute;
    bottom: -10px;
    background: radial-gradient(circle, var(--ink-soft) 0%, transparent 70%);
    border-radius: 50%;
    animation-name: speckRise;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform, opacity;
}

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

/* ========================================================================== */
/* Hero (page banner) - magazine cover                                        */
/* ========================================================================== */

.hero {
    text-align: center;
    padding: 96px 24px 56px;
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    border-bottom: 1px solid var(--rule);
}

.hero-eyebrow {
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--terracotta);
}

.hero h1 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    margin: 0 0 22px;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-weight: 500;
    line-height: 1.05;
}

.hero h1 .accent {
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 400;
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
}

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

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

.accent {
    color: var(--terracotta);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

/* ========================================================================== */
/* Casino hero card (the featured table)                                      */
/* ========================================================================== */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 36px 40px;
    border-radius: 0;
    background: var(--cream);
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    box-shadow: 0 10px 32px rgba(26, 20, 16, 0.05);
    transition: transform 0.35s, box-shadow 0.35s;
}

.casino-hero::before {
    content: 'The Featured Table';
    position: absolute;
    top: -10px;
    left: 32px;
    background: var(--paper);
    padding: 2px 10px;
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.casino-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 20, 16, 0.08);
}

.badge-recommended {
    position: absolute;
    top: 22px;
    right: 24px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--mono);
    font-weight: 500;
    padding: 5px 12px;
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none;
    z-index: 3;
}

.hero-rank {
    display: none; /* No rank badge - just one offer */
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--ink);
    display: block;
    box-shadow: 0 8px 22px rgba(26, 20, 16, 0.12);
    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 6px;
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    color: var(--ink);
    font-size: clamp(2rem, 3.4vw, 3rem);
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.05;
}

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

.hero-bonus {
    background: transparent;
    border: none;
    border-top: 1px solid var(--rule);
    padding: 16px 0 0;
    margin-top: 16px;
}

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

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

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

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

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

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

/* ========================================================================== */
/* Contents - "In this issue" magazine TOC                                    */
/* ========================================================================== */

.contents {
    margin-bottom: 56px;
}
.contents-rule {
    height: 1px;
    background: var(--ink);
}
.contents-inner {
    padding: 22px 4px;
}
.contents-eyebrow {
    display: block;
    font-family: var(--mono);
    color: var(--terracotta);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 14px;
}
.contents-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.contents-list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-top: 1px solid var(--rule);
    padding-top: 10px;
}
.contents-no {
    font-family: var(--mono);
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.contents-label {
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 500;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.25;
}

@media (max-width: 800px) { .contents-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contents-list { grid-template-columns: 1fr; } }

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

.alt-block { margin-bottom: 70px; }

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

.section-sub {
    text-align: center;
    color: var(--char);
    margin: 0 0 36px;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.alternatives {
    display: grid;
    gap: 24px;
}

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

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

.casino-card {
    position: relative;
    padding: 32px 22px 22px;
    text-align: center;
    background: var(--cream);
    border: none;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(26, 20, 16, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(26, 20, 16, 0.08);
}

.rank {
    position: absolute;
    top: 12px;
    left: 16px;
    background: transparent;
    color: var(--char);
    width: auto;
    height: auto;
    border-radius: 0;
    font-family: var(--mono);
    font-weight: 500;
    display: block;
    font-size: 0.62rem;
    box-shadow: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.rank::before {
    content: 'No.';
    color: var(--terracotta);
    margin-right: 3px;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 14px auto 16px;
    display: block;
    border-radius: 2px;
    border: 1px solid var(--ink);
    box-shadow: 0 6px 16px rgba(26, 20, 16, 0.08);
    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" 36, "wght" 500;
    font-size: 1.4rem;
    margin: 0 0 12px;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-weight: 500;
}

/* Stars - small ink with terracotta fills */
.rating { margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 1px; }
.star.full { color: var(--terracotta); }
.star.half { color: var(--terracotta); opacity: 0.5; }
.star.empty { color: rgba(184, 91, 60, 0.18); }

.rating-num {
    color: var(--ink);
    font-size: 0.74rem;
    margin-left: 8px;
    font-family: var(--mono);
    letter-spacing: 1px;
    font-weight: 500;
}

.bonus {
    background: transparent;
    border: none;
    border-top: 1px solid var(--rule);
    padding: 14px 0 16px;
    margin-bottom: 16px;
    text-align: left;
    min-height: 76px;
    border-radius: 0;
    font-family: var(--serif);
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 400;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--mono);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid currentColor;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.7rem;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s, background 0.25s, color 0.25s;
    background: transparent;
    color: var(--ink);
    position: relative;
    overflow: hidden;
}

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

.btn-claim {
    width: 100%;
    padding: 14px 18px;
    color: var(--cream);
    border-color: var(--ink);
    background: var(--ink) !important;
    box-shadow: 0 4px 14px rgba(26, 20, 16, 0.12);
    font-weight: 500;
}
.btn-claim:hover { background: var(--terracotta) !important; border-color: var(--terracotta); }

.btn-hero {
    padding: 18px 38px;
    font-size: 0.74rem;
    color: var(--cream);
    background: var(--ink) !important;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(26, 20, 16, 0.18);
    border: 1px solid var(--ink);
    letter-spacing: 4px;
    font-weight: 500;
}
.btn-hero:hover { background: var(--terracotta) !important; border-color: var(--terracotta); }

.flashing {
    animation: subtleGlow 3.2s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(26, 20, 16, 0.18);
    }
    50% {
        box-shadow: 0 12px 32px rgba(184, 91, 60, 0.4);
    }
}

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

.games-section {
    background: var(--cream);
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    padding: 56px 32px;
    margin-bottom: 80px;
    position: relative;
    box-shadow: 0 10px 32px rgba(26, 20, 16, 0.04);
}

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

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 26px 30px;
    background: var(--ink);
    border: 4px solid var(--terracotta);
    border-radius: 4px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 16px 36px rgba(26, 20, 16, 0.18);
    margin-bottom: 18px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: #0a0808;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.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-weight: 500;
    color: var(--ink);
    background: linear-gradient(180deg, var(--cream) 0%, var(--paper-2) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.4s, color 0.4s, transform 0.4s;
    user-select: none;
}

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

.cell.payline {
    background: linear-gradient(180deg, #fff 0%, #f0d9a8 100%);
    box-shadow: inset 0 0 0 1px var(--saffron);
}

.cell.win {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--saffron) 100%);
    color: var(--cream);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(184, 91, 60, 0.55), 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(184, 91, 60, 0.45), inset 0 0 8px rgba(255,255,255,0.4); }
    to   { box-shadow: 0 0 32px rgba(192, 138, 60, 0.85), inset 0 0 14px rgba(255,255,255,0.8); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terracotta);
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--terracotta);
    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(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 22px;
    min-height: 30px;
    letter-spacing: 0;
}

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

.btn-bet {
    background: var(--terracotta);
    color: var(--cream);
    padding: 16px 50px;
    font-family: var(--mono);
    font-size: 0.74rem;
    border: 1px solid var(--terra-dk);
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(184, 91, 60, 0.25);
    min-width: 240px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    cursor: pointer;
}

.btn-bet:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(184, 91, 60, 0.4); }
.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.74rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.balance span {
    color: var(--saffron);
    font-family: var(--serif);
    font-weight: 500;
    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(--ink);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3.5px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
    padding: 10px 20px;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s;
    text-transform: uppercase;
}
.slot-amount-btn:hover { background: var(--paper-2); border-color: var(--ink); }
.slot-amount-btn.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    font-weight: 500;
}

/* Paytable */
.paytable {
    margin-top: 28px;
    padding: 22px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paytable-title {
    color: var(--terracotta);
    font-family: var(--mono);
    font-weight: 500;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 3px;
    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(--ink);
    font-family: var(--sans);
    font-weight: 500;
}

.paytable-grid span {
    background: transparent;
    padding: 9px 10px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--rule);
    letter-spacing: 0.5px;
}

.paytable-grid b {
    color: var(--terracotta);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.18rem;
    margin-right: 4px;
    font-weight: 500;
}

.paytable-note {
    text-align: center;
    color: var(--char);
    font-size: 0.85rem;
    font-family: var(--serif);
    font-style: italic;
    margin-top: 12px;
}

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

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

.win-cta {
    margin-top: 36px;
    text-align: center;
    padding: 40px 28px;
    border: none;
    border-top: 2px solid var(--terracotta);
    border-bottom: 2px solid var(--terracotta);
    border-radius: 0;
    background: var(--cream);
    box-shadow: 0 10px 30px rgba(184, 91, 60, 0.1);
    position: relative;
    overflow: hidden;
}

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

.cta-pop { animation: ctaPop 0.55s cubic-bezier(0.25, 1.4, 0.5, 1); }

@keyframes ctaPop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.win-cta-text {
    color: var(--ink);
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.win-cta-text em {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
}

.win-cta-sub {
    margin-top: 16px;
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-win-real {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    padding: 20px 50px;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 4px;
    border: 1px solid var(--ink);
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(26, 20, 16, 0.18);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-win-real:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }

.flashing-green {
    animation: subtleGlow 3.2s ease-in-out infinite;
}

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

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

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

.rec-card {
    background: var(--cream);
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(26, 20, 16, 0.05);
    position: relative;
}

.rec-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--ink);
    box-shadow: 0 8px 22px rgba(26, 20, 16, 0.12);
}

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

.rec-info h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    color: var(--ink);
    font-size: 2rem;
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.05;
}

.rec-bonus {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
}

.btn-play {
    background: var(--ink) !important;
    color: var(--cream) !important;
    font-family: var(--mono);
    font-size: 0.74rem;
    padding: 16px 32px;
    border: 1px solid var(--ink);
    box-shadow: 0 6px 18px rgba(26, 20, 16, 0.18);
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
}
.btn-play:hover { background: var(--terracotta) !important; border-color: var(--terracotta); }

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

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

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

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

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

/* ========================================================================== */
/* Site header - magazine masthead                                            */
/* ========================================================================== */

.site-header {
    position: sticky;
    top: 6px; /* leave room for the masthead rule */
    z-index: 50;
    background: rgba(245, 239, 228, 0.92);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--ink);
}

.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;
    color: var(--ink);
    transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.8; }

/* Drop-cap monogram in serif */
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 0;
    font-family: var(--serif);
    font-variation-settings: "opsz" 36, "wght" 500;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}

.logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    color: var(--ink);
    font-size: 1.55rem;
    letter-spacing: -0.025em;
    text-transform: none;
    font-weight: 500;
    line-height: 1;
}
.logo-issue {
    font-family: var(--mono);
    color: var(--terracotta);
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
}

.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    border-radius: 0;
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.site-nav a:hover { color: var(--terracotta); }
.site-nav a.active {
    color: var(--terracotta);
}
.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--terracotta);
}

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

/* ========================================================================== */
/* Site footer - magazine colophon                                            */
/* ========================================================================== */

.site-footer {
    background: var(--paper-2);
    border-top: 1px solid var(--ink);
    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" 72, "wght" 500;
    color: var(--ink);
    font-size: 1.9rem;
    letter-spacing: -0.025em;
    text-transform: none;
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-brand::after {
    content: ' · Issue ' attr(data-issue);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 22px;
    margin-top: 14px;
}
.footer-nav a {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-nav a:hover { color: var(--terracotta); }
.footer-disclaimer {
    color: var(--char);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--mono);
    margin: 0;
    font-weight: 500;
}

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

/* ========================================================================== */
/* Article body (login / bonus / games)                                       */
/* ========================================================================== */

.article-body {
    background: var(--cream);
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    padding: 56px 64px;
    margin: 24px auto 40px;
    max-width: 880px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.75;
    box-shadow: 0 10px 30px rgba(26, 20, 16, 0.04);
    position: relative;
}

/* Field-note kicker - department + issue marker */
.field-note-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 14px;
    margin-bottom: 28px;
}
.field-note-tag {
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}
.field-note-no {
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.article-body h2 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    color: var(--ink);
    margin: 36px 0 14px;
    letter-spacing: -0.02em;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.15;
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em {
    color: var(--terracotta);
    font-family: var(--serif);
    font-style: italic;
}
.article-body a {
    color: var(--terracotta);
    text-decoration: underline;
    text-decoration-color: rgba(184, 91, 60, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--terracotta); }

.article-body .lead {
    font-family: var(--serif);
    font-variation-settings: "opsz" 60, "wght" 400;
    font-size: 1.45rem;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 0;
    border-left: none;
    line-height: 1.45;
    letter-spacing: -0.005em;
    font-weight: 400;
}

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

.article-body .verdict {
    margin-top: 28px;
    padding: 22px 26px;
    background: rgba(184, 91, 60, 0.05);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--terracotta);
    border-radius: 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.55;
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 0;
    counter-reset: step;
}
.step-list { list-style: none; }
.step-list li {
    margin-bottom: 14px;
    padding-left: 44px;
    position: relative;
    counter-increment: step;
}
.step-list li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 500;
}
.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: 14px;
    width: 14px;
    height: 1px;
    background: var(--terracotta);
}

@media (max-width: 640px) {
    .article-body { padding: 36px 24px; }
}

/* ========================================================================== */
/* The Feature - magazine review spread                                       */
/* ========================================================================== */

.feature {
    background: var(--cream);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    margin: 24px 0 40px;
    padding: 56px 0 80px;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 20, 16, 0.04);
}

.feature-head {
    max-width: 920px;
    margin: 0 auto 48px;
    padding: 0 56px;
    text-align: center;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 36px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 500;
}
.kicker-sep { color: var(--char); }
.kicker-issue { color: var(--char); }

.feature-title {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 500;
    color: var(--ink);
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    margin: 0 0 22px;
    letter-spacing: -0.03em;
    font-weight: 500;
    line-height: 1.02;
}
.feature-title em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "wght" 400;
    color: var(--terracotta);
    font-weight: 400;
}

.feature-deck {
    color: var(--char);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 22px;
    font-weight: 400;
}

.byline {
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.byline-by { color: var(--char); }
.byline-name { color: var(--ink); font-weight: 600; }
.byline-sep { margin: 0 8px; opacity: 0.5; }
.byline-meta { color: var(--char); }

/* Two-column body */
.feature-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
}

/* Left rail - sidebar with rating + facts + studios + credits */
.feature-rail {
    align-self: start;
    position: sticky;
    top: 100px;
    border-top: 2px solid var(--ink);
    padding-top: 22px;
}

.rail-rating {
    text-align: center;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 22px;
    margin-bottom: 22px;
}
.rail-score {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 500;
    font-style: italic;
    color: var(--terracotta);
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
}
.rail-of {
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}
.rail-stars {
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.rail-facts {
    margin: 0 0 22px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 18px;
}
.rail-facts > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dotted var(--rule);
}
.rail-facts > div:last-child { border-bottom: none; }
.rail-facts dt {
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.rail-facts dd {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

.rail-providers {
    margin-bottom: 22px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 18px;
}
.rail-providers-title {
    color: var(--terracotta);
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}
.rail-providers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rail-providers-list li {
    color: var(--ink);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.02rem;
    padding: 4px 0;
    border-bottom: 1px dotted var(--rule);
    font-weight: 400;
}
.rail-providers-list li:last-child { border-bottom: none; }

.rail-credits {
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: 500;
}
.rail-credits-line { padding: 1px 0; }

/* Right column - long-form copy */
.feature-copy {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.75;
    font-weight: 400;
}
.feature-copy p { margin: 0 0 22px; }
.feature-copy strong { font-weight: 600; }
.feature-copy em {
    color: var(--terracotta);
    font-style: italic;
}

.feature-lead {
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 400;
    font-size: 1.4rem !important;
    color: var(--ink);
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
    font-weight: 400 !important;
    font-style: normal;
}

/* Drop cap on lead */
.feature-lead::first-letter {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 500;
    font-size: 4.6rem;
    line-height: 0.85;
    color: var(--terracotta);
    float: left;
    padding: 6px 14px 0 0;
    margin-top: 4px;
    font-style: italic;
}

.feature-h2 {
    font-family: var(--serif);
    font-variation-settings: "opsz" 96, "wght" 500;
    color: var(--ink);
    font-size: 1.7rem;
    margin: 36px 0 14px;
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.2;
}

.pullquote {
    font-family: var(--serif);
    font-variation-settings: "opsz" 96, "wght" 400;
    font-style: italic;
    font-size: 1.65rem;
    line-height: 1.35;
    color: var(--terracotta);
    margin: 36px 0 36px;
    padding: 18px 0 18px 32px;
    border-left: 4px solid var(--terracotta);
    border-right: none;
    text-align: left;
    font-weight: 400;
    quotes: '"' '"';
    letter-spacing: -0.005em;
}
.pullquote-right {
    border-left: none;
    border-right: 4px solid var(--saffron);
    padding-left: 0;
    padding-right: 32px;
    text-align: right;
    color: var(--saffron-dk);
}

.feature-verdict {
    background: rgba(184, 91, 60, 0.06);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--terracotta);
    padding: 24px 28px !important;
    font-style: italic;
    font-size: 1.2rem !important;
    line-height: 1.55 !important;
    margin-top: 36px !important;
}
.feature-verdict strong {
    font-style: normal;
    color: var(--terracotta);
    font-weight: 600;
}

.signoff {
    margin-top: 36px !important;
    color: var(--char);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 900px) {
    .feature-head { padding: 0 28px; }
    .feature-body {
        grid-template-columns: 1fr;
        padding: 0 28px;
        gap: 32px;
    }
    .feature-rail { position: static; }
    .pullquote-right { border-right: none; border-left: 4px solid var(--saffron); padding-left: 32px; padding-right: 0; text-align: left; }
}

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

.bonus-spotlight {
    margin: 24px auto 36px;
    padding: 44px 32px;
    background: var(--paper-2);
    border: none;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 20, 16, 0.05);
    position: relative;
}

.bonus-headline {
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "wght" 500;
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.bonus-sub {
    margin-top: 8px;
    color: var(--char);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 400;
}
.bonus-tag {
    margin-top: 22px;
    display: inline-block;
    padding: 6px 16px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 0;
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========================================================================== */
/* Top alternatives grid (sub-pages)                                          */
/* ========================================================================== */

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

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

.play-now-cta {
    margin: 36px auto;
    max-width: 880px;
    padding: 32px 32px;
    text-align: center;
    border: none;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    background: var(--paper);
    position: relative;
}

.play-now-text {
    color: var(--ink);
    font-family: var(--serif);
    font-variation-settings: "opsz" 72, "wght" 500;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    line-height: 1.25;
    font-style: italic;
}
.play-now-text em {
    color: var(--terracotta);
    font-style: italic;
}

.btn-inline-play {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    padding: 18px 40px;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 4px;
    border: 1px solid var(--ink);
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(26, 20, 16, 0.18);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-inline-play:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(184, 91, 60, 0.4); }

.flashing-orange {
    animation: subtleGlow 3.2s ease-in-out infinite;
}

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

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

::selection { background: var(--terracotta); color: var(--cream); }
::-moz-selection { background: var(--terracotta); color: var(--cream); }
