/* ═══════════════════════════════════════════════════════════════
   Fortune Coins US — Design System
   Brand: Purple (#8B37CF) · Hot Pink (#E01FA0) · Gold (#FFB800)
   Background: Deep purple-black #0A0015
   Fonts: Raleway (display) · Nunito (body)
   Architecture: Mobile-first, unique layout vs competitors
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --purple: #8B37CF;
    --purple-deep: #5A1F9E;
    --purple-light: #A855F7;
    --pink: #E01FA0;
    --pink-light: #F472B6;
    --pink-glow: #FF47B3;
    --gold: #FFB800;
    --gold-light: #FFD54F;
    --gold-dark: #E69500;
    --white: #FFFFFF;
    --dark: #0A0015;
    --dark-2: #100020;
    --dark-3: #180030;
    --dark-4: #240048;
    --dark-5: #320060;
    --text: #E8D5F5;
    --text-muted: #9B7BB8;
    --border: rgba(139, 55, 207, 0.25);
    --border-glow: rgba(224, 31, 160, 0.45);
    --gradient-brand: linear-gradient(135deg, var(--purple), var(--pink));
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    --gradient-bg: linear-gradient(135deg, #0A0015, #1A002E);
    --font-display: 'Raleway', 'Outfit', sans-serif;
    --font-body: 'Nunito', 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-card: 0 4px 28px rgba(139, 55, 207, 0.3);
    --shadow-pink: 0 4px 20px rgba(224, 31, 160, 0.4);
    --shadow-gold: 0 4px 16px rgba(255, 184, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(224, 31, 160, 0.3);
    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* ── 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(--dark);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
}

h1 {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.4rem, 3.5vw, 2.3rem);
}

h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
}

p {
    color: var(--text-muted);
}

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    z-index: 9999;
    background: var(--purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 8px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══ HEADER ════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 0, 21, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo img {
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.main-nav a {
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(139, 55, 207, 0.2);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--dark-4);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    gap: 6px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--dark-4);
    color: var(--white);
}

.mobile-nav .btn {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
}

/* ═══ RG BAR ══════════════════════════════════════════════════ */
.rg-bar {
    background: rgba(139, 55, 207, 0.1);
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 6px 0;
    text-align: center;
}

.rg-bar a {
    color: var(--pink-light);
    text-decoration: underline;
}

/* ═══ BUTTONS ══════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 10px 20px;
    line-height: 1;
}

.btn-brand {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-brand:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(224, 31, 160, 0.55);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
    font-weight: 800;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.55);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-glow);
    color: var(--pink-light);
}

.btn-outline:hover {
    background: rgba(224, 31, 160, 0.12);
    border-color: var(--pink);
    color: var(--white);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
}

/* ═══ HERO (Split layout — unique from H5/CC) ═════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: stretch;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 0, 21, 0.96) 40%, rgba(10, 0, 21, 0.5) 80%, rgba(10, 0, 21, 0.2) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 56px 0;
}

.hero-copy {
    max-width: 580px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.4);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hero tags */
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tag-gc {
    background: rgba(139, 55, 207, 0.25);
    border: 1px solid rgba(139, 55, 207, 0.5);
    color: var(--purple-light);
}

.hero-tag-fc {
    background: rgba(224, 31, 160, 0.2);
    border: 1px solid rgba(224, 31, 160, 0.5);
    color: var(--pink-light);
}

.hero-tag-free {
    background: rgba(255, 184, 0, 0.15);
    border: 1px solid rgba(255, 184, 0, 0.4);
    color: var(--gold-light);
}

.hero h1 {
    margin-bottom: 18px;
}

.hero h1 .grad {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-desc {
    color: var(--text);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Fortune meter row */
.fc-meter {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.fc-stat {
    display: flex;
    flex-direction: column;
}

.fc-stat-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1;
}

.fc-stat-val.gold {
    color: var(--gold);
}

.fc-stat-val.pink {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ═══ SECTIONS ══════════════════════════════════════════════════ */
section {
    padding: 76px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.73rem;
    color: var(--pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.section-title {
    color: var(--white);
    margin-bottom: 14px;
}

.section-title .grad {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .gold {
    color: var(--gold);
}

.section-desc {
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 44px;
}

.section-hf {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ═══ CARDS ══════════════════════════════════════════════════════ */
.card {
    background: rgba(24, 0, 48, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

/* ═══ CURRENCY DISPLAY (unique 2-col GC/FC split) ══════════════ */
.currency-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.currency-half {
    padding: 32px 28px;
}

.currency-half.gc {
    background: linear-gradient(135deg, rgba(90, 31, 158, 0.3), rgba(24, 0, 48, 0.8));
    border-right: 1px solid var(--border);
}

.currency-half.fc {
    background: linear-gradient(135deg, rgba(224, 31, 160, 0.2), rgba(24, 0, 48, 0.8));
}

.currency-emoji {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.currency-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 6px;
}

.currency-amount.gc-val {
    color: var(--purple-light);
}

.currency-amount.fc-val {
    color: var(--pink-light);
}

.currency-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.currency-note {
    font-size: 0.875rem;
    color: var(--text);
}

/* ═══ GAME CARDS ═══════════════════════════════════════════════ */
.game-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.game-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.game-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.game-chip {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.game-chip-hot {
    background: var(--pink);
    color: var(--white);
}

.game-chip-new {
    background: var(--gold);
    color: var(--dark);
}

.game-chip-top {
    background: var(--purple);
    color: var(--white);
}

.game-inner {
    padding: 14px 16px;
}

.game-title {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-provider {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.game-rtp {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
}

/* ═══ TABLES ════════════════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
}

caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 10px 16px;
    text-align: left;
    font-style: italic;
}

th {
    background: rgba(139, 55, 207, 0.2);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 16px;
    text-align: left;
    white-space: nowrap;
}

th[scope="col"]:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

td {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
}

tr:hover td {
    background: rgba(139, 55, 207, 0.06);
}

.td-highlight {
    color: var(--pink-light);
    font-weight: 700;
}

.td-gold {
    color: var(--gold);
    font-weight: 700;
}

.td-check {
    color: #4ADE80;
    font-weight: 700;
}

.td-cross {
    color: #F87171;
}

/* ═══ PROGRESS BARS ════════════════════════════════════════════ */
.rating-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.rating-lbl {
    width: 130px;
    font-size: 0.85rem;
    color: var(--text);
    flex-shrink: 0;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--dark-4);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--gradient-brand);
    transition: width 1s cubic-bezier(.4, 0, .2, 1);
}

.rating-val {
    width: 32px;
    text-align: right;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--white);
    flex-shrink: 0;
}

/* ═══ CHARTS ════════════════════════════════════════════════════ */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.chart-card {
    background: rgba(18, 0, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.chart-card h3 {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 16px;
}

/* ═══ STEPS (Timeline — unique) ════════════════════════════════ */
.steps-timeline {
    position: relative;
    padding-left: 48px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--purple), var(--pink), transparent);
}

.step-item {
    position: relative;
    margin-bottom: 36px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -48px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.step-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══ SCORE RING (circular) ═════════════════════════════════════ */
.score-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--pink) 91%, var(--dark-4) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-pink);
}

.score-circle-inner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.score-denom {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ═══ STAR RATING ════════════════════════════════════════════════ */
.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 1.1rem;
    color: var(--gold);
}

.star-e {
    color: var(--dark-5);
}

/* ═══ PROS/CONS (unique two-column pills) ══════════════════════ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-side,
.cons-side {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.pros-side {
    border-top: 3px solid #4ADE80;
}

.cons-side {
    border-top: 3px solid #F87171;
}

.pros-cons-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-item,
.con-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--text);
}

.pro-item::before {
    content: '✓';
    color: #4ADE80;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.con-item::before {
    content: '✗';
    color: #F87171;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ═══ TAGS / CHIPS ══════════════════════════════════════════════ */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.chip-purple {
    background: rgba(139, 55, 207, 0.25);
    color: var(--purple-light);
    border: 1px solid rgba(139, 55, 207, 0.4);
}

.chip-pink {
    background: rgba(224, 31, 160, 0.2);
    color: var(--pink-light);
    border: 1px solid rgba(224, 31, 160, 0.4);
}

.chip-gold {
    background: rgba(255, 184, 0, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(255, 184, 0, 0.35);
}

.chip-green {
    background: rgba(74, 222, 128, 0.12);
    color: #86EFAC;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

/* ═══ CTA BAND ══════════════════════════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--purple-deep), var(--dark-3));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 31, 160, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band p {
    color: var(--text);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ═══ SEO CONTENT ════════════════════════════════════════════════ */
.seo-content {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
}

.seo-article {
    padding: 64px 0;
}

.seo-article h2 {
    margin-bottom: 20px;
}

.seo-article h3 {
    font-size: 1.15rem;
    margin: 28px 0 12px;
}

.seo-article p {
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 0.95rem;
}

.seo-article strong {
    color: var(--text);
}

.text-link {
    color: var(--pink-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-style: dashed;
}

.text-link:hover {
    color: var(--white);
}

/* ═══ FORTUNE TICKER (unique horizontal scroll) ═════════════════ */
.fortune-ticker {
    background: var(--gradient-brand);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: tickerMove 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.ticker-item::after {
    content: '✦';
    color: rgba(255, 255, 255, 0.5);
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ═══ FOOTER ════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--pink-light);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ═══ GRIDS ═════════════════════════════════════════════════════ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ═══ AUTHOR CARD ════════════════════════════════════════════════ */
.author-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.author-img-wrap {
    flex-shrink: 0;
}

.author-img-wrap img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    border: 2px solid var(--border-glow);
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--pink-light);
    font-weight: 600;
    margin-bottom: 14px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ═══ PAGE BREADCRUMB ════════════════════════════════════════════ */
.breadcrumb {
    padding: 12px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    color: var(--pink-light);
}

.breadcrumb span {
    color: var(--dark-5);
}

/* ═══ MOBILE APP CARDS ══════════════════════════════════════════ */
.app-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all var(--transition);
}

.app-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.app-icon {
    font-size: 3rem;
}

.app-store-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.app-rating-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.app-rating-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ═══ FORM ELEMENTS ══════════════════════════════════════════════ */
.form-card {
    background: rgba(18, 0, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 460px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--pink);
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: var(--radius);
    margin-top: 8px;
}

.form-foot {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.form-foot a {
    color: var(--pink-light);
    text-decoration: underline;
}

/* ═══ ACCESSIBILITY ══════════════════════════════════════════════ */
*:focus-visible {
    outline: 3px solid var(--pink);
    outline-offset: 3px;
    border-radius: 4px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (forced-colors: active) {

    .btn-brand,
    .btn-gold {
        border: 2px solid ButtonText;
    }
}

/* ═══ SECTION ALT BG ════════════════════════════════════════════ */
.bg-alt {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bg-deep {
    background: var(--dark);
}

/* ═══ RESPONSIVE ════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .currency-split {
        grid-template-columns: 1fr;
    }

    .currency-half.gc {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-cta .btn-outline {
        display: none;
    }

    /* Mobile: keep Play Free button */
    .header-cta {
        display: flex !important;
        gap: 4px;
    }

    .header-cta .btn-brand,
    .header-cta .btn-gold {
        display: inline-flex !important;
        padding: 8px 14px !important;
        font-size: 0.78rem !important;
    }

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    section {
        padding: 48px 0;
    }

    .hero {
        min-height: 420px;
    }

    .hero-inner {
        padding: 36px 0;
    }

    .hero-veil {
        background: linear-gradient(180deg, rgba(10, 0, 21, 0.97) 60%, rgba(10, 0, 21, 0.7));
    }

    .fc-meter {
        gap: 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-img-wrap img {
        width: 100px;
        height: 125px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .rating-lbl {
        width: 100px;
        font-size: 0.78rem;
    }

    .form-card {
        padding: 28px 20px;
    }

    .steps-timeline {
        padding-left: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }
}