@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

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

:root {
    --primary-color: #040712;
    --accent-color: #ffa500;
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    background-color: var(--primary-color);
}

html {
    background-color: #040712;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: #040712;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Nav club selector - hidden on desktop, shown on mobile */
.nav-club-selector {
    display: none;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/scarf_hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10rem 0 0;
    overflow-x: hidden; 
    min-width: 900px; 
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    min-width: 900px;     /* don't let it squish below this */
    padding: 0 2rem 0 5%;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 520px;
    flex-shrink: 0;
    animation: heroFadeIn 0.8s ease-out both;  /* moved here */
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hero-headline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.0;
    color: #fff;
    margin: 0;
    text-transform: none;
}

.hero-support {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: normal;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.hero-accent {
    color: var(--accent-color);
    letter-spacing: -0.02em;
}

/* HERO LED STAGE COLOURS */
.hero--whisper   { --stage-glow: #9b5cff; }
.hero--wheeling  { --stage-glow: #ff8a1f; }
.hero--jetting   { --stage-glow: #29b6ff; } /* 86f5ff */ 
.hero--done      { --stage-glow: #41e07a; }
.hero--dealoff   { --stage-glow: #ff3b4f; }

.hero-led {
    position: relative;
}

/* GLOW DISABLED FOR NOW
.hero-led::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    clip-path: polygon(
        evenodd,
        0.5% 29%, 89.8% 10.3%, 89.5% 86%, 2% 93%,
        2.5% 31%, 2.5% 92%, 88.8% 85%, 89% 12%
    );
    background: color-mix(in srgb, var(--stage-glow) 15%, transparent);
    filter:
        drop-shadow(0 0 4px var(--stage-glow))
        drop-shadow(0 0 12px var(--stage-glow))
        drop-shadow(0 0 25px color-mix(in srgb, var(--stage-glow) 70%, transparent))
        drop-shadow(0 0 50px color-mix(in srgb, var(--stage-glow) 30%, transparent));
    animation: ledPulse 2.8s ease-in-out infinite;
}
*/

@keyframes ledPulse {
    0%, 100% { opacity: 0; }
    50%      { opacity: 0.7; }
}

.hero-scoreboard {
    position: relative;
    width: 100%;          /* fills the <a> wrapper */
    flex-shrink: 0;
}

.scoreboard-link {
    width: 650px;
    max-width: 650px;
    margin-left: 10rem;
    margin-right: auto;
    align-self: flex-start;
    margin-top: -3.5rem;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transform: rotateZ(-2.5deg);
    filter: brightness(0.85) saturate(0.90);
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

.scoreboard-link.loaded {
    opacity: 1;
}

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

.scoreboard-text {
    position: absolute;
    top: 20%;
    right: 16%;
    width: 48%;
    z-index: 1;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4em;
    transform: perspective(800px) rotateY(-8deg) skewY(-5deg) rotateZ(-0.5deg);
    transform-origin: right center;
    transform-style: preserve-3d;
}

.sb-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.55rem, 1.2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ff0040;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.6), 0 0 16px rgba(255,255,255,0.3);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.sb-tag .live-dot {
    background: #ff0040;
    box-shadow: 0 0 8px #ff0040, 0 0 16px #ff0040;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.sb-player {
    font-size: clamp(1rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.sb-clubs {
    font-size: clamp(0.7rem, 2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
}

.sb-clubs span {
    color: #fff;
}

.sb-badge {
    display: inline-block;
    width: fit-content;
    font-size: clamp(0.55rem, 1.2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stage-glow, #4da6ff);
    border: 1px solid var(--stage-glow, #4da6ff);
    background: rgba(0, 20, 60, 0.8);
    padding: 3px 10px;
    border-radius: 3px;
}

.sb-meta {
    display: flex;
    gap: 1em;
    font-size: clamp(0.5rem, 1vw, 0.9rem);
    color: #888;
    letter-spacing: 0.05em;
}

.sb-meta strong {
    color: var(--accent-color);
}

/* Club Selector */
.club-selector {
    position: relative;
    margin-top: 0.5rem;
    margin-left: 0;
    width: fit-content;
}

.select-club-btn {
    background: var(--accent-color);
    border: none;
    color: black;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.select-club-btn:hover {
    transform: scale(1.05);
}

.club-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    margin-top: 0;
    min-width: 200px;
    z-index: 100;
}

.club-option {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
}

.club-option:hover {
    background: var(--accent-color);
    color: black;
}

.club-option:first-child {
    border-radius: 6px 6px 0 0;
}

.club-option:last-child {
    border-radius: 0 0 6px 6px;
}

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

/* Advertising Board & Ticker */
.ad-board {
    display: none; /* temporarily hidden */
    position: absolute;
    bottom: 3vh;
    left: 0;
    right: 0;
    height: 8vh;
    min-height: 60px;
    max-height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 165, 0, 0.3);
    border-bottom: 1px solid rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 12px rgba(255, 165, 0, 0.15);
    overflow: hidden;
    z-index: 10;
}

.ticker-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite reverse;
}

.ticker-item {
    display: inline-block;
    padding: 0 4rem;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--text-light);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Stats Bar */
.stats-bar {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

.stats-bar.loaded {
    opacity: 1;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--accent-color);
}

.stat-number--name {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 1px;
}

.stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    letter-spacing: 1px;
    opacity: 0.8;
}


/* Hide ticker */
.ad-board { display: none; }

/* ─── SHARED SECTION STYLES ─── */
.section-label {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-join .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 900px) {
    .section-join .section-desc {
        margin-left: 0;
        text-align: left;
    }
    .section-footer-cta .section-desc {
        margin-left: 0;
        text-align: left;
    }
}

.section-bullets {
    list-style: none;
    padding: 0;
}

.section-bullets li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.bullet-icon { font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════════════
   SECTION 2: WHAT WE DO
   ═══════════════════════════════════════════════════════════════ */
.section-what-we-do {
    padding: var(--section-spacing) 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.section-inner { max-width: 480px; }

/* Showcase: card + arrow + timeline (from v1) */
.htm-showcase {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.htm-card.rumor-card {
    width: 280px;
    flex-shrink: 0;
    background-color: #000;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    cursor: default;
}

.htm-card.rumor-card.jetting-in {
    background-image: url('https://rfc.scarfabovethehead.com/assets/jetting-in.png');
}

.htm-card.rumor-card.done-deal {
    background-image: url('https://rfc.scarfabovethehead.com/assets/done-deal.png');
}

.htm-card .live-header {
    height: 40px;
    background: transparent;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0 1rem;
}

.htm-card .live-indicator-small {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}

.htm-card .live-text-small {
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.htm-card .timestamp-small {
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    font-weight: 500;
}

.htm-card .player-section {
    position: relative;
    height: 120px;
    background: transparent;
    flex-shrink: 0;
}

.htm-card .side-ratings-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
    object-fit: fill;
    object-position: right;
    z-index: 20;
    pointer-events: none;
    opacity: 0.8;
    border-radius: 0 20px 20px 0;
}

.htm-card .card-info {
    position: relative;
    background: transparent;
    padding: 1.5rem;
    padding-bottom: 1rem;
    padding-right: calc(56px + 12px);
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    gap: 0.5rem;
    align-items: flex-start;
    text-align: left;
}

.htm-card .player-name-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.htm-card .player-name-large {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    font-size: clamp(1.4rem, 5vw, 2rem);
    line-height: 1.05;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.htm-card .direction-badge {
    display: inline-flex;
    padding: 0.25rem 0.8rem;
    background: #00ff88;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    height: 28px;
    align-items: center;
    align-self: flex-start;
}

.htm-card .transfer-details-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.3rem;
}

.htm-card .transfer-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.htm-card .clubs-row--text {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.htm-card .club-text {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.htm-card .club-text--to { color: rgba(255,255,255,0.9); }

.htm-card .transfer-info {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.82;
}

.htm-card .vote-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.htm-card .vote-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.htm-card .vote-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.htm-card .vote-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.htm-arrow {
    font-size: 2rem;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.htm-timeline {
    width: 320px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    text-align: left;
}

.htm-timeline-header {
    padding: 1rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.htm-timeline-entries { padding: 1rem 1.4rem; }

.htm-timeline .timeline-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.htm-timeline .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 2rem;
    bottom: -1.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 165, 0, 0.4), rgba(255, 255, 255, 0.1));
    opacity: 0.3;
}

.htm-timeline .timeline-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: 0 0 12px rgba(255, 165, 0, 0.4);
    position: relative;
}

.htm-timeline .timeline-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.3), transparent);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.htm-timeline .timeline-content-item { flex: 1; }

.htm-timeline .timeline-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.htm-timeline .timeline-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.htm-timeline .timeline-source {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3: HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.section-how-it-works {
    padding: var(--section-spacing) 2rem;
    padding-top: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1500px;
    margin-left: -200px;
    margin-right: -200px;
}

.hiw-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
    transition: border-color 0.3s;
}

.hiw-card:hover { border-color: rgba(255, 165, 0, 0.3); }

.hiw-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hiw-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hiw-card h3 span { color: var(--accent-color); }

.hiw-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4: WHY FANS USE SCARF
   ═══════════════════════════════════════════════════════════════ */
.section-why-fans {
    padding: var(--section-spacing) 2rem;
    padding-top: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.why-fans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-fans-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: left;
    transition: border-color 0.3s;
}

.why-fans-card:hover { border-color: rgba(255, 165, 0, 0.3); }

.why-fans-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.why-fans-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.why-fans-card h3 span { color: var(--accent-color); }

.why-fans-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5: JOIN THE CONVERSATION (FAN SECTION)
   ═══════════════════════════════════════════════════════════════ */
.section-join {
    padding: var(--section-spacing) 2rem;
    padding-top: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.fan-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.fan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
}

.fan-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.fan-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

/* Verdict */
.verdict-block { margin-bottom: 1rem; }
.verdict-label { font-size: 0.7rem; color: var(--text-dim); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.verdict-move { display: flex; justify-content: space-between; margin-bottom: 0.4rem; }
.verdict-player { font-size: 0.85rem; font-weight: 700; }
.verdict-pct { font-size: 0.85rem; font-weight: 700; color: var(--accent-color); }
.verdict-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.verdict-fill { height: 100%; border-radius: 3px; transition: width 0.5s; }
.verdict-fill--green { background: linear-gradient(90deg, #16a34a, #4ade80); }
.verdict-fill--red { background: linear-gradient(90deg, #dc2626, #f87171); }

/* Polls */
.poll-block { margin-bottom: 1.2rem; }
.poll-question { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; }
.poll-options { display: flex; gap: 0.5rem; }
.poll-vote-btn {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.poll-vote-btn:hover { background: rgba(255,165,0,0.15); border-color: var(--accent-color); }

.poll-results { margin-top: 0.5rem; }
.poll-result-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.poll-answer-label { font-size: 0.75rem; min-width: 50px; color: var(--text-muted); }
.poll-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.poll-fill { height: 100%; border-radius: 4px; transition: width 0.5s; }
.poll-fill--blue { background: linear-gradient(90deg, #1d4ed8, #3b82f6); }
.poll-fill--green { background: linear-gradient(90deg, #16a34a, #00ff6a); }
.poll-fill--orange { background: linear-gradient(90deg, #d97706, #ffa500); }
.poll-pct { font-size: 0.75rem; font-weight: 700; color: var(--accent-color); min-width: 36px; text-align: right; }

/* Punt */
.punt-cta-btn {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6: FOOTER CTA
   ═══════════════════════════════════════════════════════════════ */
.section-footer-cta {
    padding: var(--section-spacing) 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-actions {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-cta-or {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.footer-cta-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

.footer-cta-tagline .accent { color: var(--accent-color); }

/* Site Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-logo { height: 36px; margin-bottom: 1.5rem; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--text-light); }

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a { text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }
.footer-social-icon { height: 28px; width: auto; display: block; }

@media (min-width: 768px) {
  .footer-social-icon { height: 40px; }
}

.footer-copy { color: var(--text-dim); font-size: 0.7rem; margin-bottom: 0.5rem; }
.footer-legal { font-size: 0.7rem; }
.footer-legal a { color: var(--text-dim); text-decoration: none; }
.footer-legal a:hover { color: var(--text-muted); }

/* Punt Modal */
.punt-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
.punt-modal-overlay.open { display: flex; }

.punt-modal {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    position: relative;
}

.punt-modal h2 { margin-bottom: 0.5rem; }
.punt-modal p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.punt-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

#punt-form input,
#punt-form textarea,
#feedback-form input,
#feedback-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.9rem;
}

#punt-form input:focus,
#punt-form textarea:focus,
#feedback-form input:focus,
#feedback-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.punt-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
}

.punt-message { margin-top: 1rem; text-align: center; font-size: 0.9rem; }
.punt-message.success { color: #4ade80; }
.punt-message.error { color: #f87171; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE (max-width: 900px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; }

    .hero {
        min-height: auto;
        padding-top: 5rem;
        background-image: url('assets/stadium_background_mobile.png');
        background-position: center top;
        background-size: cover;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-scoreboard { width: 260px; margin: 0 auto; }

    .stats-bar { gap: 1.5rem; flex-wrap: wrap; }
    .stat-number { font-size: 1.5rem; }

    /* Section 2 */
    .section-what-we-do {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 1.5rem;
        text-align: left;
    }

    .section-inner { padding-right: 0; text-align: left; }
    .section-what-we-do .section-desc { margin: 0 0 1.5rem; text-align: left; }
    .section-what-we-do .section-bullets { display: inline-block; text-align: left; }

    .htm-showcase {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        justify-content: flex-start;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }
    .htm-showcase::-webkit-scrollbar { display: none; }

    .htm-showcase .htm-arrow {
        display: flex;
        flex-shrink: 0;
        font-size: 1.5rem;
        color: rgba(255,255,255,0.3);
        align-items: center;
        scroll-snap-align: none;
    }

    .htm-card.rumor-card {
        flex: 0 0 320px;
        min-height: 480px;
        scroll-snap-align: center;
    }

    .htm-timeline {
        flex: 0 0 320px;
        width: 320px;
        min-height: 480px;
        scroll-snap-align: center;
        font-size: 0.9em;
    }

    .htm-timeline .timeline-text { font-size: 0.82rem; }
    .htm-timeline .timeline-date { font-size: 0.7rem; }
    .htm-timeline .timeline-source { font-size: 0.68rem; }

    /* Section 3 */
    .section-how-it-works { padding: 1.5rem 1.5rem; text-align: left; }
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    /* Section 4 */
    .section-why-fans { padding: 1.5rem 1.5rem; text-align: left; }
    .why-fans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Section 5 */
    .section-join { padding: 1.5rem 1.5rem; text-align: left; }
    .fan-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Footer */
    .section-footer-cta { padding: 1.5rem 1.5rem; text-align: left; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   STAGE GLOW VARIABLES (for scoreboard LED effects)
   ═══════════════════════════════════════════════════════════════ */
.hero--whisper { --stage-glow: #c084fc; }
.hero--wheeling { --stage-glow: #ffa500; }
.hero--jetting { --stage-glow: #3b82f6; }
.hero--done { --stage-glow: #00ff6a; }
.hero--dealoff { --stage-glow: #ef4444; }


/* Hide ticker */
.ad-board { display: none; }

@media (min-width: 901px) {
    .section-footer-cta .section-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* Done-deal timeline: green dots and pills */
.section-what-we-do .htm-timeline .timeline-dot {
    background: #00ff6a;
    box-shadow: 0 0 12px rgba(0, 255, 106, 0.4);
}

.section-what-we-do .htm-timeline .timeline-dot::before {
    background: radial-gradient(circle, rgba(0, 255, 106, 0.3), transparent);
}

.section-what-we-do .htm-timeline .timeline-source {
    color: #00ff6a;
    background: rgba(0, 255, 106, 0.1);
    border: 1px solid rgba(0, 255, 106, 0.25);
}

.section-what-we-do .htm-timeline .timeline-item:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(0, 255, 106, 0.4), rgba(255, 255, 255, 0.1));
}

/* HIW image cards */
.hiw-card--image {
    padding: 0;
    border: none;
    background: none;
    overflow: hidden;
}

.hiw-card--image img {
    border-radius: 16px;
}

.hiw-grid .hiw-card {
    min-height: auto;
}

.hiw-grid .hiw-card:nth-child(3),
.hiw-grid .hiw-card:nth-child(4) {
    transform: scale(1.01);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE: HERO / NAV / SCOREBOARD (from v1)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero {
        min-width: unset;
        background-image: url('assets/stadium_background_mobile.png');
        padding-top: calc(6rem - 16px);
        overflow: visible;
        background-position: 100% -30px;
        background-size: auto 120%;
    }

    .navbar { padding: 1.5rem 0 1rem; }
    .logo-img { height: 42px; margin-top: 0; }

    .hero-content {
        min-width: unset;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
        padding-right: 1rem;
        gap: 0.65rem;
    }

    .hero-text-block { gap: 1.25rem; margin-top: 1.5rem; }

    .scoreboard-link {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0.6rem;
        align-self: center;
        transform: none;
        filter: brightness(0.75) saturate(0.80);
    }

    .hero-scoreboard { width: 100%; margin: 0; }

    .scoreboard-text {
        top: 18%;
        right: 12%;
        left: auto;
        width: 48%;
        height: 65%;
        transform: perspective(800px) rotateY(-6deg) rotateZ(-0.7deg) skewY(-4deg);
        transform-origin: right center;
    }

    .sb-player { font-size: clamp(1.3rem, 3vw, 3rem); }
    .sb-clubs { font-size: clamp(0.8rem, 1vw, 1.4rem); color: rgba(255,255,255,0.5); }
    .sb-tag { font-size: clamp(0.5rem, 0.8vw, 0.9rem); }
    .sb-badge { font-size: clamp(0.5rem, 0.8vw, 0.9rem); padding: 4px 12px; }

    .hero-left > .club-selector .select-club-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.65rem;
        border-radius: 0.55rem;
    }
}

@media (max-width: 768px) {
    .hero-support {
        color: rgba(255, 255, 255, 0.75);
        font-size: clamp(1.125rem, 2.4vw, 1.6rem);
        line-height: 1.24;
        max-width: 25ch;
        font-weight: 400;
    }

    .stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        gap: 1.5rem;
        padding: 1.5rem 1rem 3.5rem 1rem;
        margin-top: 6rem;
        justify-content: space-evenly;
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .stat { text-align: center; max-width: 80px; }
}

/* Swipe hint - mobile only */
.showcase-swipe-hint {
    display: none;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .showcase-swipe-hint { display: block; }
}

@media (max-width: 900px) {
    .section-footer-cta {
        text-align: left;
    }
    .section-footer-cta .footer-cta-actions {
        align-items: flex-start;
    }
}

/* Desktop: bigger card, smaller timeline, matched heights */
@media (min-width: 901px) {
    .htm-card.rumor-card {
        width: 320px;
        min-height: 500px;
    }

    .htm-timeline {
        min-height: 500px;
        display: flex;
        flex-direction: column;
    }

    .htm-timeline .timeline-text { font-size: 0.82rem; }
    .htm-timeline .timeline-date { font-size: 0.72rem; }
    .htm-timeline .timeline-source { font-size: 0.68rem; }
    .htm-timeline-entries { flex: 1; }
}

/* Why fans image cards */
.why-fans-card--image {
    padding: 0;
    border: none;
    background: none;
    overflow: hidden;
}

/* Desktop: bigger why-fans cards */
@media (min-width: 901px) {
    .why-fans-grid {
        max-width: 1300px;
        margin-left: -100px;
        margin-right: -100px;
    }
}

/* Why fans cards: desktop/mobile visibility */
.why-fans-card--mobile { display: none; }

@media (max-width: 900px) {
    .why-fans-card--desktop { display: none; }
    .why-fans-card--mobile { display: block; }
}

/* ─── Fan Stack (Join the Conversation redesign) ─── */
.fan-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.fan-stack-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.fan-stack-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.fan-stack-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.fan-stack-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
    letter-spacing: 0.02em;
}

.fan-stack-subtitle {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.fan-stack-body {
    padding-left: 2.15rem;
}

.fan-stack-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.fan-stack-note {
    color: var(--text-dim);
    font-size: 0.75rem;
    margin: 0.5rem 0 0;
    font-style: italic;
}

/* Verdict bar split (green left, red right) */
.verdict-bar--split {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    margin-top: 0.5rem;
}

.verdict-fill--right {
    margin-left: auto;
}

.verdict-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
}

.verdict-pct--green { color: #4ade80; font-size: 0.75rem; font-weight: 700; }
.verdict-pct--red { color: #f87171; font-size: 0.75rem; font-weight: 700; }

@media (min-width: 901px) {
    .section-join .fan-stack {
        max-width: 560px;
    }
}

/* Join section: always centre the heading/subtitle */
.section-join {
    text-align: center !important;
}

.section-join .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ─── Fan Features (v1 3-column grid) ─── */
.fan-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.fan-card {
    background: rgba(10, 12, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.fan-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.fan-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.fan-card--punt {
    display: flex;
    flex-direction: column;
}


.punt-disclaimer {
    color: var(--text-dim);
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .fan-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .fan-card {
        padding: 1.8rem 1.5rem;
    }
}

/* Fan card icons */
.fan-card-icon {
    text-align: center;
    margin-bottom: 1rem;
}

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

/* More padding before footer CTA */
.section-footer-cta {
    padding-top: 6rem !important;
}

/* Wider wrap for join section desc */
.section-join .section-desc {
    max-width: 100%;
}

/* Remove card backgrounds and borders */
.fan-card {
    background: none !important;
    border: none !important;
}

/* Tighter gap between subtitle and fan cards */
.section-join .fan-features {
    margin-top: 1rem;
}

/* Mobile: Join section stacked layout with inline icons */
@media (max-width: 900px) {
    .section-join {
        text-align: left !important;
    }

    .section-join .fan-features {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
    }

    .fan-card {
        text-align: left !important;
        padding: 0 !important;
    }

    .fan-card-icon {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
        margin-right: 0.75rem;
    }

    .fan-card-icon img {
        height: 50px !important;
    }

    .fan-card-title {
        display: inline-block;
        vertical-align: middle;
    }

    .fan-card-desc {
        margin-top: 0.3rem;
        padding-left: 0;
    }

    .section-join .section-desc {
        text-align: left !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 900px) {
    .fan-card--punt .fan-card-icon {
        display: inline-block;
        vertical-align: middle;
        text-align: left;
    }

    .fan-card--punt .fan-card-title {
        display: inline;
    }

    .fan-card--punt .fan-card-desc {
        margin-top: 0.3rem;
    }
}

/* Force punt card to match others on mobile */
@media (max-width: 900px) {
    .fan-card--punt .fan-card-icon,
    .fan-card--punt .fan-card-title {
        display: inline-block !important;
        vertical-align: middle !important;
    }

    .fan-card--punt .fan-card-icon {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .fan-card--punt .fan-card-icon img {
        height: 50px !important;
    }
}

@media (max-width: 900px) {
    .fan-card--punt {
        display: block !important;
    }

    .fan-card--punt > .fan-card-icon {
        float: left;
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .fan-card--punt > .fan-card-title {
        padding-top: 0.5rem;
    }

    .fan-card--punt > .fan-card-desc {
        clear: both;
    }
}

/* Fix club dropdown z-index on mobile */
.club-dropdown {
    z-index: 99999 !important;
}

.club-selector {
    z-index: 9999;
}

/* Fix: scope fan-card overrides to only the join section */
.hero-scoreboard,
.hero-scoreboard * {
    text-align: left !important;
}

.scoreboard-text {
    display: flex !important;
    flex-direction: column !important;
}

/* Restore scoreboard positioning */
.scoreboard-link {
    position: relative;
    z-index: 1;
}

/* Dropdown must appear above scoreboard */
.hero-left {
    z-index: 100;
}

.scoreboard-link {
    z-index: 1 !important;
}

/* What we do bullet icons */
.bullet-icon-img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
}
