:root {
    --bg: #0a0a0c;
    --bg2: #111116;
    --bg3: #18181f;
    --card: #1c1c24;
    --card2: #22222c;
    --border: #2a2a38;
    --red: #e8112d;
    --red2: #ff1f3d;
    --red-glow: rgba(232, 17, 45, 0.25);
    --gold: #f5c518;
    --gold2: #ffd740;
    --green: #00d68f;
    --text: #f0f0f0;
    --text2: #e0e0e0;
    --text3: #ffffff;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    line-height: 1.6
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 2px
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo span {
    color: var(--red)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
    transition: color .2s;
    text-transform: uppercase
}

.nav-links a:hover {
    color: var(--red)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s
}

.btn-ghost:hover {
    border-color: var(--red);
    color: var(--red)
}

.btn-red {
    background: var(--red);
    border: none;
    color: var(--white);
    padding: 9px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s;
    box-shadow: 0 0 16px var(--red-glow)
}

.btn-red:hover {
    background: var(--red2);
    box-shadow: 0 0 24px var(--red-glow), 0 0 40px rgba(232, 17, 45, .15)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text2);
    transition: .3s
}

/* ===== HERO ===== */
.hero {
    background: url(../Images/bg-dark.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5% 60px;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232, 17, 45, .12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(232, 17, 45, .06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245, 197, 24, .04) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(42, 42, 56, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 42, 56, .3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .6s .2s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6rem);
    line-height: .95;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .6s .35s forwards;
}

.hero-title .accent {
    color: var(--red);
    text-shadow: 0 0 40px rgba(232, 17, 45, .5)
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1rem);
    color: var(--text2);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .6s .5s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .6s .65s forwards;
}

.btn-xl {
    padding: 14px 36px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-xl.red {
    background: var(--red);
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px var(--red-glow)
}

.btn-xl.red:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 17, 45, .4)
}

.btn-xl.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border)
}

.btn-xl.outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px)
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 5vw, 60px);
    margin-top: 56px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .6s .8s forwards;
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1
}

.hero-stat-num span {
    color: var(--red)
}

.hero-stat-lbl {
    font-size: .75rem;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px
}

.hero-fight-card {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 36px;
    max-width: 680px;
    width: 100%;
    opacity: 0;
    animation: fadeUp .6s .95s forwards;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

.fight-label {
    font-size: .7rem;
    letter-spacing: 3px;
    color: var(--text3);
    text-transform: uppercase;
    margin-bottom: 16px
}

.fight-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.fighter-block {
    flex: 1;
    min-width: 100px
}

.fighter-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    line-height: 1.1
}

.fighter-name.left {
    text-align: left
}

.fighter-name.right {
    text-align: right
}

.fighter-pct {
    font-size: 2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700
}

.fighter-pct.red {
    color: var(--red)
}

.fighter-pct.teal {
    color: var(--green)
}

.vs-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text3);
    padding: 0 16px;
    white-space: nowrap;
}

.fight-bar {
    height: 6px;
    background: var(--bg3);
    border-radius: 3px;
    margin-top: 16px;
    overflow: hidden
}

.fight-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red), rgba(0, 214, 143, .8));
    transition: width 1s ease
}

.fight-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    font-size: .75rem;
    color: var(--text3)
}

/* ===== SECTION SHARED ===== */
section {
    padding: 80px 5%
}

.section-tag {
    font-size: .7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 12px
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
    letter-spacing: 1px
}

.section-sub {
    color: var(--text2);
    max-width: 940px;
    margin-top: 12px;
    font-size: 1rem
}

.section-center {
    text-align: center
}

.section-center .section-sub {
    margin: 12px auto 0
}

/* ===== TICKER ===== */
.ticker-wrap {
    overflow: hidden;
    background: var(--red);
    padding: 10px 0;
    position: relative;
    z-index: 5
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 40s linear infinite;
    width: max-content
}

.ticker-item {
    white-space: nowrap;
    padding: 0 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px
}

.ticker-item::after {
    content: '•';
    color: rgba(255, 255, 255, .4)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== FIGHTS ON FIRE ===== */
.fights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px
}

.fight-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.fight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: .3s
}

.fight-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.fight-card:hover::before {
    opacity: 1
}

.fc-fighters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.fc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text2)
}

.fc-vs {
    font-size: .7rem;
    color: var(--text3);
    font-weight: 600
}

.fc-matchup {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem
}

.fc-event {
    font-size: .7rem;
    color: var(--text3);
    margin-bottom: 10px;
    letter-spacing: .5px
}

.fc-bar-row {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: var(--text2);
    margin-bottom: 4px
}

.fc-bar {
    height: 4px;
    background: var(--bg3);
    border-radius: 2px;
    overflow: hidden
}

.fc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px
}

.fc-pct-red {
    color: var(--red);
    font-weight: 700
}

.fc-pct-grn {
    color: var(--green);
    font-weight: 700
}

.fire-icon {
    font-size: 1rem
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
    background: var(--bg2)
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px
}

.hiw-step {
    text-align: center;
    position: relative
}

.hiw-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 40px;
    font-size: 1.5rem;
    color: var(--border);
    display: none;
}

.hiw-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--red);
    margin: 0 auto 20px;
    position: relative;
}

.hiw-num::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(232, 17, 45, .2)
}

.hiw-icon {
    font-size: 1.8rem;
    margin-bottom: 8px
}

.hiw-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.hiw-desc {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.6
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(232, 17, 45, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 1px solid rgba(232, 17, 45, .2)
}

.feature-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.feature-desc {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.65
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #000;
    font-size: .65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== WHAT IS SECTION ===== */
.what-is {
    background: var(--bg2)
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px
}

.what-is-visual {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.what-is-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 17, 45, .15), transparent 70%);
}

.mock-odds {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mock-fight {
    background: var(--bg3);
    border-radius: 8px;
    padding: 14px 16px
}

.mf-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 8px
}

.mf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: var(--text2)
}

.mf-bar {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden
}

.mf-fill {
    height: 100%;
    border-radius: 3px
}

.fill-r {
    background: var(--red);
    width: 72%
}

.fill-g {
    background: var(--green);
    width: 28%
}

.fill-r2 {
    background: var(--red);
    width: 55%
}

.fill-g2 {
    background: var(--green);
    width: 45%
}

.fill-r3 {
    background: var(--red);
    width: 83%
}

.fill-g3 {
    background: var(--green);
    width: 17%
}

.wi-points {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.wi-point {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.wi-point-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 6px;
    background: rgba(232, 17, 45, .1);
    border: 1px solid rgba(232, 17, 45, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 2px
}

.wi-point-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: .95rem
}

.wi-point-desc {
    color: var(--text2);
    font-size: .88rem;
    line-height: 1.6
}

/* ===== LEADERBOARD PREVIEW ===== */
.lb-section {
    background: var(--bg)
}

.lb-tabs {
    display: flex;
    gap: 4px;
    margin: 24px 0;
    background: var(--bg3);
    border-radius: 6px;
    padding: 4px;
    width: fit-content;
    flex-wrap: wrap
}

.lb-tab {
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text3);
    transition: .2s;
    border: none;
    background: none
}

.lb-tab.active {
    background: var(--red);
    color: #fff
}

.lb-table {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px
}

.lb-row {
    display: grid;
    grid-template-columns: 40px 1fr 80px 80px 80px;
    padding: 14px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: .2s
}

.lb-row:last-child {
    border-bottom: none
}

.lb-row:hover {
    background: var(--card2)
}

.lb-row.header {
    background: var(--bg3);
    font-size: .7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3)
}

.lb-rank {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem
}

.lb-rank.gold {
    color: var(--gold)
}

.lb-rank.silver {
    color: #aaa
}

.lb-rank.bronze {
    color: #cd7f32
}

.lb-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text2)
}

.lb-user {
    display: flex;
    align-items: center;
    gap: 10px
}

.lb-name {
    font-weight: 600;
    font-size: .9rem
}

.lb-sub {
    font-size: .72rem;
    color: var(--text3)
}

.lb-profit {
    font-weight: 700;
    color: var(--green)
}

.lb-win {
    font-size: .85rem;
    color: var(--text2)
}

.lb-streak {
    font-size: .85rem
}

.streak-fire {
    color: var(--gold)
}

/* ===== BONUSES ===== */
.bonus-section {
    background: var(--bg2)
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.bonus-card {
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
}

.bonus-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--card), rgba(245, 197, 24, .05))
}

.bonus-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #000;
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bonus-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--red);
    margin-bottom: 4px
}

.bonus-amount.gold {
    color: var(--gold)
}

.bonus-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px
}

.bonus-desc {
    color: var(--text2);
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 16px
}

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text2)
}

.bonus-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0
}

.btn-bonus {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--red);
    color: var(--red);
    background: transparent;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .2s
}

.btn-bonus:hover,
.bonus-card.featured .btn-bonus {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: var(--bg)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    position: relative;
    transition: .25s
}

.review-card:hover {
    border-color: rgba(232, 17, 45, .3);
    transform: translateY(-3px)
}

.review-quote {
    color: var(--red);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif
}

.review-text {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.review-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 12px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--text2);
    border: 2px solid var(--border)
}

.review-name {
    font-weight: 600;
    font-size: .9rem
}

.review-handle {
    font-size: .75rem;
    color: var(--text3)
}

.review-profit {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 214, 143, .1);
    border: 1px solid rgba(0, 214, 143, .2);
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 17, 45, .06), transparent);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
    position: relative
}

.stat-block {
    text-align: center;
    padding: 24px;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: .25s
}

.stat-block:hover {
    border-color: var(--red);
    transform: translateY(-3px)
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1
}

.stat-number span {
    color: var(--red)
}

.stat-label {
    font-size: .8rem;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px
}

.stat-trend {
    font-size: .75rem;
    color: var(--green);
    margin-top: 4px
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--bg)
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .2s
}

.faq-item:hover {
    border-color: rgba(232, 17, 45, .3)
}

.faq-item.open {
    border-color: var(--red)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .3px;
    user-select: none;
}

.faq-q-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--text3);
    flex-shrink: 0;
    transition: .3s;
}

.faq-item.open .faq-q-icon {
    background: var(--red);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s
}

.faq-a p {
    padding: 0 20px 18px;
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-a {
    max-height: 200px
}

/* ===== APP SECTION ===== */
.app-section {
    background: var(--bg2)
}

.app-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.app-inner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 17, 45, .1), transparent);
}

.app-left {
    flex: 2;
    min-width: 460px
}

.app-badges {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    color: var(--text);
}

.app-badge:hover {
    border-color: var(--red)
}

.app-badge-icon {
    font-size: 1.6rem
}

.app-badge-text small {
    display: block;
    font-size: .65rem;
    color: var(--text3);
    letter-spacing: 1px;
    text-transform: uppercase
}

.app-badge-text strong {
    font-size: .95rem;
    font-weight: 700
}

.app-right {
    flex: 1;
    min-width: 260px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}
.app-right img{
    width: 100%;
}

/* ===== LIVE BETS FEED ===== */
.live-feed-section {
    background: var(--bg)
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 1.5s infinite
}

.live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px
}

.live-label span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase
}

.live-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1200px
}

.live-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    animation: slideIn .4s ease;
    font-size: .85rem;
}

.live-item .user {
    font-weight: 700;
    color: var(--red);
    min-width: 100px
}

.live-item .action {
    color: var(--text3);
    font-size: .75rem
}

.live-item .fight {
    color: var(--text2)
}

.live-item .time {
    margin-left: auto;
    color: var(--text3);
    font-size: .75rem;
    white-space: nowrap
}

.live-item .amount {
    color: var(--green);
    font-weight: 700;
    min-width: 50px;
    text-align: right
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 100px 5%;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232, 17, 45, .1), var(--bg2) 70%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: 'FIGHTBETS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(255, 255, 255, .015);
    letter-spacing: 4px;
    white-space: nowrap;
    pointer-events: none;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 4rem);
    line-height: .95;
    letter-spacing: 2px;
    margin-bottom: 20px
}

.cta-title .red {
    color: var(--red)
}

.cta-sub {
    color: var(--text2);
    font-size: 1.1rem;
    max-width: 1000px;
    margin: 0 auto 36px
}

.cta-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text3)
}

.trust-icon {
    color: var(--green)
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 5% 40px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    flex-wrap: wrap
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.footer-brand span {
    color: var(--red)
}

.footer-tagline {
    color: var(--text3);
    font-size: .85rem;
    margin-bottom: 20px;
    line-height: 1.6
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    text-decoration: none;
    color: var(--text2);
    transition: .2s
}

.social-btn:hover {
    border-color: var(--red);
    color: var(--red)
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 16px
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: .88rem;
    transition: .2s
}

.footer-links a:hover {
    color: var(--red)
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal {
    color: var(--text3);
    font-size: .75rem
}

.footer-disclaimer {
    color: var(--text3);
    font-size: .72rem;
    max-width: 600px;
    line-height: 1.5
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-12px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes countUp {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
    .what-is-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .app-inner {
        padding: 32px
    }

    nav .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .lb-row {
        grid-template-columns: 32px 1fr 60px 60px
    }

    .lb-streak {
        display: none
    }
}

@media(max-width:600px) {
    nav {
        padding: 0 4%
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-fight-card {
        padding: 20px
    }

    .fight-matchup {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .vs-badge {
        padding: 0;
        font-size: 1.5rem
    }

    section {
        padding: 60px 4%
    }

    .lb-row {
        grid-template-columns: 28px 1fr 60px
    }

    .lb-win,
    .lb-streak {
        display: none
    }

    .app-inner {
        flex-direction: column
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: .2s
}

.mobile-menu a:hover {
    color: var(--red)
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text2)
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 64px;
    left: 0;
    height: 2px;
    background: var(--red);
    z-index: 999;
    transition: width .1s
}
a{
    text-decoration: none;
    color: inherit;
}