/* ============================================================
   FOOTBALL SCOOPZ PREMIUM — MAIN STYLESHEET v2.0
   Dark Luxury Sports Magazine Design
   ============================================================ */

:root {
    --green: #4ade80;
    --green-dark: #16a34a;
    --gold: #f59e0b;
    --bg: #0a0a0f;
    --bg2: #0f0f1a;
    --bg3: #141420;
    --bg4: #1a1a2e;
    --card: #12121e;
    --border: rgba(255,255,255,0.08);
    --text: #f0f0f5;
    --muted: rgba(255,255,255,0.45);
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.fs-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.fs-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    border: 2px solid transparent;
}
.fs-btn:hover { transform: translateY(-1px); }
.fs-btn:active { transform: scale(0.97); }

.fs-btn-primary {
    background: var(--green);
    color: #000;
    border-color: var(--green);
}
.fs-btn-primary:hover { background: #22c55e; border-color: #22c55e; }

.fs-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.fs-btn-outline:hover { border-color: var(--green); color: var(--green); }

.fs-btn-gold {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.fs-btn-gold:hover { background: #d97706; }

.fs-btn-ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: var(--border);
}
.fs-btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ============================================================
   BADGES
   ============================================================ */
.fs-badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .6rem;
    border-radius: 4px;
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.fs-badge-green  { background: rgba(74,222,128,.15); color: var(--green); border: 1px solid rgba(74,222,128,.3); }
.fs-badge-gold   { background: rgba(245,158,11,.15); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }
.fs-badge-blue   { background: rgba(96,165,250,.15); color: #60a5fa; border: 1px solid rgba(96,165,250,.3); }
.fs-badge-red    { background: rgba(248,113,113,.15); color: #f87171; border: 1px solid rgba(248,113,113,.3); }
.fs-badge-purple { background: rgba(167,139,250,.15); color: #a78bfa; border: 1px solid rgba(167,139,250,.3); }

/* ============================================================
   HEADER
   ============================================================ */
#fs-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.fs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 64px;
}
.fs-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
/* ---- Logo sizing — nuclear override for WP custom logo ---- */
.fs-logo img,
.fs-logo .custom-logo,
.fs-logo .custom-logo-link img,
.custom-logo-link img,
.custom-logo {
    display: block !important;
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: 160px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: contain !important;
}
.custom-logo-link,
.fs-logo a {
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    line-height: 0 !important;
    max-height: 44px !important;
    overflow: hidden !important;
}
.fs-logo-text { display: none; }
@media (min-width: 480px) {
    .fs-logo-text { display: block; }
    .fs-logo-text .t1 { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: #fff; line-height: 1; letter-spacing: .06em; }
    .fs-logo-text .t2 { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; color: var(--green); line-height: 1; letter-spacing: .06em; }
}

.fs-nav { display: none; }
@media (min-width: 1024px) {
    .fs-nav { display: flex; align-items: center; gap: .25rem; }
    .fs-nav a {
        padding: .5rem .9rem;
        font-family: var(--font-head);
        font-weight: 700;
        font-size: .9rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
        border-radius: 6px;
        transition: all .15s;
    }
    .fs-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
    .fs-nav a.active { color: var(--green); }
}

.fs-header-actions { display: flex; align-items: center; gap: .6rem; }
.fs-search-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
    transition: all .15s;
}
.fs-search-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

.fs-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    padding: 0 9px;
}
@media (min-width: 1024px) { .fs-hamburger { display: none; } }
.fs-hamburger span {
    display: block;
    height: 2px;
    background: rgba(255,255,255,.8);
    border-radius: 2px;
    transition: all .2s;
}

/* Mobile menu */
#fs-mobile-menu {
    position: fixed;
    top: 64px; right: 0;
    width: 280px; height: calc(100vh - 64px);
    background: var(--bg2);
    border-left: 1px solid var(--border);
    z-index: 999;
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(0.23,1,0.32,1);
    overflow-y: auto;
    padding: 1.5rem;
}
#fs-mobile-menu.open { transform: translateX(0); }
#fs-mobile-menu a {
    display: block;
    padding: .85rem 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid var(--border);
    transition: color .15s;
}
#fs-mobile-menu a:hover { color: var(--green); }
#fs-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 998;
}
#fs-overlay.open { display: block; }

/* ============================================================
   SCORES TICKER
   ============================================================ */
#fs-ticker {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    margin-top: 64px;
}
.fs-ticker-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 0 1rem;
    background: var(--green);
    color: #000;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: .75rem;
    letter-spacing: .12em;
    height: 100%;
    flex-shrink: 0;
    white-space: nowrap;
}
.fs-ticker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #000;
    animation: pulse 1.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.fs-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.fs-ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker 40s linear infinite;
    width: max-content;
}
.fs-ticker-track:hover .fs-ticker-inner { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.fs-ticker-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    font-size: .78rem;
}
.fs-ticker-comp {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .65rem;
    color: var(--green);
    letter-spacing: .1em;
    background: rgba(74,222,128,.1);
    padding: .1rem .4rem;
    border-radius: 3px;
}
.fs-ticker-team { color: rgba(255,255,255,.8); font-weight: 600; }
.fs-ticker-score {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    padding: .1rem .5rem;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.fs-ticker-score.live { color: var(--green); }
.fs-live-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1s infinite;
}
.fs-ticker-time { font-size: .7rem; color: var(--muted); }

/* ============================================================
   GROUP SELECTOR
   ============================================================ */
#fs-groups {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
#fs-groups::-webkit-scrollbar { display: none; }
.fs-groups-inner {
    display: flex;
    gap: .4rem;
    padding: .6rem 0;
    white-space: nowrap;
}
.fs-group-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .9rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 6px;
    color: rgba(255,255,255,.5);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.fs-group-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.fs-group-btn.active { background: var(--green); border-color: var(--green); color: #000; }

/* ============================================================
   HERO
   ============================================================ */
#fs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.fs-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.fs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.6) 50%,
        rgba(0,0,0,.4) 100%
    );
}
.fs-hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
}
.fs-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.fs-hero-eyebrow-line { width: 40px; height: 2px; background: var(--green); }
.fs-hero-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: .95;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.fs-hero-title .white { color: #fff; display: block; }
.fs-hero-title .green { color: var(--green); display: block; }
.fs-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.fs-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.fs-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}
.fs-hero-trust span::before { content: '● '; color: var(--green); }

/* Stats bar */
.fs-stats-bar {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.5rem 0;
}
.fs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
@media (max-width: 640px) { .fs-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.fs-stat-val {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--green);
    line-height: 1;
}
.fs-stat-lbl {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .3rem;
}

/* ============================================================
   FEATURED TIP BANNER
   ============================================================ */
#fs-featured-tip {
    background: linear-gradient(135deg, rgba(74,222,128,.1), rgba(74,222,128,.03));
    border-top: 1px solid rgba(74,222,128,.2);
    border-bottom: 1px solid rgba(74,222,128,.2);
    padding: 1.1rem 0;
}
.fs-ft-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.fs-ft-icon {
    width: 44px; height: 44px;
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.fs-ft-label {
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .2rem;
}
.fs-ft-match {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}
.fs-ft-stats { display: flex; gap: 2rem; align-items: center; }
.fs-ft-stat { text-align: center; }
.fs-ft-stat-lbl { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.fs-ft-stat-val { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff; line-height: 1; }
.fs-ft-stat-val.green { color: var(--green); }
.fs-ft-left { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 200px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.fs-section { padding: 4rem 0; }
.fs-section-dark { background: var(--bg); }
.fs-section-darker { background: var(--bg2); }
.fs-section-mid { background: var(--bg3); }

.fs-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.fs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .5rem;
}
.fs-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--green); }
.fs-section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.fs-section-meta {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

/* ============================================================
   FILTER TABS
   ============================================================ */
.fs-filter-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.fs-filter-tab {
    padding: .45rem 1.1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .15s;
}
.fs-filter-tab:hover { background: rgba(255,255,255,.1); color: #fff; }
.fs-filter-tab.active { background: var(--green); border-color: var(--green); color: #000; }

/* ============================================================
   TIPS GRID
   ============================================================ */
.fs-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.fs-tip-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}
.fs-tip-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.fs-tip-card-body { padding: 1.25rem; }
.fs-tip-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}
.fs-tip-league { font-size: .72rem; color: var(--muted); margin-top: .3rem; }
.fs-tip-stars { color: var(--gold); font-size: .85rem; letter-spacing: .05em; }
.fs-tip-match {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: .4rem;
    line-height: 1.2;
}
.fs-tip-pick {
    font-size: .88rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1rem;
}
.fs-tip-odds-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: .75rem;
}
.fs-tip-odds-lbl { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.fs-tip-odds-val {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
}
.fs-tip-odds-val.green { color: var(--green); }
.fs-conf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .4rem;
    font-size: .72rem;
    color: var(--muted);
}
.fs-conf-pct { color: #fff; font-weight: 700; }
.fs-conf-bar {
    height: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    overflow: hidden;
}
.fs-conf-fill {
    height: 100%;
    background: linear-gradient(to right, var(--green-dark), var(--green));
    border-radius: 2px;
    transition: width .6s ease;
}

/* VIP lock overlay */
.fs-vip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,20,.85);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    z-index: 10;
    text-align: center;
    padding: 1.5rem;
}
.fs-vip-lock { color: var(--gold); margin-bottom: .25rem; }
.fs-vip-overlay strong { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: #fff; }
.fs-vip-overlay span { font-size: .8rem; color: var(--muted); }

/* ============================================================
   ACCUMULATORS
   ============================================================ */
.fs-accas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}
.fs-acca-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform .2s;
}
.fs-acca-card:hover { transform: translateY(-3px); }
.fs-acca-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 1.25rem .75rem;
    border-bottom: 1px solid var(--border);
}
.fs-acca-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-top: .4rem;
}
.fs-acca-odds-lbl { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; text-align: right; }
.fs-acca-odds-val { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--green); line-height: 1; }
.fs-acca-legs { padding: .75rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.fs-acca-leg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .6rem .75rem;
    background: rgba(255,255,255,.03);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.05);
}
.fs-acca-leg-left { display: flex; align-items: center; gap: .6rem; }
.fs-acca-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(74,222,128,.15);
    border: 1px solid rgba(74,222,128,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: .65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.fs-acca-match { font-size: .82rem; font-weight: 600; color: #fff; line-height: 1.2; }
.fs-acca-pick { font-size: .72rem; color: var(--muted); }
.fs-acca-leg-odds { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--green); flex-shrink: 0; }
.fs-acca-footer { padding: .75rem 1.25rem 1.25rem; }
.fs-copy-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: .6rem 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: rgba(255,255,255,.6);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .15s;
    margin-top: .75rem;
    justify-content: center;
}
.fs-copy-btn:hover { background: rgba(74,222,128,.1); border-color: rgba(74,222,128,.3); color: var(--green); }

/* ============================================================
   ANALYSIS BANNER
   ============================================================ */
#fs-analysis {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.fs-analysis-bg {
    position: absolute;
    inset: 0;
}
.fs-analysis-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.fs-analysis-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.95) 0%, rgba(0,0,0,.75) 60%, rgba(0,0,0,.5) 100%);
}
.fs-analysis-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) { .fs-analysis-inner { grid-template-columns: 1fr; } }
.fs-analysis-stats { display: flex; flex-direction: column; gap: 1rem; }
.fs-analysis-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
}
.fs-analysis-stat-icon {
    width: 44px; height: 44px;
    background: rgba(74,222,128,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.fs-analysis-stat-val { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: #fff; line-height: 1; }
.fs-analysis-stat-lbl { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }

/* ============================================================
   NEWS GRID
   ============================================================ */
.fs-news-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 900px) { .fs-news-layout { grid-template-columns: 1fr; } }

.fs-article-featured {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
}
.fs-article-featured img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.fs-article-featured:hover img { transform: scale(1.03); }
.fs-article-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.fs-article-featured-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
}
.fs-article-featured-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
    margin: .5rem 0;
}
.fs-article-featured-excerpt { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: .75rem; }
.fs-article-meta { font-size: .72rem; color: var(--muted); }

.fs-sidebar-articles { display: flex; flex-direction: column; gap: .75rem; }
.fs-sidebar-lbl { font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.fs-article-sidebar {
    display: flex;
    gap: .75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .15s;
}
.fs-article-sidebar:hover { transform: translateX(3px); }
.fs-article-sidebar-img { width: 90px; height: 70px; flex-shrink: 0; }
.fs-article-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.fs-article-sidebar-body { padding: .6rem .75rem .6rem 0; }
.fs-article-sidebar-title { font-size: .82rem; font-weight: 600; color: #fff; line-height: 1.3; margin-top: .3rem; }

.fs-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.fs-article-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s;
}
.fs-article-card:hover { transform: translateY(-3px); }
.fs-article-card-img { height: 180px; overflow: hidden; }
.fs-article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fs-article-card:hover .fs-article-card-img img { transform: scale(1.05); }
.fs-article-card-body { padding: 1rem; }
.fs-article-card-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff; line-height: 1.3; margin: .4rem 0 .5rem; }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
#fs-members {
    position: relative;
    overflow: hidden;
}
.fs-members-bg {
    position: absolute;
    inset: 0;
}
.fs-members-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.fs-members-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg2) 0%, rgba(10,10,20,.8) 50%, var(--bg2) 100%);
}
.fs-members-content { position: relative; z-index: 2; }
.fs-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) { .fs-members-grid { grid-template-columns: 1fr; } }

.fs-plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    transition: transform .2s;
}
.fs-plan-card:hover { transform: translateY(-4px); }
.fs-plan-card.popular {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), 0 0 40px rgba(74,222,128,.15);
}
.fs-plan-card.vip {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 0 40px rgba(245,158,11,.1);
}
.fs-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: .25rem .9rem;
    border-radius: 20px;
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.fs-plan-badge.green { background: var(--green); color: #000; }
.fs-plan-badge.gold { background: var(--gold); color: #000; }
.fs-plan-name { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.fs-plan-price { margin-bottom: 1.25rem; }
.fs-plan-amount { font-family: var(--font-head); font-weight: 900; font-size: 2.8rem; color: #fff; line-height: 1; }
.fs-plan-amount span { font-size: 1.4rem; vertical-align: top; margin-top: .4rem; display: inline-block; }
.fs-plan-period { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.fs-plan-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.fs-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
}
.fs-plan-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}
.fs-plan-features li.no::before { content: '✕'; color: rgba(255,255,255,.2); }
.fs-plan-features li.no { color: rgba(255,255,255,.3); }

.fs-trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.fs-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}
.fs-trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
#fs-newsletter {
    background: linear-gradient(135deg, rgba(74,222,128,.08), rgba(74,222,128,.02));
    border-top: 1px solid rgba(74,222,128,.15);
    border-bottom: 1px solid rgba(74,222,128,.15);
    padding: 3rem 0;
    text-align: center;
}
.fs-newsletter-title { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: #fff; text-transform: uppercase; margin-bottom: .5rem; }
.fs-newsletter-sub { color: var(--muted); margin-bottom: 1.5rem; }
.fs-newsletter-form { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.fs-newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: .9rem;
}
.fs-newsletter-form input::placeholder { color: var(--muted); }
.fs-newsletter-form input:focus { outline: none; border-color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
#fs-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}
.fs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .fs-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fs-footer-grid { grid-template-columns: 1fr; } }
.fs-footer-brand-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-top: .75rem; max-width: 280px; }
.fs-footer-col-title { font-family: var(--font-head); font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .75rem; }
.fs-footer-links { display: flex; flex-direction: column; gap: .4rem; }
.fs-footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .15s; }
.fs-footer-links a:hover { color: var(--green); }
.fs-footer-social { display: flex; gap: .6rem; margin-top: .75rem; }
.fs-social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .8rem;
    font-weight: 700;
    transition: all .15s;
}
.fs-social-btn:hover { background: var(--green); border-color: var(--green); color: #000; }
.fs-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.fs-footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.fs-footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.2); max-width: 600px; line-height: 1.5; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#fs-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    background: var(--green);
    color: #000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all .2s;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
}
#fs-scroll-top.visible { opacity: 1; transform: translateY(0); }
#fs-scroll-top:hover { background: #22c55e; transform: translateY(-2px); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
#fs-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
#fs-search-overlay.open { opacity: 1; pointer-events: all; }
.fs-search-box { width: 100%; max-width: 600px; padding: 0 1.5rem; }
.fs-search-input-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg3);
    border: 1px solid rgba(74,222,128,.3);
    border-radius: 12px;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
}
.fs-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-body);
}
.fs-search-input::placeholder { color: var(--muted); }
.fs-search-close {
    color: var(--muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: .2rem .4rem;
    border-radius: 4px;
    transition: color .15s;
}
.fs-search-close:hover { color: #fff; }
.fs-search-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.fs-search-tag {
    padding: .3rem .75rem;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    cursor: pointer;
    transition: all .15s;
}
.fs-search-tag:hover { background: rgba(74,222,128,.1); border-color: rgba(74,222,128,.3); color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .fs-hero-title { font-size: 3rem; }
    .fs-ft-stats { gap: 1rem; }
    .fs-ft-stat-val { font-size: 1.2rem; }
    .fs-section { padding: 2.5rem 0; }
    .fs-news-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   WORDPRESS BODY PADDING FIX (admin bar)
   ============================================================ */
.admin-bar #fs-header { top: 32px; }
.admin-bar #fs-ticker { margin-top: calc(64px + 32px); }
@media (max-width: 782px) {
    .admin-bar #fs-header { top: 46px; }
    .admin-bar #fs-ticker { margin-top: calc(64px + 46px); }
}
