/* =============================================
   RankingSitesPT — "Mesa Verde" Theme
   Deep Casino-Green + Cream/Ivory + Copper
   A fresh identity distinguishing this site
   ============================================= */

/* ── 1. Tokens ── */
:root {
    --green-900: #020d06;
    --green-800: #061a0e;
    --green-700: #0a2614;
    --green-600: #0f3320;
    --green-500: #165a38;
    --green-400: #1e7a4a;

    --cream: #f5efe0;
    --cream-dim: #c8bfa8;
    --cream-muted: #8a8070;

    --copper: #c87941;
    --copper-light: #e8a060;
    --copper-glow: rgba(200, 121, 65, .35);
    --copper-soft: rgba(200, 121, 65, .12);

    --ivory: #faf6ee;
    --white: #ffffff;

    --gradient-main: linear-gradient(135deg, #c87941, #e8a060);
    --gradient-green: linear-gradient(135deg, #165a38, #0f3320);
    --gradient-felt: linear-gradient(160deg, #061a0e 0%, #0a2614 50%, #061a0e 100%);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;

    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;

    --shadow-card: 0 2px 20px rgba(0, 0, 0, .45), 0 0 0 1px rgba(200, 121, 65, .06);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, .6), 0 0 0 1px rgba(200, 121, 65, .16);
    --shadow-glow: 0 0 40px rgba(200, 121, 65, .18);

    --transition: .28s cubic-bezier(.4, 0, .2, 1);

    --container: 1160px;
    --pad: 24px;
}

/* ── 2. Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream);
    background: var(--green-800);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: .5em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700
}

h3 {
    font-size: 1.4rem;
    font-weight: 600
}

h4 {
    font-size: 1.1rem;
    font-weight: 600
}

p {
    margin-bottom: 1em;
    color: var(--cream-dim)
}

a {
    color: var(--copper-light);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--copper)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul,
ol {
    list-style: none
}

::selection {
    background: rgba(200, 121, 65, .4);
    color: #fff
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.text-center {
    text-align: center
}

.mt-2 {
    margin-top: 16px
}

.mt-3 {
    margin-top: 24px
}

/* ── 3. Azulejo background pattern ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(200, 121, 65, .04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* ── 4. Top Bar ── */
.top-bar {
    background: var(--green-900);
    border-bottom: 1px solid rgba(200, 121, 65, .1);
    padding: 7px 0;
    font-size: .78rem;
    color: var(--cream-muted);
    position: relative;
    z-index: 10;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-bar-links {
    display: flex;
    gap: 20px;
    align-items: center
}

.top-bar a {
    color: var(--cream-muted);
    transition: color var(--transition)
}

.top-bar a:hover {
    color: var(--copper-light)
}

.top-bar-age {
    background: var(--copper-soft);
    border: 1px solid rgba(200, 121, 65, .2);
    color: var(--copper-light);
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    letter-spacing: .5px;
}

/* ── 5. Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 26, 14, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200, 121, 65, .08);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, .6), 0 1px 0 rgba(200, 121, 65, .1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* Logo — wordmark style */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ivory);
    letter-spacing: -.3px;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: .85;
    color: var(--ivory)
}

.logo-gem {
    width: 34px;
    height: 34px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 12px var(--copper-glow);
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper-light);
    font-family: var(--font-body);
    font-weight: 600
}

.logo-main {
    font-size: 1.3rem;
    color: var(--ivory)
}

/* Desktop nav inside header */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--cream-muted);
    padding: 5px 0;
    position: relative;
    transition: color var(--transition);
    font-family: var(--font-body);
    letter-spacing: .3px;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--copper-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--ivory);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    transform: scaleX(1);
}

/* Mobile sidebar — hidden on desktop */
.nav-sidebar {
    display: none;
}

/* Top bar message — hide on small screens */
@media(max-width:600px) {
    .top-bar-msg {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
    }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ── 6. Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--delay, 0s)
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0)
}

/* ── 7. Hero — Leaderboard Style ── */
.hero {
    position: relative;
    padding: 72px 0 80px;
    background: var(--gradient-felt);
    overflow: hidden;
    z-index: 1;
}

/* Radial felt glow */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(22, 90, 56, .45) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Decorative lines like a roulette table */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(200, 121, 65, .6), rgba(200, 121, 65, .8), rgba(200, 121, 65, .6), transparent);
}

.hero>.container {
    position: relative;
    z-index: 2
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 56px;
    align-items: start;
}

/* Left: text block */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 121, 65, .1);
    border: 1px solid rgba(200, 121, 65, .2);
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--copper-light);
    margin-bottom: 20px;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper-light);
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--ivory);
}

.hero-text h1 em {
    font-style: normal;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.02rem;
    color: var(--cream-dim);
    max-width: 420px;
    margin-bottom: 28px
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    color: var(--cream-dim);
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

/* Right: Leaderboard panel */
.leaderboard {
    background: rgba(2, 13, 6, .5);
    border: 1px solid rgba(200, 121, 65, .15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(200, 121, 65, .05);
}

.leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(200, 121, 65, .08);
    border-bottom: 1px solid rgba(200, 121, 65, .1);
}

.leaderboard-title {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper-light);
}

.leaderboard-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    color: var(--cream-muted);
}

.leaderboard-live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: blink 1.5s infinite;
}

.lb-entry {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background var(--transition);
}

.lb-entry:last-child {
    border-bottom: none
}

.lb-entry:hover {
    background: rgba(200, 121, 65, .04)
}

.lb-entry.lb-top {
    background: rgba(200, 121, 65, .06)
}

.lb-pos {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, .04);
    color: var(--cream-muted);
}

.lb-pos.gold {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 0 16px var(--copper-glow)
}

.lb-pos.silver {
    background: rgba(192, 192, 192, .15);
    color: silver
}

.lb-pos.bronze {
    background: rgba(176, 141, 87, .15);
    color: #b08d57
}

.lb-info {}

.lb-name {
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1.1
}

.lb-bonus {
    font-size: .72rem;
    color: var(--copper-light);
    font-weight: 600;
    margin-top: 2px
}

.lb-score {
    text-align: right
}

.lb-score-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lb-score-stars {
    font-size: .6rem;
    color: var(--copper);
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin-top: 1px
}

.leaderboard-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(200, 121, 65, .1);
    background: rgba(2, 13, 6, .3);
}

.leaderboard-footer a.btn-full {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .5px;
    transition: opacity var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px var(--copper-glow);
}

.leaderboard-footer a.btn-full:hover {
    opacity: .88;
    box-shadow: 0 6px 28px var(--copper-glow)
}

/* ── 8. Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 18px var(--copper-glow);
}

.btn-primary:hover {
    box-shadow: 0 6px 28px var(--copper-glow);
    transform: translateY(-1px);
    color: #fff;
    opacity: .92
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(200, 121, 65, .35);
    color: var(--copper-light);
}

.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper)
}

.btn-sm {
    padding: 8px 18px;
    font-size: .82rem
}

.btn-lg {
    padding: 14px 32px;
    font-size: .96rem
}

/* Legacy .button aliases */
.button.primary {
    background: var(--gradient-main);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .88rem;
    box-shadow: 0 4px 18px var(--copper-glow);
    transition: all var(--transition)
}

.button.primary:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: #fff
}

.button.primary.sm {
    padding: 8px 18px;
    font-size: .8rem
}

.button.primary.lg {
    padding: 14px 30px;
    font-size: .94rem
}

.button.lg {
    background: rgba(200, 121, 65, .1);
    border: 1.5px solid rgba(200, 121, 65, .3);
    color: var(--copper-light);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition)
}

.button.lg:hover {
    background: rgba(200, 121, 65, .18);
    border-color: var(--copper);
    color: var(--ivory)
}

/* ── 9. Scoreboard Stats ── */
.stats-band {
    background: var(--green-900);
    border-top: 1px solid rgba(200, 121, 65, .1);
    border-bottom: 1px solid rgba(200, 121, 65, .1);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(200, 121, 65, .08);
}

.stat-item:last-child {
    border-right: none
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: .78rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600
}

/* ── 10. Casino Ticket Cards ── */
.rankings-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.rankings-section .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper-light);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 0
}

.section-sub {
    font-size: .88rem;
    color: var(--cream-muted);
    max-width: 380px;
    line-height: 1.5
}

/* Ticket-style card */
.ticket {
    display: grid;
    grid-template-columns: 5px 1fr;
    background: rgba(2, 13, 6, .6);
    border: 1px solid rgba(200, 121, 65, .08);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
}

.ticket:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 121, 65, .2);
}

.ticket-stripe {
    background: var(--gradient-main)
}

/* left accent stripe */
.ticket-body {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

/* Rank number in its own column */
.ticket-rank {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(200, 121, 65, .25);
    text-align: center;
    user-select: none;
    line-height: 1;
}

.ticket.rank-1 .ticket-rank {
    color: var(--copper-light);
    text-shadow: 0 0 20px var(--copper-glow)
}

.ticket-info {}

.ticket-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ivory);
    margin-bottom: 5px;
}

.ticket-offer {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--copper-light);
    background: rgba(200, 121, 65, .1);
    border: 1px solid rgba(200, 121, 65, .14);
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    margin-bottom: 8px;
}

.ticket-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.ticket-tag {
    font-size: .7rem;
    color: var(--cream-muted);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 2px 9px;
    border-radius: var(--radius-pill);
}

.ticket-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 68px;
}

.ticket-score-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
}

.ticket-score-max {
    font-size: .7rem;
    color: var(--cream-muted);
    margin-top: 2px
}

.ticket-stars {
    color: var(--copper);
    font-size: .65rem;
    letter-spacing: 2px;
    margin-top: 3px
}

.ticket-action {
    min-width: 130px;
    text-align: center
}

/* Divider with azulejo tile motif */
.tile-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 0;
}

.tile-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 121, 65, .2), transparent)
}

.tile-divider-gem {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(200, 121, 65, .3);
    border-radius: 4px;
    transform: rotate(45deg);
    background: rgba(200, 121, 65, .06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-divider-gem::after {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid rgba(200, 121, 65, .5);
    border-radius: 2px;
    transform: rotate(0deg);
    background: rgba(200, 121, 65, .15);
}

/* ── 10.5. Gambling Backgrounds ── */
.casino-bg {
    position: relative;
    min-height: 390px;
    background-attachment: local;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.casino-bg--1 {
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920&q=80');
}

.casino-bg--2 {
    background-image: url('https://images.unsplash.com/photo-1566563255308-753861417000?w=1920&q=80');
}

.casino-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 13, 6, .72) 0%, rgba(2, 13, 6, .9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 46px 0;
}

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

.casino-bg__title {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: var(--ivory);
    line-height: 1.2;
}

.casino-bg__text {
    margin: 0;
    color: var(--cream-dim);
    font-size: .97rem;
    line-height: 1.8;
}

/* ── 11. Trust / Why Section ── */
.why-section {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-content {}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 28px
}

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(200, 121, 65, .08);
    border: 1px solid rgba(200, 121, 65, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-item h4 {
    color: var(--ivory);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .96rem
}

.why-item p {
    margin-bottom: 0;
    font-size: .88rem;
    line-height: 1.6
}

/* Visual panel — felt table */
.why-visual {
    background: rgba(2, 13, 6, .6);
    border: 1px solid rgba(200, 121, 65, .1);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-glow);
}

.why-visual-title {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper-light);
    margin-bottom: 20px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.rating-row:last-of-type {
    border-bottom: none
}

.rating-label {
    flex: 1;
    font-size: .86rem;
    color: var(--cream-dim)
}

.rating-bar-wrap {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 3px;
    overflow: hidden
}

.rating-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--gradient-main)
}

.rating-val {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ivory);
    min-width: 30px;
    text-align: right
}

.overall-score {
    margin-top: 24px;
    padding: 20px;
    background: rgba(200, 121, 65, .06);
    border: 1px solid rgba(200, 121, 65, .15);
    border-radius: var(--radius-md);
    text-align: center;
}

.overall-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.overall-label {
    font-size: .75rem;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px
}

/* ── 12. Info Tabs ── */
.info-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.tabs-wrapper {
    margin-top: 40px
}

.tabs-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(200, 121, 65, .12);
    margin-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: .84rem;
    font-weight: 600;
    color: var(--cream-muted);
    padding: 10px 20px;
    cursor: pointer;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--ivory)
}

.tab-btn.active {
    color: var(--copper-light);
    border-bottom-color: var(--copper-light);
    background: rgba(200, 121, 65, .06);
}

.tab-panels {}

.tab-panel {
    display: none;
    padding: 32px;
    background: rgba(2, 13, 6, .5);
    border: 1px solid rgba(200, 121, 65, .08);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.tab-panel h3 {
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 12px
}

.tab-panel p {
    font-size: .9rem;
    line-height: 1.75;
    margin-bottom: 12px
}

.tab-panel ul {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tab-panel ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--cream-dim);
}

.tab-panel ul li::before {
    content: '◆';
    color: var(--copper);
    font-size: .5rem;
    margin-top: 6px;
    flex-shrink: 0;
}

.tab-panel-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(200, 121, 65, .08);
    aspect-ratio: 4/3;
    background: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ── 13. FAQ ── */
.faq-section {
    padding: 80px 0;
    background: var(--green-900);
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

details.faq-item {
    background: rgba(10, 38, 20, .5);
    border: 1px solid rgba(200, 121, 65, .08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

details.faq-item[open] {
    border-color: rgba(200, 121, 65, .2)
}

details.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .92rem;
    color: var(--ivory);
    list-style: none;
    transition: color var(--transition);
    user-select: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none
}

details.faq-item summary::after {
    content: '＋';
    font-size: 1.1rem;
    color: var(--copper);
    flex-shrink: 0;
    transition: transform var(--transition);
}

details.faq-item[open] summary::after {
    transform: rotate(45deg)
}

details.faq-item summary:hover {
    color: var(--copper-light)
}

.faq-body {
    padding: 0 22px 18px;
    font-size: .88rem;
    color: var(--cream-dim);
    line-height: 1.75;
}

.faq-body p {
    margin-bottom: .5em
}

.faq-body a {
    color: var(--copper-light)
}

/* ── 14. Methodology ── */
.method-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.method-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.method-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.method-step:last-child {
    border-bottom: none
}

.step-num {
    width: 48px;
    height: 48px;
    background: rgba(200, 121, 65, .08);
    border: 1px solid rgba(200, 121, 65, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--copper-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.method-step h4 {
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 5px
}

.method-step p {
    margin-bottom: 0;
    font-size: .88rem;
    line-height: 1.65
}

.method-aside {}

.method-card {
    background: rgba(2, 13, 6, .6);
    border: 1px solid rgba(200, 121, 65, .12);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.method-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--copper-light);
    margin-bottom: 16px;
}

.weight-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.weight-label {
    flex: 1;
    font-size: .84rem;
    color: var(--cream-dim)
}

.weight-pill {
    font-size: .72rem;
    font-weight: 700;
    background: var(--gradient-main);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    min-width: 44px;
    text-align: center;
}

/* ── 15. CTA Responsible Gaming ── */
.rg-band {
    padding: 64px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.rg-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 90, 56, .3) 0%, rgba(6, 26, 14, .6) 100%);
}

.rg-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: rgba(2, 13, 6, .6);
    border: 1px solid rgba(200, 121, 65, .12);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow-card);
}

.rg-text h2 {
    font-size: 1.6rem;
    margin-bottom: 8px
}

.rg-text p {
    margin-bottom: 0;
    max-width: 480px;
    font-size: .92rem
}

/* ── 16. Footer ── */
.footer {
    background: var(--green-900);
    border-top: 1px solid rgba(200, 121, 65, .1);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.footer-brand p {
    font-size: .86rem;
    color: var(--cream-muted);
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 320px
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.footer-badge {
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(200, 121, 65, .08);
    border: 1px solid rgba(200, 121, 65, .12);
    color: var(--cream-muted);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--copper-light);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul a {
    font-size: .86rem;
    color: var(--cream-muted);
    transition: color var(--transition)
}

.footer-col ul a:hover {
    color: var(--ivory)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .78rem;
    color: var(--cream-muted);
    margin-bottom: 0
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    font-size: .78rem;
    color: var(--cream-muted)
}

.footer-bottom-links a:hover {
    color: var(--ivory)
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 20px 0;
}

.footer-disclaimer p {
    font-size: .73rem;
    color: var(--cream-muted);
    line-height: 1.7;
    margin-bottom: 0;
    opacity: .7;
}

/* ── 17. Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(2, 13, 6, .96);
    border-top: 1px solid rgba(200, 121, 65, .15);
    padding: 14px 0;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner.is-visible {
    transform: translateY(0)
}

.cookie-banner.hiding {
    transform: translateY(100%)
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: .82rem;
    color: var(--cream-muted);
    flex: 1
}

.cookie-text a {
    color: var(--copper-light)
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.cookie-accept {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    transition: opacity var(--transition);
}

.cookie-accept:hover {
    opacity: .85
}

.cookie-decline {
    background: none;
    color: var(--cream-muted);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-decline:hover {
    color: var(--ivory);
    border-color: rgba(255, 255, 255, .2)
}

/* ── 18. Subpage styles ── */
.page-hero {
    padding: 72px 0 60px;
    background: var(--gradient-felt);
    position: relative;
    z-index: 1;
    text-align: center;
    border-bottom: 1px solid rgba(200, 121, 65, .1);
}

.page-hero h1 {
    margin-bottom: 14px
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto
}

.page-hero .gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(2, 13, 6, .5);
    border: 1px solid rgba(200, 121, 65, .08);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.content-block h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--ivory)
}

.content-block h2:first-child {
    margin-top: 0
}

.content-block h3 {
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--cream)
}

.content-block p {
    font-size: .92rem;
    line-height: 1.8;
    color: var(--cream-dim)
}

.content-block ul,
.content-block ol {
    margin-left: 20px;
    margin-bottom: 1em
}

.content-block ul {
    list-style: disc
}

.content-block ol {
    list-style: decimal
}

.content-block ul li,
.content-block ol li {
    font-size: .9rem;
    color: var(--cream-dim);
    margin-bottom: 6px;
    padding-left: 4px
}

.content-block a {
    color: var(--copper-light)
}

.content-block strong {
    color: var(--ivory)
}

/* ── 19. Mobile nav sidebar ── */

/* Backdrop — always available, shown/hidden via JS class */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile sidebar — independent of header stacking context */
.nav-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    z-index: 10001;
    background: #061a0e;
    border-left: 1px solid rgba(200, 121, 65, .18);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .7);
    display: none;
    /* hidden on desktop */
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.nav-sidebar.is-open {
    transform: translateX(0);
}

.nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(200, 121, 65, .1);
    background: rgba(2, 13, 6, .6);
    flex-shrink: 0;
}

.nav-menu-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ivory);
}

.nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(200, 121, 65, .1);
    border: 1px solid rgba(200, 121, 65, .18);
    color: var(--copper-light);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.nav-close-btn:hover {
    background: rgba(200, 121, 65, .2);
    color: var(--ivory);
}

.nav-menu-links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.nav-sidebar a {
    font-size: 1rem;
    color: var(--cream-dim);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
    display: block;
}

.nav-sidebar a:hover,
.nav-sidebar a.active {
    color: var(--ivory);
    background: rgba(200, 121, 65, .07);
    padding-left: 30px;
}

.nav-sidebar a.active {
    border-left: 2px solid var(--copper-light);
}

.nav-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(200, 121, 65, .1);
    flex-shrink: 0;
}

.nav-menu-footer p {
    font-size: .72rem;
    color: var(--cream-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* On mobile: show sidebar, hide desktop nav */
@media(max-width:768px) {
    .nav-sidebar {
        display: flex;
        /* reveal as flex column */
    }

    .nav-desktop {
        display: none;
        /* hide desktop inline nav */
    }

    .mobile-toggle {
        display: flex;
        z-index: 10002;
        position: relative;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* ── 20. Responsive ── */
@media(max-width:1024px) {
    .casino-bg {
        min-height: 330px;
        background-attachment: scroll;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .leaderboard {
        max-width: 560px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item:nth-child(2) {
        border-right: none
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(200, 121, 65, .08)
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(200, 121, 65, .08);
        border-right: none
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .tab-panel.active {
        grid-template-columns: 1fr
    }

    .tab-panel-img {
        display: none
    }

    .method-layout {
        grid-template-columns: 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .rg-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: span 2
    }
}

@media(max-width:680px) {
    .casino-bg {
        min-height: 280px;
    }

    .casino-bg__overlay {
        padding: 30px 0;
    }

    .ticket-body {
        grid-template-columns: 40px 1fr auto
    }

    .ticket-score {
        display: none
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: auto
    }

    .content-block {
        padding: 28px
    }

    .rg-inner {
        padding: 28px 24px
    }

    .rankings-section .section-head {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:480px) {
    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 4px
    }

    .tab-btn {
        border-radius: var(--radius-sm);
        border-bottom: none;
        border-left: 2px solid transparent;
        padding: 10px 16px
    }

    .tab-btn.active {
        border-left-color: var(--copper-light);
        border-bottom: none
    }

    .tab-panel.active {
        border-top: 1px solid rgba(200, 121, 65, .08)
    }

    .ticket-body {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 16px
    }

    .ticket-rank {
        display: none
    }
}

@media print {

    .site-header,
    .cookie-banner,
    .top-bar {
        display: none
    }

    body {
        background: #fff;
        color: #000
    }
}
