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

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #080b10;
    --bg-2: #0d1117;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --accent: #45f3ff;
    --text: #e2e8f0;
    --text-muted: #64748b;
    --max-w: 1360px;
    --pad-x: 40px;
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #2a3040;
    border-radius: 3px;
}

/* ─── NAV ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 11, 16, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}

.nav-inner {
    /* No max-width — always fills the full viewport width */
    width: 100%;
    padding: 0 clamp(24px, 5vw, 75px);
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 42px;
    filter: grayscale(1) invert(1) brightness(1.1);
    transition: opacity 0.2s;
}

.nav-logo:hover img {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Stream nav link */
.nav-stream {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.nav-stream:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Discord nav link */
.nav-discord {
    background: #5865f2;
    color: #fff !important;
}

.nav-discord:hover {
    background: #4752c4;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
}

.nav-cta {
    background: var(--accent) !important;
    color: #080b10 !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 16px rgba(69, 243, 255, 0.35);
}

.nav-voucher {
    background: #31a377 !important;
    color: #080b10 !important;
    font-weight: 700 !important;
}

.nav-voucher:hover {
    box-shadow: 0 4px 16px rgba(49, 163, 119, 0.35);
}

/* ─── SECTION HELPERS ─── */
.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #080b10;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(69, 243, 255, 0.35);
}

.btn-voucher {
    display: inline-block;
    background: #31a377;
    color: #080b10;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-voucher:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(49, 163, 119, 0.35);
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--card-border);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--accent);
    transition: background 0.2s;
}

.btn-outline:hover {
    background: rgba(69, 243, 255, 0.07);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 22px;
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px var(--pad-x) 64px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 700px;
    background: radial-gradient(ellipse at center,
            rgba(69, 243, 255, 0.1) 0%,
            rgba(124, 58, 237, 0.07) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Hero inner – flex row with space-between */
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    /* Default: content centered */
}

/* When fight card is present, hero content aligns left */
.hero-inner.has-fightcard .hero-content {
    flex: 1 1 auto;
    max-width: 580px;
    text-align: left;
    align-items: flex-start;
}

/* Default (no fight card): centered */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: heroFadeUp 0.85s ease both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 60, 60, 0.12);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ff6b6b;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

#hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero-sub strong {
    color: var(--text);
}

/* When left-aligned, override auto margins */
.hero-inner.has-fightcard .hero-sub {
    margin-left: 0;
}

.hero-inner.has-fightcard .hero-actions {
    justify-content: flex-start;
}

.hero-inner.has-fightcard .hero-stats {
    width: auto;
}

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

.hero-stats {
    display: inline-flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 14px 28px;
    backdrop-filter: blur(8px);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.stat-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--card-border);
}

/* ─── HERO FIGHT CARD (right side) ─── */
.hero-event {
    flex: 0 0 auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: heroFadeUp 1s 0.15s ease both;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 460px;
    width: 100%;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
}

.event-card:hover {
    box-shadow: 0 8px 32px rgba(69, 243, 255, 0.15);
    transform: translateY(-2px);
}

/* Lightbox */
#fightcard-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    transition: background 0.3s;
}

#fightcard-lightbox.active {
    display: flex;
    background: rgba(0, 0, 0, 0.88);
    animation: lbFadeIn 0.3s ease;
}

@keyframes lbFadeIn {
    from {
        background: rgba(0, 0, 0, 0);
    }

    to {
        background: rgba(0, 0, 0, 0.88);
    }
}

#lightbox-img {
    max-width: min(90vw, 700px);
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: lbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

@keyframes lbZoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.event-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(13, 17, 23, 0.8);
    border-bottom: 1px solid var(--card-border);
}

/* ─── COUNTDOWN TIMER ─── */
.event-countdown {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-time {
    font-variant-numeric: tabular-nums;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-shadow: 0 0 16px rgba(69, 243, 255, 0.3);
}

.countdown-time span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0 6px 0 2px;
}

#hero-countdown {
    padding: 18px 30px;
}

#hero-countdown .countdown-title {
    font-size: 0.95rem;
}

#hero-countdown .countdown-time {
    font-size: 1.9rem;
}

#hero-countdown .countdown-time span {
    font-size: 1.1rem;
}


/* ─── DISCOUNT BADGE ─── */
.discount-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(69, 243, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(69, 243, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 12px;
    margin-bottom: 6px;
}



.event-logo {
    height: 30px;
    width: auto;
    filter: invert(1) brightness(1.2);
    object-fit: contain;
}

.event-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

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

/* ─── FEATURES ─── */
#features {
    padding: 52px 0;
    background: var(--bg-2);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: left;
    transition: border-color 0.3s, transform 0.25s;
}

.feat-card:hover {
    border-color: rgba(69, 243, 255, 0.2);
    transform: translateY(-3px);
}

.feat-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.feat-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
}

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

/* ─── VIP PRICING ─── */
#vip {
    padding: 60px 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto 28px;
    text-align: left;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 26px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    /* Flex column so plan-action always sticks to bottom */
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(155deg, rgba(69, 243, 255, 0.06) 0%, rgba(124, 58, 237, 0.05) 100%);
    box-shadow: 0 0 36px rgba(69, 243, 255, 0.09);
}

.pricing-card.featured:hover {
    border-color: var(--accent);
}

/* plan-header: duration label + badge inline */
.plan-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.plan-duration {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: #080b10;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
}

/* plan-action: always at bottom of card */
.plan-action {
    margin-top: auto;
    padding-top: 20px;
}

/* hide the stripe web component visually */
.stripe-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 5px;
}

.price-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding-bottom: 6px;
}

.plan-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.plan-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    /* margin-top: auto on plan-action handles spacing */
}

.plan-perks li {
    font-size: 0.85rem;
    color: var(--text);
}

stripe-buy-button {
    display: block;
    width: 100%;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-note a {
    color: var(--accent);
    border-bottom: 1px solid rgba(69, 243, 255, 0.3);
    transition: border-color 0.2s;
}

.pricing-note a:hover {
    border-color: var(--accent);
}

/* ─── FREE STREAM ─── */
#stream {
    padding: 60px 0;
    background: var(--bg-2);
}

.stream-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.stream-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.stream-btn:hover {
    border-color: rgba(69, 243, 255, 0.4);
    background: rgba(69, 243, 255, 0.05);
    transform: translateY(-2px);
}

.stream-vip-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.stream-vip-hint a {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid rgba(69, 243, 255, 0.3);
    transition: border-color 0.2s;
}

.stream-vip-hint a:hover {
    border-color: var(--accent);
}

/* Offline state */
.stream-offline-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 0 8px;
}

.stream-offline-icon {
    font-size: 2.8rem;
    opacity: 0.3;
}

.stream-offline-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    opacity: 0.5;
}

.stream-offline-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center !important;
    max-width: 360px;
    margin: 0 auto;
}

/* ─── DISCORD CTA ─── */
#discord-cta {
    padding: 60px 0;
    background: var(--bg);
}

/* New card-style Discord section */
.dc-card {
    position: relative;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.08) 0%, rgba(69, 243, 255, 0.05) 100%);
    border: 1px solid rgba(114, 137, 218, 0.2);
    border-radius: var(--radius);
    padding: 48px 52px;
    display: flex;
    align-items: center;
    gap: 52px;
    text-align: left;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.dc-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(114, 137, 218, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dc-img {
    width: 100px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 24px rgba(114, 137, 218, 0.5));
    transition: transform 0.35s;
}

.dc-img:hover {
    transform: scale(1.08) rotate(-3deg);
}

.dc-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7289da;
    margin-bottom: 10px;
}

.dc-text h2 {
    text-align: left;
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.dc-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.dc-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 24px;
}

.dc-perks span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.btn-discord {
    display: inline-block;
    background: #5865f2;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.4);
}

/* ─── FOOTER ─── */
footer {
    background: #040609;
    border-top: 1px solid var(--card-border);
    padding: 22px var(--pad-x);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-logo img {
    height: 30px;
    filter: grayscale(1) invert(1) brightness(0.65);
    transition: filter 0.2s;
}

.footer-logo:hover img {
    filter: grayscale(1) invert(1) brightness(1);
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.email-bright {
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.email-bright:hover {
    color: var(--accent);
}

.divider {
    color: #2a3040;
}

.disclaimer {
    font-size: 0.7rem;
    color: #2e3a4a;
    max-width: 680px;
    line-height: 1.5;
}

.copyright {
    font-size: 0.72rem;
    color: #2e3a4a;
}

/* ─── COPY TOOLTIP ─── */
.copy-tooltip {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(69, 243, 255, 0.95);
    color: #080b10;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    z-index: 1000;
    animation: fadeInOutTooltip 2s ease-in-out;
}

@keyframes fadeInOutTooltip {
    0% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    15% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    85% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -8px);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    :root {
        --pad-x: 28px;
    }

    .feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .hero-inner.has-fightcard {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-inner.has-fightcard .hero-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .hero-inner.has-fightcard .hero-sub {
        margin-left: auto;
    }

    .hero-inner.has-fightcard .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --pad-x: 18px;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dc-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px 24px;
    }

    .dc-text h2,
    .dc-text p {
        text-align: center;
    }

    .dc-text p {
        max-width: 100%;
    }

    .dc-perks {
        justify-content: center;
    }

    .dc-img {
        margin-bottom: -10px;
        width: 80px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }


    .hero-stats {
        padding: 12px 14px;
    }

    .stat {
        padding: 0 12px;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .event-card {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    #hero {
        padding-top: 100px;
        padding-bottom: 48px;
    }

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

    .hero-stats {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 12px 6px;
    }

    .stat {
        padding: 0 4px;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .stat-num {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-divider {
        width: 1px;
        height: 30px;
    }
}

/* ─── MODAL OVERLAY & COMPARE TABLE ─── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s;
}

.modal-overlay.active {
    display: flex;
    background: rgba(0, 0, 0, 0.88);
    animation: lbFadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-2);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: lbZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

/* Also ensure fightcard lightbox close button is reachable and styled */
#fightcard-lightbox .modal-close {
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    z-index: 1001;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.table-responsive {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.compare-table th {
    padding: 16px 14px;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    /* Thicker border after header */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Thin outer top */
    text-align: center;
}

.compare-table th:first-child {
    text-align: left;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    /* Thicker border after first col */
}

.compare-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    text-align: center;
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    /* Thicker border after first col */
}

.compare-table tbody tr:last-child td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table td.muted-text {
    color: var(--text-muted);
}

.compare-table td.highlight-text {
    color: #fff;
    font-weight: 600;
}

.compare-table .vip-col {
    background: rgba(69, 243, 255, 0.05);
    color: var(--accent);
    font-weight: 700;
    border-left: 1px solid rgba(69, 243, 255, 0.1);
    border-right: 1px solid rgba(69, 243, 255, 0.1);
}

.compare-table th.vip-col {
    border-top: 1px solid rgba(69, 243, 255, 0.1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.compare-table tbody tr:last-child td.vip-col {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ─── FAQ SECTION ─── */
#faq {
    padding: 60px 0;
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background-color: var(--bg-2);
    transition: background 0.3s, border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(69, 243, 255, 0.2);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    cursor: pointer;
    list-style: none;
    /* hide standard arrow in modern browsers */
    position: relative;
    user-select: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--accent);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out;
}

.faq-content-inner {
    overflow: hidden;
    padding: 0 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.35s ease-out, padding 0.35s ease-out;
}

.faq-item.is-open .faq-content {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-content-inner {
    padding: 10px 24px 24px 24px;
    opacity: 1;
}

/* ─── CRO / FOMO ANIMATIONS ─── */
.pulse-btn {
    animation: shadowPulse 2s infinite;
}

@keyframes shadowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(69, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(69, 243, 255, 0);
    }
}