/* =====================================================
   Puls-z.world — CSS Design System
   Brand: Pulsz Social Casino
   Colors: Purple #1A0533 / #7C3AED · Gold #F59E0B
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Exo+2:wght@400;500;600;700;800&display=swap');

:root {
    --pur-darkest: #0D0120;
    --pur-dark: #1A0533;
    --pur-mid: #2D0A6E;
    --pur-main: #7C3AED;
    --pur-light: #A855F7;
    --pur-glow: #C084FC;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #D97706;
    --white: #F8F4FF;
    --muted: #B8A8D4;
    --border: rgba(124, 58, 237, 0.25);
    --border-gold: rgba(245, 158, 11, 0.35);
    --card-bg: rgba(45, 10, 110, 0.5);
    --glass: rgba(124, 58, 237, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
    --shadow-gold: 0 4px 24px rgba(245, 158, 11, 0.2);
    --transition: 0.22s ease;
    --max-w: 1200px;
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--pur-darkest);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    z-index: 9999;
    background: var(--pur-main);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

/* ─── TOP STRIP ─── */
.top-strip {
    background: linear-gradient(90deg, var(--pur-mid), #3B0764);
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 1.5rem;
    font-size: 0.78rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-strip span {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.strip-pill {
    background: var(--gold);
    color: #000;
    padding: 0.18rem 0.55rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.strip-pill.purple {
    background: var(--pur-main);
    color: #fff;
}

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 1, 32, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #C026D3 0%, #EC4899 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    box-shadow: 0 0 20px rgba(192, 38, 211, 0.55);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: 'pulsz';
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: -0.03em;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #C026D3, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: -4px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--glass);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Locale switcher */
.locale-wrap {
    position: relative;
}

.locale-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.locale-btn:hover {
    border-color: var(--pur-main);
    color: var(--white);
}

.locale-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--pur-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 180px;
    box-shadow: var(--shadow);
    z-index: 200;
    overflow: hidden;
}

.locale-dropdown.open {
    display: block;
}

.locale-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition);
}

.locale-dropdown a:hover {
    background: var(--glass);
    color: var(--white);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1A0533;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 0.6rem 1.3rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}

/* Burger */
/* Default: hidden everywhere, only shown in mobile media query */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile nav */
.mob-nav {
    display: none;
    flex-direction: column;
    background: var(--pur-dark);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mob-nav a:last-child {
    border: none;
}

.mob-nav a:hover {
    color: var(--white);
}

.mob-nav .btn-cta {
    margin-top: 0.75rem;
    justify-content: center;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0D0120 0%, #1A0533 40%, #2D0A6E 100%);
    padding: 5rem 1.5rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--pur-main);
    color: var(--pur-glow);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pur-main), var(--pur-light));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    transition: all var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.82rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--gold);
    color: #1A0533;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.35);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(13, 1, 32, 0.3));
}

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-val {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── SECTIONS ─── */
.section {
    padding: 5rem 1.5rem;
}

.section--alt {
    background: rgba(45, 10, 110, 0.15);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pur-glow);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--pur-main);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.text-gold {
    color: var(--gold);
}

/* ─── FEATURE GRID (homepage 3-col) ─── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pur-main), var(--pur-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.feat-card:hover {
    border-color: var(--pur-main);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feat-card:hover::before {
    opacity: 1;
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feat-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.feat-text {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ─── BONUS CARDS ─── */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bonus-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.bonus-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.bonus-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.bonus-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
}

/* ─── SCORE CARD ─── */
.score-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: center;
}

.score-circle {
    width: 200px;
    height: 200px;
    background: conic-gradient(var(--pur-main) 333deg, var(--glass) 0deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.score-circle::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: var(--pur-dark);
    border-radius: 50%;
}

.score-num {
    position: relative;
    z-index: 1;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-num small {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

.score-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.score-row {
    display: grid;
    grid-template-columns: 130px 1fr 40px;
    align-items: center;
    gap: 0.75rem;
}

.score-name {
    font-size: 0.85rem;
    color: var(--muted);
}

.score-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pur-main), var(--pur-light));
}

.score-fill.gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.score-pct {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    text-align: right;
}

/* ─── TABLE ─── */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.data-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-tbl thead {
    background: var(--pur-mid);
}

.data-tbl th {
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--gold);
    white-space: nowrap;
}

.data-tbl td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: middle;
}

.data-tbl tbody tr:last-child td {
    border: none;
}

.data-tbl tbody tr:hover {
    background: var(--glass);
}

.td-green {
    color: #4ADE80;
    font-weight: 700;
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-red {
    color: #F87171;
}

.check::before {
    content: '✓ ';
    color: #4ADE80;
}

.cross::before {
    content: '✗ ';
    color: #F87171;
}

/* ─── BAR CHART ─── */
.chart-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.chart-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 0.75rem;
}

.bar-name {
    font-size: 0.83rem;
    color: var(--muted);
}

.bar-track {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--pur-main), var(--pur-glow));
    transition: width 1s ease;
}

.bar-fill.gold-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.bar-val {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
    text-align: right;
}

/* ─── VIP TIERS ─── */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.vip-tier {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.vip-tier:hover {
    transform: translateY(-4px);
    border-color: var(--pur-light);
}

.vip-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.vip-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--white);
}

.vip-pts {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.vip-tier.royal {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
}

.vip-tier.royal .vip-name {
    color: var(--gold);
}

/* ─── IMAGE SECTIONS ─── */
.img-full {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.img-section img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ─── GAME CARDS ─── */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.game-card:hover {
    border-color: var(--pur-main);
    transform: translateY(-3px);
}

.game-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--pur-mid), var(--pur-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.game-info {
    padding: 0.75rem 1rem;
}

.game-name {
    font-weight: 700;
    font-size: 0.88rem;
}

.game-provider {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.game-rtp {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 0.3rem;
}

/* ─── FAQ ─── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    font-family: var(--font-body);
    transition: background var(--transition);
}

.faq-btn:hover {
    background: var(--glass);
}

.faq-arr {
    font-size: 1rem;
    color: var(--pur-glow);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-btn.open .faq-arr {
    transform: rotate(180deg);
}

.faq-body {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.faq-body.open {
    display: block;
}

/* ─── AUTHOR BOX ─── */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2.5rem 0;
}

.author-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pur-main);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
}

.author-title {
    font-size: 0.8rem;
    color: var(--pur-glow);
    margin-bottom: 0.5rem;
}

.author-bio {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── SEO TEXT BLOCK ─── */
.seo-block {
    background: rgba(45, 10, 110, 0.12);
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem;
}

.seo-block .container {
    max-width: 860px;
}

.seo-block h2 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.seo-block h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    color: var(--pur-glow);
}

.seo-block p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.seo-block a {
    color: var(--pur-glow);
    text-decoration: underline;
    text-decoration-color: rgba(192, 132, 252, 0.4);
}

.seo-block a:hover {
    color: var(--white);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--pur-glow);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--muted);
}

.bc-bar {
    background: rgba(45, 10, 110, 0.3);
    border-bottom: 1px solid var(--border);
}

/* ─── PAGE-HERO ─── */
.page-hero {
    background: linear-gradient(160deg, #0D0120, #1A0533 60%, #2D0A6E);
    padding: 4rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(124, 58, 237, 0.15), transparent);
    pointer-events: none;
}

.page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow);
}

/* ─── RG BAR ─── */
.rg-bar {
    background: rgba(45, 10, 110, 0.5);
    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);
    text-align: center;
}

.rg-bar a {
    color: var(--pur-glow);
}

.age-badge {
    background: var(--pur-main);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.78rem;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--pur-dark);
    border-top: 1px solid var(--border);
    padding: 3.5rem 1.5rem 0;
}

.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
}

.footer-about {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 0.75rem;
}

.footer-legal-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: var(--max-w);
    margin: 0 auto;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--pur-glow);
    text-decoration: none;
}

/* ─── RESPONSIVE ─── */

/* Explicit desktop: always hide burger, always show nav */
@media (min-width: 769px) {
    .burger {
        display: none !important;
    }

    .main-nav {
        display: flex !important;
    }

    .mob-nav {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .main-nav a {
        font-size: 0.78rem;
        padding: 0.4rem 0.55rem;
    }

    .header-cta .btn-cta {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
    }
}

@media (max-width: 1024px) {
    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vip-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .locale-wrap {
        display: none !important;
    }

    .header-inner {
        gap: 0.5rem;
        padding: 0.6rem 1rem;
    }

    /* logo stays left naturally as first flex child */

    .header-cta {
        margin-left: auto;
        /* push cta+burger to the right */
        gap: 0.5rem;
    }

    .header-cta .btn-cta {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
        white-space: nowrap;
    }

    .burger {
        display: flex !important;
        flex-shrink: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-img-wrap {
        order: -1;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .score-wrap {
        grid-template-columns: 1fr;
    }

    .score-circle {
        margin: 0 auto;
    }

    .img-section {
        grid-template-columns: 1fr;
    }

    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .game-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vip-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .bar-row {
        grid-template-columns: 100px 1fr 50px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}