/* =========================================================
   Gold Treasure World — Main Stylesheet
   Brand: Gold/Amber + Forest Green + Deep Black
   Theme: Pirate Adventure Social Casino
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #B45309;
    --green: #22C55E;
    --green-dark: #15803D;
    --black: #0A0A0A;
    --black-mid: #111111;
    --card-bg: #1A1A1A;
    --card-border: #2A2A2A;
    --text: #F5F5F5;
    --muted: #9CA3AF;
    --border: rgba(245, 158, 11, 0.15);

    --font-brand: 'Pirata One', cursive;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;

    --max-w: 1240px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 32px rgba(245, 158, 11, 0.12);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
}

/* ─── ANNOUNCEMENT STRIP ─── */
.top-strip {
    background: linear-gradient(90deg, #1A0F00 0%, #0A1A0A 50%, #1A0F00 100%);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.strip-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--gold);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.strip-badge.green {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--green);
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    gap: 1.5rem;
}

/* LOGO */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.4);
}

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

.logo-name {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.58rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
}

/* HEADER CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* LOCALE */
.locale-wrap {
    position: relative;
}

.locale-btn {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--muted);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.locale-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.locale-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.4rem;
    min-width: 180px;
    z-index: 200;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.locale-dropdown.open {
    display: block;
}

.locale-dropdown a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 7px;
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: none;
    transition: all var(--transition);
}

.locale-dropdown a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
}

/* CTA BUTTON HEADER */
.btn-cta {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.3);
    font-family: var(--font-head);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #4ADE80, var(--green-dark));
    box-shadow: 0 0 22px rgba(34, 197, 94, 0.5);
    transform: translateY(-1px);
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.4rem;
    flex-shrink: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}

/* MOBILE NAV */
.mob-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
    border-top: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.99);
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    font-family: var(--font-head);
}

.mob-nav a:hover {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
}

.mob-nav .btn-cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 1.5rem 3rem;
    background: radial-gradient(ellipse at 20% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.webp') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--gold);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
    color: var(--black);
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.35);
    font-family: var(--font-head);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 44px rgba(245, 158, 11, 0.55);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: var(--gold);
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    font-family: var(--font-head);
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
}

/* HERO STATS */
.hero-kpi {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.kpi-item {
    text-align: left;
}

.kpi-val {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.kpi-label {
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* HERO IMAGE */
.hero-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.15);
    aspect-ratio: 16/9;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-img-score {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
}

/* ─── SECTIONS ─── */
.section {
    padding: 5rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-alt {
    background: linear-gradient(180deg, rgba(30, 20, 0, 0.4) 0%, transparent 100%);
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-alt .section {
    padding: 0;
}

.section-alt-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 620px;
}

/* ─── FEATURE CARDS — HORIZONTAL LIST ─── */
.feat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.feat-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    opacity: 0;
    transition: opacity var(--transition);
}

.feat-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.feat-item:hover::before {
    opacity: 1;
}

.feat-num {
    font-family: var(--font-brand);
    font-size: 2rem;
    color: rgba(245, 158, 11, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feat-title-sm {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.feat-text-sm {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── DATA TABLES ─── */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}

.data-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-tbl thead {
    background: rgba(245, 158, 11, 0.08);
}

.data-tbl th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--card-border);
}

.data-tbl td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.data-tbl tr:last-child td {
    border-bottom: none;
}

.data-tbl tr:hover td {
    background: rgba(245, 158, 11, 0.03);
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-green {
    color: var(--green);
    font-weight: 700;
}

.td-red {
    color: #F87171;
}

.check-yes {
    color: var(--green);
    font-weight: 700;
}

.check-no {
    color: #F87171;
}

/* ─── CHART BAR ─── */
.chart-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-top: 2rem;
}

.chart-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 160px 1fr 60px;
    align-items: center;
    gap: 0.75rem;
}

.bar-label {
    font-size: 0.83rem;
    color: var(--muted);
    font-weight: 600;
}

.bar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1s ease;
}

.bar-fill.green-bar {
    background: linear-gradient(90deg, var(--green), #4ADE80);
}

.bar-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}

/* ─── SCORE SECTION ─── */
.score-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.score-dial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.score-big {
    font-family: var(--font-brand);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.score-denom {
    font-size: 1.2rem;
    color: var(--muted);
}

.score-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.score-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.score-rows {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.score-row {
    display: grid;
    grid-template-columns: 180px 1fr 40px;
    align-items: center;
    gap: 0.75rem;
}

.score-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
}

.score-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.score-fill.g {
    background: linear-gradient(90deg, var(--green), #4ADE80);
}

.score-pct {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}

/* ─── BONUS CARDS ─── */
.bonus-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.bonus-card.featured {
    border-color: rgba(245, 158, 11, 0.4);
}

.bonus-card.featured::after {
    content: 'BEST OFFER';
    position: absolute;
    top: 1rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.2rem 2.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
}

.bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    width: fit-content;
}

.bonus-tag.gold {
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
}

.bonus-sub {
    font-size: 0.82rem;
    color: var(--muted);
}

.bonus-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/1;
    margin: 0.5rem 0;
}

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

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bonus-list li {
    font-size: 0.87rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
}

.bonus-list li::before {
    content: '\2713';
    color: var(--green);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ─── GAME GRID ─── */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.game-tile {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.game-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.game-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1A1005, #0A1A0A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-info {
    padding: 0.75rem;
}

.game-name {
    font-weight: 700;
    font-size: 0.83rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.game-provider {
    font-size: 0.72rem;
    color: var(--muted);
}

.game-rtp {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 700;
    margin-top: 0.2rem;
}

/* ─── VIP TIERS ─── */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
    margin-top: 2rem;
}

.vip-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all var(--transition);
}

.vip-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
}

.vip-card.active {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
}

.vip-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vip-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.vip-perk {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ─── QUICK FACTS TIMELINE ─── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-dot {
    width: 28px;
    height: 28px;
    background: rgba(245, 158, 11, 0.12);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-item:not(:last-child) .timeline-dot::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 1.5rem - 28px);
    background: rgba(245, 158, 11, 0.15);
}

.timeline-content {
    padding-top: 2px;
}

.timeline-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.timeline-text {
    font-size: 0.83rem;
    color: var(--muted);
}

/* ─── DONUT CHART (SVG based) ─── */
.donut-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    flex: 1;
}

.legend-pct {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
}

/* ─── SEO TEXT BLOCK ─── */
.seo-block {
    background: linear-gradient(180deg, rgba(20, 12, 0, 0.5) 0%, transparent 100%);
    border-top: 1px solid var(--border);
    padding: 5rem 1.5rem;
}

.seo-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.seo-text h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.seo-text h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 1.5rem 0 0.5rem;
}

.seo-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.seo-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* SIDEBAR */
.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-title {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-list li {
    font-size: 0.83rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.sidebar-list li::before {
    content: '\25BA';
    color: var(--green);
    position: absolute;
    left: 0;
    font-size: 0.6rem;
    top: 3px;
}

/* ─── AUTHOR BOX ─── */
.author-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

.author-name {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.author-title {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── RESPONSIBLE GAMING BAR ─── */
.rg-strip {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--muted);
}

.rg-strip a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.age-chip {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #F87171;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.72rem;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
}

.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-name {
    font-size: 1.5rem;
}

.footer-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 280px;
}

.footer-disclaimer {
    font-size: 0.72rem;
    color: rgba(156, 163, 175, 0.6);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(156, 163, 175, 0.5);
    flex-wrap: wrap;
}

/* ─── UTILITIES ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.gold-text {
    color: var(--gold);
}

.green-text {
    color: var(--green);
}

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

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* ─── DESKTOP BURGER HIDE ─── */
@media (min-width: 769px) {
    .burger {
        display: none !important;
    }

    .mob-nav {
        display: none !important;
    }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .locale-wrap {
        display: none !important;
    }

    .logo-sub {
        display: none;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    /* Шапка: лого | spacer | кнопка CTA | бургер */
    .header-inner {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
    }

    .header-inner .site-logo {
        grid-column: 1;
    }

    .header-inner nav {
        display: none !important;
    }

    .header-inner .header-cta {
        grid-column: 3;
        margin-left: 0;
        gap: 0.4rem;
    }

    .header-inner .header-cta .locale-wrap {
        display: none !important;
    }

    .header-cta .btn-cta {
        font-size: 0.74rem;
        padding: 0.45rem 0.7rem;
        white-space: nowrap;
    }

    .burger {
        display: flex !important;
        grid-column: 4;
        margin-left: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-img-box {
        order: -1;
    }

    .hero-kpi {
        gap: 1rem;
    }

    .score-layout {
        grid-template-columns: 1fr;
    }

    .feat-strip {
        grid-template-columns: 1fr;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

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

    .vip-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .donut-section {
        grid-template-columns: 1fr;
    }

    .seo-inner {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .bar-row {
        grid-template-columns: 100px 1fr 50px;
    }

    .score-row {
        grid-template-columns: 130px 1fr 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-alt {
        padding: 3rem 1rem;
    }

    .vip-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }
}