/* ============================================================================
   Kaulana - Tropical Hawaiian Casino theme (modeled on the kaulana.com.au look)
   Palette: deep navy-purple bg, dark purple header, violet CTAs,
            multi-colour playful logo letters, tropical sunset accents.
   Fonts:   Lexend (rounded modern display) + Inter (clean body)
   ============================================================================ */

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

:root {
    --bg-deep: #0a0820;            /* main page background - very dark navy-purple */
    --bg-mid: #14102a;
    --bg-card: #1a1438;
    --bg-card-2: #221a44;
    --header-bg: #2a1850;          /* header bar - darker purple */
    --header-bg-2: #361f64;

    --primary: #7b3fff;            /* violet - main CTA */
    --primary-bright: #9b5fff;
    --primary-deep: #5a28d8;
    --primary-soft: rgba(123, 63, 255, 0.5);

    --secondary: #4a8fff;          /* blue-violet - signup CTA */
    --secondary-bright: #6ba8ff;

    --tropical-coral: #ef476f;
    --tropical-yellow: #ffd166;
    --tropical-teal: #06d6a0;
    --tropical-cyan: #118ab2;
    --tropical-purple: #c490e5;
    --tropical-orange: #ff6b3d;
    --tropical-pink: #ff5e87;

    --white: #ffffff;
    --paper: #f8f7fb;
    --gray-200: #e0dde8;
    --gray-300: #c0bdd0;
    --gray-500: #8a86a0;
    --gray-700: #4a465e;

    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.78);
    --muted: #8a86a0;

    --display: 'Lexend', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
}

body {
    margin: 0;
    font-family: var(--body);
    font-weight: 400;
    color: var(--text);
    background: var(--bg-deep);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================================
   BACKGROUND
   ============================================================================ */

.bg-sky {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(ellipse at 50% -10%, #2a1850 0%, #1a1038 30%, var(--bg-deep) 70%, #050410 100%);
}

/* Soft tropical sunset glow at the top */
.bg-stars {
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50vw 30vh at 50% 0%, rgba(196, 144, 229, 0.20), transparent 70%),
        radial-gradient(ellipse 35vw 20vh at 30% 0%, rgba(255, 107, 61, 0.10), transparent 70%),
        radial-gradient(ellipse 35vw 20vh at 70% 0%, rgba(123, 63, 255, 0.16), transparent 70%);
}

/* Subtle bottom horizon - deep ocean */
.bg-clouds {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80vw 22vh at 50% 100%, rgba(17, 138, 178, 0.10), transparent 70%);
}

/* Drifting tropical glyphs */
.bg-tropical {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.tropical {
    position: absolute;
    line-height: 1;
    user-select: none;
    will-change: transform, opacity;
    filter: saturate(0.85);
    animation-name: tropicalDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes tropicalDrift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(20px, -16px) rotate(8deg); }
    50%  { transform: translate(-12px, 22px) rotate(-6deg); }
    75%  { transform: translate(18px, 10px) rotate(4deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ============================================================================
   SITE HEADER
   ============================================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

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

/* The logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: filter 0.18s, transform 0.18s;
}
.site-logo:hover { transform: translateY(-1px); }

.logo-text {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0.5px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

/* Each letter gets a different colour, like the original logo */
.logo-letter {
    display: inline-block;
    transition: transform 0.3s ease;
    animation: letterBob 4s ease-in-out infinite;
}
.logo-letter.l1 { color: var(--tropical-teal);   animation-delay: 0s;   }
.logo-letter.l2 { color: var(--tropical-yellow); animation-delay: 0.15s; }
.logo-letter.l3 { color: var(--tropical-coral);  animation-delay: 0.3s; }
.logo-letter.l4 { color: var(--tropical-cyan);   animation-delay: 0.45s; }
.logo-letter.l5 { color: var(--tropical-teal);   animation-delay: 0.6s; }
.logo-letter.l6 { color: var(--tropical-purple); animation-delay: 0.75s; }

@keyframes letterBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

.logo-mark { display: none; }   /* original ♛ glyph not used here */

/* Site nav */
.site-nav { margin-left: auto; }
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.site-nav a {
    display: inline-block;
    padding: 9px 16px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--body);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.site-nav a:hover {
    color: var(--white);
    background: rgba(123, 63, 255, 0.18);
}
.site-nav a.active {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(123, 63, 255, 0.45);
}

@media (max-width: 820px) {
    .site-header-inner { gap: 14px; padding: 12px 18px; }
    .logo-text { font-size: 1.55rem; }
    .site-nav { width: 100%; }
    .site-nav ul { justify-content: center; }
    .site-nav a { padding: 7px 12px; font-size: 0.86rem; }
}

/* ============================================================================
   PAGE HERO
   ============================================================================ */

.hero {
    text-align: center;
    padding: 70px 20px 30px;
    position: relative;
}

.hero-eyebrow {
    color: var(--tropical-purple);
    font-family: var(--display);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Subtle wavy underline below eyebrow */
.hero-eyebrow::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--tropical-coral), var(--tropical-yellow), var(--tropical-teal));
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    margin: 0 0 14px;
    color: var(--white);
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.subtitle {
    color: var(--text-soft);
    font-size: 1.1rem;
    font-family: var(--body);
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 50px;
    position: relative;
    z-index: 1;
}

.accent {
    color: var(--tropical-coral);
    font-weight: 700;
}

/* ============================================================================
   HERO RECOMMENDED ROW - rounded card with sunset glow
   ============================================================================ */

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

.casino-hero {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 32px 36px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(196, 144, 229, 0.25);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 14px 40px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(123, 63, 255, 0.18);
    overflow: hidden;
}

.casino-hero::before {
    /* Soft tropical sunset glow */
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 61, 0.18) 0%, rgba(196, 144, 229, 0.12) 35%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--tropical-coral), var(--tropical-yellow));
    color: #2a1850;
    font-family: var(--display);
    font-weight: 800;
    padding: 6px 22px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(239, 71, 111, 0.45);
}

.hero-rank {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(123, 63, 255, 0.45);
    z-index: 2;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-content { min-width: 0; position: relative; z-index: 1; }

.hero-name {
    margin: 4px 0 6px;
    font-family: var(--display);
    color: var(--white);
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 1.1;
}

.hero-tagline {
    color: var(--tropical-yellow);
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.hero-bonus {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    margin-top: 12px;
    border-radius: 0 12px 12px 0;
}

.bonus-label {
    display: block;
    color: var(--tropical-purple);
    font-family: var(--display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bonus-text {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
}

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

.hero-cta { text-align: center; position: relative; z-index: 1; }

.hero-cta-sub {
    margin-top: 10px;
    color: var(--gray-300);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

@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
   ============================================================================ */

.alternatives {
    display: grid;
    gap: 22px;
    margin-bottom: 50px;
}

.alternatives.five-col { grid-template-columns: repeat(5, 1fr); }
.alternatives.three-col { grid-template-columns: repeat(3, 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); }
    .alternatives.three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px)  {
    .alternatives.five-col,
    .alternatives.three-col { grid-template-columns: 1fr; }
}

.casino-card {
    position: relative;
    padding: 22px 18px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(196, 144, 229, 0.18);
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(123, 63, 255, 0.35);
}

.rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    box-shadow: 0 4px 12px rgba(123, 63, 255, 0.4);
    z-index: 2;
}

.logo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: 12px auto 14px;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.casino-name {
    font-family: var(--display);
    font-size: 1.18rem;
    margin: 0 0 10px;
    color: var(--white);
    letter-spacing: -0.005em;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Stars - tropical yellow */
.rating { margin-bottom: 12px; font-size: 1.05rem; position: relative; z-index: 1; }
.star.full   { color: var(--tropical-yellow); }
.star.half   { color: var(--tropical-yellow); opacity: 0.55; }
.star.empty  { color: var(--gray-700); }

.rating-num {
    color: var(--white);
    font-size: 0.9rem;
    margin-left: 6px;
    font-family: var(--body);
    font-weight: 600;
}

.bonus {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--tropical-coral);
    padding: 9px 12px;
    margin-bottom: 14px;
    text-align: left;
    min-height: 70px;
    border-radius: 0 8px 8px 0;
    font-family: var(--body);
    position: relative;
    z-index: 1;
}

/* ============================================================================
   BUTTONS - rounded pill, violet primary
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 13px 28px;
    font-family: var(--display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 999px;          /* pill shape - matches the LOGIN/SIGN UP style in the screenshot */
    cursor: pointer;
    font-size: 0.85rem;
    transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
    background: transparent;
    color: var(--white);
    position: relative;
    z-index: 1;
}

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

.btn-claim {
    width: 100%;
    padding: 14px 22px;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(123, 63, 255, 0.4);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 0.95rem;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(123, 63, 255, 0.45);
    font-weight: 700;
    letter-spacing: 1.8px;
}

.flashing { animation: btnGlow 1.6s ease-in-out infinite; }
@keyframes btnGlow {
    0%, 100% { filter: brightness(1.0); box-shadow: 0 8px 22px rgba(123, 63, 255, 0.4); }
    50%      { filter: brightness(1.15); box-shadow: 0 10px 32px rgba(123, 63, 255, 0.65); }
}

/* ============================================================================
   SECTION TITLES
   ============================================================================ */

.section-title {
    text-align: center;
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin: 16px 0 8px;
    letter-spacing: -0.01em;
    font-weight: 800;
    line-height: 1.15;
}

/* Wavy tropical underline */
.section-title::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--tropical-coral), var(--tropical-yellow), var(--tropical-teal), var(--tropical-purple));
    border-radius: 3px;
}

.section-sub {
    text-align: center;
    color: var(--text-soft);
    margin: 14px 0 26px;
    font-size: 1.08rem;
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.55;
}

/* ============================================================================
   GAMES SECTION
   ============================================================================ */

.games-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(196, 144, 229, 0.18);
    border-radius: 22px;
    padding: 36px 28px;
    margin-bottom: 50px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.bookofra-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bookofra-machine {
    position: relative;
    display: inline-block;
    padding: 24px 30px;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--bg-deep) 100%);
    border: 2px solid var(--primary);
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(123, 63, 255, 0.35);
    margin-bottom: 14px;
}

.reels-container {
    display: flex;
    gap: 6px;
    background: var(--bg-deep);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reel {
    width: 84px;
    height: 252px;
    background: linear-gradient(180deg, #2a1850 0%, #0a0820 50%, #2a1850 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(196, 144, 229, 0.25);
}

.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: 700;
    color: var(--tropical-yellow);
    background: linear-gradient(180deg, rgba(42, 24, 80, 0.6) 0%, rgba(10, 8, 32, 0.85) 100%);
    border-bottom: 1px solid rgba(196, 144, 229, 0.15);
    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, rgba(123, 63, 255, 0.18) 0%, rgba(239, 71, 111, 0.18) 100%);
    box-shadow: inset 0 0 0 1px var(--tropical-yellow);
}

.cell.win {
    background: linear-gradient(180deg, var(--tropical-yellow) 0%, var(--tropical-coral) 100%);
    color: var(--bg-deep);
    transform: scale(1.05);
    box-shadow: 0 0 22px var(--tropical-yellow);
    animation: winPulse 0.7s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 14px var(--tropical-yellow); }
    to   { box-shadow: 0 0 32px var(--tropical-coral); }
}

.payline-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tropical-yellow);
    font-size: 1.55rem;
}
.payline-left { left: 6px; }
.payline-right { right: 6px; }

.bookofra-result {
    font-family: var(--display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 18px;
    min-height: 28px;
    letter-spacing: 0.3px;
    font-weight: 600;
}

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

.btn-bet {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 16px 50px;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(123, 63, 255, 0.45);
    min-width: 220px;
    letter-spacing: 2px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    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(1px); box-shadow: 0 4px 12px rgba(123, 63, 255, 0.4); }
.btn-bet:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.balance {
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.balance span {
    color: var(--tropical-yellow);
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 6px;
    font-family: var(--display);
}

/* Bet section */
.bet-section { margin: 14px auto; max-width: 540px; position: relative; z-index: 1; }
.bet-section-label {
    color: var(--tropical-purple);
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.slot-amount-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border: 1px solid rgba(196, 144, 229, 0.3);
    padding: 9px 18px;
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.15s;
}
.slot-amount-btn:hover {
    background: rgba(123, 63, 255, 0.15);
    border-color: var(--primary);
    color: var(--white);
}
.slot-amount-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(123, 63, 255, 0.4);
}

/* Paytable */
.paytable {
    margin-top: 22px;
    padding: 20px;
    background: rgba(10, 8, 32, 0.55);
    border: 1px solid rgba(196, 144, 229, 0.18);
    border-radius: 14px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.paytable-title {
    color: var(--tropical-yellow);
    font-family: var(--display);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 1.5px;
    font-size: 0.98rem;
    text-transform: uppercase;
}

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

.paytable-grid span {
    background: rgba(255, 255, 255, 0.04);
    padding: 7px 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

@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
   ============================================================================ */

.win-cta {
    margin-top: 28px;
    text-align: center;
    padding: 26px 22px;
    border: 1px solid rgba(6, 214, 160, 0.4);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.10), rgba(10, 8, 32, 0.85));
    box-shadow: 0 0 30px rgba(6, 214, 160, 0.2);
    position: relative;
    z-index: 1;
}

.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(--tropical-teal);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.win-cta-sub {
    margin-top: 12px;
    color: var(--text-soft);
    font-family: var(--body);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-win-real {
    display: inline-block;
    background: linear-gradient(90deg, var(--tropical-teal), #4dffc6, var(--tropical-teal));
    background-size: 200% 100%;
    color: var(--bg-deep);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(6, 214, 160, 0.45);
}

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

@keyframes greenFlash {
    0%, 100% { box-shadow: 0 10px 28px rgba(6, 214, 160, 0.45); transform: scale(1); }
    50%      { box-shadow: 0 14px 38px rgba(6, 214, 160, 0.7); transform: scale(1.03); }
}
@keyframes greenSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

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

/* ============================================================================
   GAME RECOMMENDATION
   ============================================================================ */

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

.rec-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(196, 144, 229, 0.25);
    border-radius: 22px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.rec-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

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

.rec-info h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    color: var(--white);
    font-size: 1.85rem;
    letter-spacing: -0.005em;
    font-weight: 800;
    line-height: 1.1;
}

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

.btn-play {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    box-shadow: 0 10px 28px rgba(123, 63, 255, 0.45);
    font-weight: 700;
    letter-spacing: 1.8px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 20px;
    margin-top: 30px;
}
.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand {
    font-family: var(--display);
    color: var(--white);
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 14px;
}
.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--body);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    font-weight: 500;
    transition: color 0.15s;
}
.footer-nav a:hover { color: var(--tropical-yellow); }
.footer-disclaimer {
    color: var(--gray-300);
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    font-weight: 400;
    margin: 0;
    font-family: var(--body);
}

/* ============================================================================
   ARTICLE BODY
   ============================================================================ */

.article-body {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
    border: 1px solid rgba(196, 144, 229, 0.18);
    border-radius: 22px;
    padding: 44px 50px;
    margin: 14px auto 30px;
    max-width: 880px;
    color: var(--white);
    font-family: var(--body);
    font-size: 1.05rem;
    line-height: 1.75;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.article-body h2 {
    font-family: var(--display);
    color: var(--white);
    margin: 36px 0 14px;
    letter-spacing: -0.005em;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }

.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--tropical-yellow); font-weight: 700; }
.article-body em { color: var(--tropical-coral); font-style: italic; font-weight: 500; }
.article-body a {
    color: var(--tropical-purple);
    text-decoration: underline;
    text-decoration-color: rgba(196, 144, 229, 0.5);
    text-underline-offset: 3px;
}

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

.article-body .verdict {
    margin-top: 26px;
    padding: 20px 24px;
    background: rgba(123, 63, 255, 0.12);
    border-left: 4px solid var(--tropical-yellow);
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
}

.step-list, .check-list {
    margin: 14px 0 22px;
    padding-left: 28px;
}
.step-list li, .check-list li { margin-bottom: 10px; }
.step-list li::marker {
    color: var(--tropical-coral);
    font-weight: 700;
}
.check-list { list-style: none; padding-left: 0; }
.check-list li::before {
    content: '🌺';
    display: inline-block;
    margin-right: 10px;
    font-size: 0.95rem;
    filter: saturate(0.9);
}

/* Review meta */
.article-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    background: rgba(10, 8, 32, 0.55);
    border: 1px solid rgba(196, 144, 229, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.article-rating {
    text-align: center;
    padding-right: 24px;
    border-right: 1px solid rgba(196, 144, 229, 0.25);
}
.big-rating {
    display: block;
    font-family: var(--display);
    font-size: 3.6rem;
    color: var(--tropical-yellow);
    line-height: 1;
    font-weight: 800;
}
.big-rating-out {
    display: block;
    color: var(--gray-300);
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
}
.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(--tropical-purple);
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.article-facts dd {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    font-family: var(--body);
}

@media (max-width: 640px) {
    .article-body { padding: 30px 24px; }
    .article-meta { grid-template-columns: 1fr; gap: 16px; }
    .article-rating {
        border-right: none;
        border-bottom: 1px solid rgba(196, 144, 229, 0.25);
        padding: 0 0 16px;
    }
}

/* Bonus highlight */
.bonus-spotlight {
    margin: 18px auto 28px;
    padding: 32px 26px;
    background: linear-gradient(135deg, rgba(123, 63, 255, 0.18), rgba(239, 71, 111, 0.10));
    border: 1px solid rgba(196, 144, 229, 0.3);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(123, 63, 255, 0.2);
}
.bonus-headline {
    font-family: var(--display);
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.bonus-sub {
    margin-top: 8px;
    color: var(--tropical-yellow);
    font-size: 1.3rem;
    font-family: var(--display);
    font-weight: 600;
}
.bonus-tag {
    margin-top: 16px;
    display: inline-block;
    padding: 7px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(123, 63, 255, 0.4);
}

/* ============================================================================
   TOP ALTERNATIVES (sub-pages)
   ============================================================================ */

.top-alternatives { margin: 30px auto 50px; }

/* ============================================================================
   INLINE PLAY-NOW CTA
   ============================================================================ */

.play-now-cta {
    margin: 28px auto;
    max-width: 880px;
    padding: 30px 32px;
    text-align: center;
    border: 1px solid rgba(196, 144, 229, 0.3);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(123, 63, 255, 0.12), rgba(239, 71, 111, 0.08));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.play-now-text {
    color: var(--white);
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.btn-inline-play {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 18px 40px;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(123, 63, 255, 0.45);
}

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

@keyframes orangeFlash {
    0%, 100% { filter: brightness(1.0); box-shadow: 0 10px 28px rgba(123, 63, 255, 0.45); }
    50%      { filter: brightness(1.15); box-shadow: 0 14px 38px rgba(123, 63, 255, 0.7); }
}

@media (max-width: 600px) {
    .btn-inline-play { padding: 14px 26px; font-size: 0.92rem; letter-spacing: 1.4px; }
    .play-now-text { font-size: 1.15rem; }
}

/* ============================================================================
   LOADING / ERROR + UTILITY
   ============================================================================ */

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-soft);
    padding: 40px 20px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    font-family: var(--body);
    font-weight: 500;
}

.load-error {
    text-align: center;
    color: var(--tropical-coral);
    padding: 20px;
    font-weight: 600;
    font-family: var(--display);
    letter-spacing: 0.5px;
}

.footer { display: none; }

.brand-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: filter 0.15s, transform 0.15s;
    cursor: pointer;
}
.brand-link:hover { filter: brightness(1.15); transform: scale(1.03); }
.casino-name a.brand-link:hover,
.hero-name a.brand-link:hover,
.rec-info h3 a.brand-link:hover {
    color: var(--tropical-yellow);
}
a.brand-link.logo,
a.brand-link.hero-logo { display: block; }
