/* /casino6 - Normcasino - classic Book of Ra gold/serif theme + multi-page site */

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

:root {
    --bg-deep: #0a0e1f;
    --bg-mid: #121830;
    --gold: #d4a64a;
    --gold-bright: #f5c862;
    --gold-soft: rgba(212, 166, 74, 0.6);
    --cyan: #4ec9d6;
    --cyan-soft: rgba(78, 201, 214, 0.55);
    --orange: #d96820;
    --pink: #c9447b;
    --lime: #6fcc4f;
    --text: #e8d9b8;
    --muted: #a89a7e;
    --serif-display: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
    --serif-body: 'Lora', Georgia, 'Times New Roman', serif;
}

body {
    margin: 0;
    font-family: var(--serif-body);
    color: var(--text);
    background: var(--bg-deep);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

/* Layered classic background */
.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse at 50% 0%, #2a2235 0%, #14101e 45%, #08060d 100%);
}

.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 12% 18%, rgba(245,200,98,0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 25% 32%, rgba(255,255,255,0.6) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 40% 8%, rgba(245,200,98,0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 58% 22%, rgba(255,255,255,0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 73% 12%, rgba(245,200,98,0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 85% 30%, rgba(255,255,255,0.6) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 18% 55%, rgba(245,200,98,0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 33% 70%, rgba(255,255,255,0.5) 50%, transparent 60%),
        radial-gradient(1px 1px at 50% 85%, rgba(245,200,98,0.7) 50%, transparent 60%),
        radial-gradient(1px 1px at 67% 60%, rgba(255,255,255,0.5) 50%, transparent 60%),
        radial-gradient(1.5px 1.5px at 82% 75%, rgba(245,200,98,0.6) 50%, transparent 60%),
        radial-gradient(1px 1px at 92% 50%, rgba(255,255,255,0.6) 50%, transparent 60%);
    opacity: 0.7;
    animation: starTwinkle 6s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 0.9; }
}

.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 600px 100px at -10% 25%, rgba(212, 166, 74, 0.08), transparent 60%),
        radial-gradient(ellipse 700px 120px at 110% 55%, rgba(78, 201, 214, 0.07), transparent 60%),
        radial-gradient(ellipse 500px 80px at 30% 85%, rgba(217, 104, 32, 0.06), transparent 60%);
    animation: cloudDrift 22s ease-in-out infinite alternate;
}

@keyframes cloudDrift {
    0%   { transform: translateX(-2%); }
    100% { transform: translateX(2%); }
}

/* Header */
.hero {
    text-align: center;
    padding: 56px 20px 28px;
    position: relative;
}

.hero-eyebrow {
    color: var(--gold);
    font-family: var(--serif-display);
    font-size: 0.85rem;
    letter-spacing: 6px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--serif-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    margin: 0 0 16px;
    color: var(--gold-bright);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow:
        0 0 1px #fff,
        0 0 18px rgba(245, 200, 98, 0.55),
        0 4px 0 rgba(0, 0, 0, 0.4);
    animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    from { text-shadow: 0 0 1px #fff, 0 0 12px rgba(245,200,98,0.45), 0 4px 0 rgba(0,0,0,0.4); }
    to   { text-shadow: 0 0 2px #fff, 0 0 32px rgba(245,200,98,0.85), 0 4px 0 rgba(0,0,0,0.4); }
}

.subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    font-style: italic;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.accent {
    color: var(--gold-bright);
    text-shadow: 0 0 14px var(--gold-soft);
    font-style: italic;
}

/* Hero recommended row */
.hero-row { margin-bottom: 30px; }

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 30px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(20, 16, 30, 0.97), rgba(8, 6, 14, 0.97));
    border: 2px solid var(--gold);
    box-shadow:
        0 0 0 6px rgba(212, 166, 74, 0.12),
        0 0 35px rgba(212, 166, 74, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.6);
    animation: heroPulse 3s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    from { box-shadow: 0 0 0 6px rgba(212,166,74,0.12), 0 0 25px rgba(212,166,74,0.35), 0 10px 40px rgba(0,0,0,0.6); }
    to   { box-shadow: 0 0 0 6px rgba(212,166,74,0.2),  0 0 50px rgba(245,200,98,0.6),  0 10px 40px rgba(0,0,0,0.6); }
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
    background-size: 200% 100%;
    color: #1a1206;
    font-family: var(--serif-display);
    font-weight: 700;
    padding: 6px 22px;
    font-size: 0.78rem;
    letter-spacing: 3px;
    border-radius: 24px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(212, 166, 74, 0.5);
    animation: badgeSlide 4s linear infinite;
}

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

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-bright);
    color: #1a1206;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: var(--serif-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 12px var(--gold);
    z-index: 2;
}

/* SQUARE logo - simple, no clip-path */
.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 18px rgba(212, 166, 74, 0.4);
    display: block;
}

.hero-content { min-width: 0; }

.hero-name {
    margin: 6px 0 4px;
    font-family: var(--serif-display);
    color: var(--gold-bright);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    letter-spacing: 1.5px;
    text-shadow: 0 0 14px var(--gold-soft);
}

.hero-tagline {
    color: var(--cyan);
    font-family: var(--serif-body);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-bonus {
    background: rgba(212, 166, 74, 0.08);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    margin-top: 12px;
    border-radius: 0 6px 6px 0;
}

.bonus-label {
    display: block;
    color: var(--gold);
    font-family: var(--serif-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 4px;
}

.bonus-text {
    display: block;
    color: #fff;
    font-family: var(--serif-body);
    font-size: 1.05rem;
    font-weight: 600;
}

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

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

.hero-cta-sub {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--serif-display);
}

@media (max-width: 800px) {
    .casino-hero {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .hero-logo img { width: 160px; height: 160px; }
}

/* Alternatives grid - 5 columns */
.alternatives {
    display: grid;
    gap: 22px;
    margin-bottom: 50px;
}

.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: 22px 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 16, 30, 0.95), rgba(8, 6, 14, 0.97));
    border: 1px solid rgba(212, 166, 74, 0.45);
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55), inset 0 0 18px rgba(212, 166, 74, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(212, 166, 74, 0.4), inset 0 0 24px rgba(212, 166, 74, 0.1);
}

.rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-bright);
    color: #1a1206;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--serif-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--gold);
}

/* SQUARE card logo */
.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 8px;
    border: 2px solid rgba(212, 166, 74, 0.55);
}

.casino-name {
    font-family: var(--serif-display);
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: var(--gold-bright);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Stars */
.rating { margin-bottom: 12px; font-size: 1.05rem; }
.star.full {
    color: var(--gold-bright);
    text-shadow: 0 0 8px var(--gold-soft);
}
.star.half {
    color: var(--gold-bright);
    opacity: 0.6;
}
.star.empty { color: #2a2840; }

.rating-num {
    color: #fff;
    font-size: 0.85rem;
    margin-left: 6px;
    font-family: var(--serif-display);
    font-weight: 600;
}

.bonus {
    background: rgba(212, 166, 74, 0.07);
    border-left: 3px solid var(--gold);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0 6px 6px 0;
}

/* Buttons - classic with gold border */
.btn {
    display: inline-block;
    padding: 13px 22px;
    font-family: var(--serif-display);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1.5px solid currentColor;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    background: transparent;
    color: #fff;
}

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

.btn-claim {
    width: 100%;
    padding: 13px 18px;
    color: #1a1206;
    border-color: transparent;
}

.btn-hero {
    padding: 18px 32px;
    font-size: 1.05rem;
    color: #1a1206;
    white-space: nowrap;
    box-shadow: 0 0 25px var(--gold-soft);
    border-color: transparent;
}

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

@keyframes btnFlash {
    0%, 100% {
        box-shadow: 0 0 16px var(--gold-soft), 0 0 28px rgba(217, 104, 32, 0.5);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 32px var(--gold-bright), 0 0 50px rgba(217, 104, 32, 0.8);
        filter: brightness(1.3);
    }
}

/* Section titles */
.section-title {
    text-align: center;
    color: var(--gold-bright);
    font-family: var(--serif-display);
    font-size: 2.1rem;
    margin: 14px 0 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 14px var(--gold-soft);
}

.section-sub {
    text-align: center;
    color: var(--muted);
    margin: 0 0 22px;
    font-size: 1rem;
    font-style: italic;
}

/* Game section */
.games-section {
    background: rgba(8, 6, 14, 0.65);
    border: 1px solid var(--gold);
    border-radius: 14px;
    padding: 32px 24px;
    margin-bottom: 50px;
    box-shadow:
        0 0 0 4px rgba(212, 166, 74, 0.08),
        0 0 30px rgba(212, 166, 74, 0.18);
}

/* Book of Ra slot machine */
.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 24px 30px;
    background:
        linear-gradient(180deg, #2a1f10 0%, #1a1208 100%);
    border: 4px solid var(--gold-bright);
    border-radius: 14px;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 166, 74, 0.5);
    margin-bottom: 14px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: #0a0608;
    padding: 8px;
    border-radius: 8px;
    border: 2px solid #6e4d20;
}

.reel {
    width: 84px;
    height: 252px; /* 3 cells x 84px */
    background: linear-gradient(180deg, #f7eed4 0%, #ddc999 50%, #f7eed4 100%);
    border-radius: 6px;
    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(--serif-display);
    font-weight: 700;
    color: #2c1f0a;
    background: linear-gradient(180deg, #f7eed4 0%, #e8d6a8 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, #fff5cc 0%, #f0d68a 100%);
    box-shadow: inset 0 0 0 1px var(--gold-bright);
}

.cell.win {
    background: linear-gradient(180deg, var(--gold-bright) 0%, #e8a83a 100%);
    color: #2c1f0a;
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--gold-bright), inset 0 0 8px rgba(255, 255, 255, 0.6);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 12px var(--gold-bright), inset 0 0 8px rgba(255,255,255,0.5); }
    to   { box-shadow: 0 0 28px var(--gold-bright), inset 0 0 14px rgba(255,255,255,0.9); }
}

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

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

.bookofra-result {
    font-family: var(--serif-display);
    font-size: 1.1rem;
    color: var(--gold-bright);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--gold-soft);
}

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

.btn-bet {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold) 50%, #b88732);
    color: #1a1206;
    padding: 16px 44px;
    font-size: 1.15rem;
    border: 2px solid #3b2810;
    border-radius: 32px;
    box-shadow: 0 4px 0 #3b2810, 0 0 18px rgba(212, 166, 74, 0.5);
    min-width: 220px;
    letter-spacing: 3px;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.btn-bet:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-bet:active { transform: translateY(2px); box-shadow: 0 2px 0 #3b2810, 0 0 12px rgba(212,166,74,0.4); }
.btn-bet:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.balance {
    color: var(--text);
    font-size: 1rem;
    font-family: var(--serif-display);
    letter-spacing: 1px;
}
.balance span {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Bet section */
.bet-section { margin: 14px auto; max-width: 480px; }
.bet-section-label {
    color: var(--gold);
    font-family: var(--serif-display);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: rgba(212, 166, 74, 0.08);
    color: var(--text);
    border: 1.5px solid rgba(212, 166, 74, 0.5);
    padding: 9px 16px;
    font-family: var(--serif-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 22px;
    transition: all 0.15s;
}
.slot-amount-btn:hover { background: rgba(212, 166, 74, 0.18); }
.slot-amount-btn.active {
    background: var(--gold-bright);
    color: #1a1206;
    border-color: var(--gold-bright);
    box-shadow: 0 0 14px var(--gold-soft);
}

/* Paytable */
.paytable {
    margin-top: 22px;
    padding: 18px;
    background: rgba(20, 16, 30, 0.6);
    border: 1px solid rgba(212, 166, 74, 0.4);
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.paytable-title {
    color: var(--gold-bright);
    font-family: var(--serif-display);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

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

.paytable-grid span {
    background: rgba(212, 166, 74, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(212, 166, 74, 0.2);
}

.paytable-grid b { color: var(--gold-bright); font-size: 1.1rem; margin-right: 4px; }

.paytable-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: italic;
    margin-top: 10px;
}

@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: 28px;
    text-align: center;
    padding: 24px 20px;
    border: 2px dashed var(--lime);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 50, 20, 0.7), rgba(8, 6, 14, 0.94));
    box-shadow: 0 0 30px rgba(111, 204, 79, 0.4);
}

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

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

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

.win-cta-text {
    color: var(--lime);
    font-family: var(--serif-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(111, 204, 79, 0.7);
}

.win-cta-sub {
    margin-top: 12px;
    color: #c8e8b8;
    font-family: var(--serif-display);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, #2e8b57, var(--lime), #7fdf60, var(--lime), #2e8b57);
    background-size: 300% 100%;
    color: #0a1a05;
    padding: 20px 42px;
    font-family: var(--serif-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid #1a3308;
    border-radius: 36px;
    text-decoration: none;
    text-transform: uppercase;
}

.flashing-green {
    animation: greenFlash 0.85s ease-in-out infinite, greenSlide 3.5s linear infinite;
}

@keyframes greenFlash {
    0%, 100% {
        box-shadow: 0 0 22px rgba(111, 204, 79, 0.7), 0 0 45px rgba(46, 139, 87, 0.4);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 50px rgba(111, 204, 79, 1), 0 0 90px rgba(127, 223, 96, 0.85);
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

/* Game recommendation card */
.game-recommendation { margin-bottom: 40px; }

.rec-card {
    background:
        linear-gradient(135deg, rgba(20, 16, 30, 0.97), rgba(8, 6, 14, 0.98));
    border: 2px solid var(--gold);
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.1), 0 0 30px rgba(212, 166, 74, 0.35);
}

/* SQUARE recommendation logo */
.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--gold);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--serif-display);
    color: var(--gold-bright);
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.rec-bonus {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-play {
    background: linear-gradient(90deg, var(--gold), var(--orange));
    color: #1a1206;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-color: transparent;
    box-shadow: 0 0 18px var(--gold-soft);
}

/* Footer */
.footer {
    text-align: center;
    padding: 26px 20px;
    background: rgba(8, 6, 14, 0.7);
    color: var(--muted);
    font-size: 0.82rem;
    border-top: 1px solid rgba(212, 166, 74, 0.25);
    letter-spacing: 1.5px;
    font-family: var(--serif-display);
    text-transform: uppercase;
}

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

.load-error {
    text-align: center;
    color: #ff5a5f;
    padding: 20px;
    font-weight: bold;
    font-family: var(--serif-display);
}

/* Clickable logo + name */
.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.18s, filter 0.18s;
    cursor: pointer;
}
.brand-link:hover {
    transform: scale(1.04);
    filter: brightness(1.2) drop-shadow(0 0 12px var(--gold-soft));
}
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: #fff;
    text-shadow: 0 0 14px var(--gold-bright);
}
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(8, 6, 14, 0.95), rgba(20, 16, 30, 0.85));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 166, 74, 0.4);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--serif-display);
    color: var(--gold-bright);
    font-size: 1.35rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 12px var(--gold-soft);
    transition: filter 0.15s;
}
.site-logo:hover { filter: brightness(1.2); }

.logo-mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold) 70%, #6e4d20);
    color: #1a1206;
    text-align: center;
    line-height: 36px;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 0 14px var(--gold-soft), inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.site-nav {
    margin-left: auto;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 18px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--serif-display);
    font-size: 0.92rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 22px;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.site-nav a:hover {
    color: var(--gold-bright);
    background: rgba(212, 166, 74, 0.08);
    border-color: rgba(212, 166, 74, 0.3);
}
.site-nav a.active {
    color: #1a1206;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    border-color: var(--gold-bright);
    box-shadow: 0 0 14px var(--gold-soft);
}

@media (max-width: 600px) {
    .site-header-inner { gap: 10px; padding: 10px 14px; }
    .site-logo { font-size: 1rem; letter-spacing: 2px; }
    .logo-mark { width: 30px; height: 30px; line-height: 30px; font-size: 0.95rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.78rem; letter-spacing: 1.4px; }
}

/* ========================================================================== */
/* Site footer (replaces inline footer styles)                                */
/* ========================================================================== */

.site-footer {
    background: rgba(8, 6, 14, 0.85);
    border-top: 1px solid rgba(212, 166, 74, 0.4);
    padding: 32px 20px;
    margin-top: 30px;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--serif-display);
    color: var(--gold-bright);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 0 14px var(--gold-soft);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--serif-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.footer-disclaimer {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--serif-display);
    margin: 0;
}

/* ========================================================================== */
/* Article body (review / login / bonus copy)                                 */
/* ========================================================================== */

.article-body {
    background: rgba(20, 16, 30, 0.55);
    border: 1px solid rgba(212, 166, 74, 0.3);
    border-radius: 12px;
    padding: 32px 36px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--text);
    font-family: var(--serif-body);
    font-size: 1.05rem;
    line-height: 1.7;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.article-body h2 {
    font-family: var(--serif-display);
    color: var(--gold-bright);
    margin: 28px 0 12px;
    letter-spacing: 2px;
    font-size: 1.5rem;
    text-shadow: 0 0 12px var(--gold-soft);
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 16px; }
.article-body strong { color: var(--gold-bright); }
.article-body em { color: var(--text); font-weight: 600; }
.article-body a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(212, 166, 74, 0.4);
}

.article-body .lead {
    font-size: 1.18rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid var(--gold-bright);
}

.article-body .verdict {
    margin-top: 22px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(212, 166, 74, 0.12), rgba(212, 166, 74, 0.04));
    border-left: 4px solid var(--gold-bright);
    border-radius: 0 8px 8px 0;
    font-size: 1.08rem;
}

.step-list, .check-list {
    margin: 12px 0 18px;
    padding-left: 26px;
}
.step-list li, .check-list li {
    margin-bottom: 10px;
}
.step-list li::marker {
    color: var(--gold-bright);
    font-family: var(--serif-display);
    font-weight: 700;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '◆';
    display: inline-block;
    color: var(--gold-bright);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* Review meta block */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 166, 74, 0.45);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid rgba(212, 166, 74, 0.3);
}
.big-rating {
    display: block;
    font-family: var(--serif-display);
    font-size: 3rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 0 14px var(--gold-soft);
}
.big-rating-out {
    display: block;
    color: var(--muted);
    font-family: var(--serif-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 4px;
}
.rating-stars {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

.article-facts {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 22px;
}
.article-facts > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.article-facts dt {
    color: var(--gold);
    font-family: var(--serif-display);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.article-facts dd {
    margin: 0;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 640px) {
    .article-body { padding: 24px 22px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating { border-right: none; border-bottom: 1px solid rgba(212,166,74,0.3); padding: 0 0 16px; }
}

/* Bonus highlight card */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 140, 0, 0.1));
    border: 2px solid var(--gold-bright);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 30px var(--gold-soft);
    animation: bonusGlow 3s ease-in-out infinite alternate;
}
@keyframes bonusGlow {
    from { box-shadow: 0 0 18px rgba(212,166,74,0.4); }
    to   { box-shadow: 0 0 42px rgba(255,215,0,0.7); }
}
.bonus-headline {
    font-family: var(--serif-display);
    color: var(--gold-bright);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 18px var(--gold-soft);
}
.bonus-sub {
    margin-top: 6px;
    color: #fff;
    font-size: 1.2rem;
    font-style: italic;
}
.bonus-tag {
    margin-top: 14px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--gold-bright);
    border: 1px solid var(--gold-bright);
    border-radius: 20px;
    font-family: var(--serif-display);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

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

/* Suppress the old plain footer if it ever gets included */
.footer { display: none; }

/* ========================================================================== */
/* Inline "Play Now with Bonus" CTA - dropped between article sections        */
/* ========================================================================== */

.play-now-cta {
    margin: 28px auto;
    max-width: 880px;
    padding: 22px 24px;
    text-align: center;
    border: 2px dashed var(--gold-bright);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 109, 0, 0.08)),
        rgba(20, 16, 30, 0.55);
    box-shadow: 0 0 22px rgba(255, 140, 0, 0.4);
    animation: ctaBannerGlow 2.4s ease-in-out infinite alternate;
}

@keyframes ctaBannerGlow {
    from { box-shadow: 0 0 18px rgba(255, 140, 0, 0.35); }
    to   { box-shadow: 0 0 38px rgba(255, 215, 0, 0.7); }
}

.play-now-text {
    color: var(--gold-bright);
    font-family: var(--serif-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--gold-soft);
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, #ff6d00, #ffd700, #ff8c00, #ffd700, #ff6d00);
    background-size: 300% 100%;
    color: #2a1c00;
    padding: 18px 38px;
    font-family: var(--serif-display);
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: 3px;
    border: 2px solid #2a1c00;
    border-radius: 32px;
    text-decoration: none;
    text-transform: uppercase;
}

.flashing-orange {
    animation: orangeFlash 0.85s ease-in-out infinite, orangeSlide 3.5s linear infinite;
}

@keyframes orangeFlash {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.65), 0 0 40px rgba(255, 215, 0, 0.4);
        transform: scale(1);
        filter: brightness(1.05);
    }
    50% {
        box-shadow: 0 0 48px rgba(255, 215, 0, 1), 0 0 85px rgba(255, 109, 0, 0.85);
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

@keyframes orangeSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
}

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

