/* ============================================
   ZONE9 GROUP — CONTENT PAGES
   Aesthetic: Cinematic Command Center
   Fonts: Outfit (display) + Satoshi (body)
   ============================================ */

:root {
    --bg: #050508;
    --bg-card: #0c0c18;
    --bg-card-hover: #111120;
    --border: rgba(255,255,255,0.05);
    --border-hover: rgba(226,255,63,0.15);
    --gold: #e2ff3f;
    --gold-dim: #b8d433;
    --gold-glow: rgba(226,255,63,0.12);
    --green: #34d399;
    --red: #f87171;
    --text: #eeeef2;
    --text-dim: #6b6f85;
    --text-body: #a0a4b8;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

/* ---- Ambient Background ---- */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -2;
}
.ambient-orb--1 {
    width: 600px; height: 600px;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(226,255,63,0.12) 0%, transparent 70%);
}
.ambient-orb--2 {
    width: 400px; height: 400px;
    bottom: 30%; right: -100px;
    background: radial-gradient(circle, rgba(184,212,51,0.06) 0%, transparent 70%);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ---- Reading Progress ---- */
.reading-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
    z-index: 9999;
    width: 0;
    transition: width 0.1s linear;
}

/* ---- Container ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
    background: rgba(6,6,11,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}
.header-logo { height: 32px; width: auto; }
.header-brand-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.header-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--transition);
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: var(--text); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }

.header-cta {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: #000;
    text-decoration: none;
    margin-left: 12px;
    transition: box-shadow var(--transition), transform var(--transition);
    flex-shrink: 0;
}
.header-cta:hover {
    box-shadow: 0 0 24px var(--gold-glow);
    transform: translateY(-1px);
}

.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(--text-dim);
    border-radius: 1px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    text-align: center;
    padding: 140px 0 60px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    bottom: -80px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 300px;
    background: radial-gradient(ellipse, rgba(226,255,63,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid rgba(226,255,63,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, #fcd34d 50%, var(--gold-dim) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ---- Buttons ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition);
}
.btn-gold:hover {
    box-shadow: 0 6px 30px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    text-decoration: none;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

/* ---- Trust Strip ---- */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dim);
    background: rgba(255,255,255,0.03);
    padding: 7px 14px;
    border-radius: 50px;
    border: 1px solid var(--border);
}
.trust-chip svg { color: var(--gold); flex-shrink: 0; }

/* ============================================
   PLATFORM SHOWCASE
   ============================================ */
.platforms-showcase {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.platform-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.platform-showcase-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    text-decoration: none;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}
.platform-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226,255,63,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.platform-showcase-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(226,255,63,0.06);
    transform: translateY(-2px);
}
.platform-showcase-card:hover::before { opacity: 1; }

.psc-logo-wrap {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(226,255,63,0.08), rgba(226,255,63,0.02));
    border: 1px solid rgba(226,255,63,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.psc-logo {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}
.psc-logo-fallback {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.psc-body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.psc-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text);
}
.psc-years {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    background: rgba(52,211,153,0.08);
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 6px;
}
.psc-body p {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.psc-arrow {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.platform-showcase-card:hover .psc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 40px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.section-header p {
    color: var(--text-dim);
    font-size: 0.92rem;
    max-width: 640px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.section-comparison {
    padding: 80px 0;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.slots-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 780px;
}
.slots-table thead {
    background: rgba(226,255,63,0.05);
    border-bottom: 1px solid var(--border);
}
.slots-table th {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.slots-table td {
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.03);
    color: var(--text-body);
}
.slots-table tbody tr {
    transition: background var(--transition);
}
.slots-table tbody tr:hover {
    background: rgba(226,255,63,0.03);
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(226,255,63,0.1);
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
}

.rtp-val {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
}
.rtp-top {
    color: var(--green) !important;
}

.vol-badge {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}
.vol-high {
    background: rgba(248,113,113,0.12);
    color: var(--red);
}
.vol-low {
    background: rgba(52,211,153,0.12);
    color: var(--green);
}

.yes-badge {
    color: var(--green);
    font-weight: 600;
}
.no-badge {
    color: var(--text-dim);
}

/* ============================================
   REVIEWS
   ============================================ */
.section-reviews {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 28px;
    transition: border-color var(--transition);
}
.review-card:hover {
    border-color: var(--border-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.review-rank {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(226,255,63,0.2);
    line-height: 1;
    flex-shrink: 0;
}
.review-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.review-provider {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}
.review-rtp-badge {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(226,255,63,0.08);
    color: var(--gold);
    border: 1px solid rgba(226,255,63,0.15);
    white-space: nowrap;
}
.rtp-highlight {
    background: rgba(52,211,153,0.1) !important;
    color: var(--green) !important;
    border-color: rgba(52,211,153,0.2) !important;
}

.review-card > p {
    color: var(--text-body);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 680px;
}

.review-media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 48px 20px;
    margin-bottom: 28px;
    color: var(--text-dim);
}
.review-media-placeholder svg { opacity: 0.3; }
.review-media-placeholder span {
    font-size: 0.82rem;
    font-style: italic;
    opacity: 0.6;
}

/* Spec Grid (Nutrition Label replacement) */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 28px;
}
.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: var(--bg-card);
}
.spec-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}
.spec-value {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.pros, .cons {
    padding: 20px;
    border-radius: var(--radius-sm);
}
.pros { background: rgba(52,211,153,0.04); border: 1px solid rgba(52,211,153,0.08); }
.cons { background: rgba(248,113,113,0.04); border: 1px solid rgba(248,113,113,0.08); }

.pros h4, .cons h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }

.pros ul, .cons ul { list-style: none; }
.pros li, .cons li {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 3px 0 3px 18px;
    position: relative;
}
.pros li::before {
    content: "+"; color: var(--green);
    position: absolute; left: 0;
    font-weight: 700;
}
.cons li::before {
    content: "\2212"; color: var(--red);
    position: absolute; left: 0;
    font-weight: 700;
}

/* Callout Box (Who Should Play) */
.callout-box {
    background: rgba(226,255,63,0.04);
    border-left: 3px solid var(--gold);
    padding: 18px 22px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 28px;
}
.callout-box h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}
.callout-box p {
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.6;
}

.review-cta {
    text-align: center;
    padding-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item[open] { border-color: rgba(226,255,63,0.15); }

.faq-item summary {
    padding: 22px 52px 22px 24px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 24px 24px;
}
.faq-answer p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.faq-answer ul {
    list-style: none;
    padding: 0;
}
.faq-answer li {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 5px 0 5px 18px;
    position: relative;
}
.faq-answer li::before {
    content: '\2022';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* ============================================
   GUIDE
   ============================================ */
.section-guide {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.guide-block {
    margin-bottom: 48px;
}
.guide-block h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}
.guide-block > p {
    color: var(--text-body);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 680px;
}
.guide-block ul, .guide-block ol { margin-bottom: 16px; }
.guide-block ul { list-style: none; padding: 0; }
.guide-block ul li {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.65;
    padding: 4px 0 4px 18px;
    position: relative;
}
.guide-block ul li::before {
    content: '\2022';
    color: var(--gold);
    position: absolute;
    left: 0;
}
.guide-block ol {
    list-style: decimal;
    padding-left: 24px;
}
.guide-block ol li {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 6px;
}
.guide-block ol li::marker {
    color: var(--gold);
    font-weight: 700;
}

/* Volatility Comparison */
.vol-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}
.vol-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.vol-card--low { border-top: 2px solid var(--green); }
.vol-card--high { border-top: 2px solid var(--red); }

.vol-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}
.vol-card ul { list-style: none; padding: 0; }
.vol-card li {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 3px 0 3px 18px;
    position: relative;
}
.vol-card li::before {
    content: '\2022';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}
.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: border-color var(--transition);
}
.payment-card:hover { border-color: var(--border-hover); }
.payment-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.payment-card p {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* ============================================
   MEDIA PLACEHOLDERS
   ============================================ */
.section-media {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 60px 20px;
    min-height: 200px;
    color: var(--text-dim);
}
.media-placeholder svg { opacity: 0.25; }
.media-placeholder span {
    font-size: 0.82rem;
    font-style: italic;
    opacity: 0.5;
    text-align: center;
}

/* ============================================
   AUTHOR
   ============================================ */
.section-author {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.author-card {
    display: flex;
    gap: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 780px;
    margin: 0 auto;
}
.author-avatar {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: #000;
    flex-shrink: 0;
}
.author-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.author-role {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    font-weight: 500;
    margin-bottom: 12px !important;
}
.author-body > p {
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.author-body ul { list-style: none; padding: 0; }
.author-body li {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.55;
    padding: 3px 0 3px 18px;
    position: relative;
}
.author-body li::before {
    content: '\2022';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.section-newsletter {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.newsletter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 52px 40px;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.newsletter-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.newsletter-card > p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto 12px;
}
.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
    white-space: nowrap;
    padding: 14px 24px;
    font-size: 0.8rem;
}
.newsletter-fine {
    color: rgba(255,255,255,0.25) !important;
    font-size: 0.75rem !important;
    margin-top: 4px !important;
}

/* ============================================
   INTERNAL LINKS
   ============================================ */
.section-links {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,0.01);
}
.section-links h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 16px;
}
.links-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.links-row a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border: 1px solid rgba(226,255,63,0.12);
    border-radius: 50px;
    transition: all var(--transition);
}
.links-row a:hover {
    background: rgba(226,255,63,0.06);
    border-color: rgba(226,255,63,0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo { height: 28px; width: auto; opacity: 0.6; }
.footer-brand span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}
.footer-platforms {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-platforms a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
}
.footer-platforms a:hover { color: var(--gold); }
.footer-copy {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.anim-reveal {
    opacity: 0;
    transform: translateY(24px);
}
.anim-reveal.visible {
    animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.anim-delay-1.visible { animation-delay: 0.1s; }
.anim-delay-2.visible { animation-delay: 0.2s; }
.anim-delay-3.visible { animation-delay: 0.35s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(6,6,11,0.97);
        backdrop-filter: blur(16px);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 110px 0 48px; }
    .hero-title { font-size: 1.6rem; }
    .hero-sub { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; align-items: center; }

    .trust-strip { gap: 8px; }
    .trust-chip { font-size: 0.7rem; padding: 5px 10px; }

    .platform-showcase-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .platform-showcase-card {
        flex-direction: column; align-items: flex-start;
        padding: 16px 14px; gap: 10px;
    }
    .psc-logo-wrap { width: 36px; height: 36px; border-radius: 8px; }
    .psc-logo { max-width: 26px; max-height: 26px; }
    .psc-logo-fallback { font-size: 0.55rem; }
    .psc-body h3 { font-size: 0.82rem; }
    .psc-years { font-size: 0.52rem; padding: 2px 6px; }
    .psc-body p { font-size: 0.68rem; line-height: 1.4; }
    .psc-arrow { display: none; }

    .section-comparison,
    .section-reviews,
    .section-faq,
    .section-guide,
    .section-media,
    .section-author,
    .section-newsletter {
        padding: 52px 0;
    }

    /* Table mobile cards */
    .slots-table { min-width: unset; }
    .slots-table thead { display: none; }
    .slots-table tbody tr {
        display: block;
        margin-bottom: 14px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        padding: 18px;
    }
    .slots-table td {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        border-top: none;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 0.84rem;
    }
    .slots-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-dim);
        font-size: 0.78rem;
    }
    .slots-table td:last-child { border-bottom: none; }

    .review-card { padding: 24px 20px; }
    .review-header { gap: 10px; }
    .review-rtp-badge { margin-left: 0; }
    .spec-grid { grid-template-columns: 1fr 1fr; }
    .pros-cons { grid-template-columns: 1fr; gap: 12px; }

    .vol-comparison { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: 1fr; }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }
    .author-body li { text-align: left; }

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

    .newsletter-card { padding: 36px 20px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { width: 100%; }

    .links-row { flex-direction: column; align-items: center; }
    .links-row a { width: 100%; max-width: 260px; text-align: center; }
}