@charset "UTF-8";
/* CSS Document */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
--black:        #080808;
--dark:         #0f0f0f;
--card:         #141414;
--card2:        #1c1c1c;
--border:       #262626;
--border2:      #333;
--orange:       #e8821e;
--orange-light: #f59a38;
--orange-dim:   rgba(232,130,30,0.12);
--orange-border:rgba(232,130,30,0.25);
--gold:         #d4a843;
--gold-light:   #f0c86a;
--red:          #d81f26;
--red-hover:    #f0252d;
--red-dim:      rgba(216,31,38,0.12);
--red-border:   rgba(216,31,38,0.28);
--white:        #f5f5f5;
--off-white:    #a8a8a8;
--muted:        #5a5a5a;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: .45;
}
/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.btn-red {
    background: var(--red);
    color: #fff;
}
.btn-red:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(216,31,38,0.45);
}
.btn-orange {
    background: var(--orange);
    color: #fff;
}
.btn-orange:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(232,130,30,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--border2);
}
.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}
.btn-md {
    padding: 12px 28px;
    font-size: 0.9rem;
}
.btn-sm {
    padding: 9px 20px;
    font-size: 0.82rem;
}
/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    height: 64px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,8,8,0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    overflow: hidden;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
    flex-shrink: 0;
    min-width: 0;
}
.nav-logo-bets {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c8501a;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    white-space: nowrap;
}
.nav-logo-offshore {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8821e;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    white-space: nowrap;
}
.nav-logo-check {
    display: inline-block;
    width: 22px;
    height: 32px;
    margin-left: 1px;
    position: relative;
    top: -2px;
    flex-shrink: 0;
}
.nav-logo-check svg {
    width: 100%;
    height: 100%;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--orange);
}
.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}
.nav-btn-login {
    padding: 8px 18px;
    background: var(--red);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1;
}
.nav-btn-login:hover {
    background: var(--red-hover);
}
.nav-btn-register {
    padding: 8px 18px;
    background: var(--orange);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    line-height: 1;
}
.nav-btn-register:hover {
    background: var(--orange-light);
}

@media(max-width:1100px) {
.nav-links {
    display: none;
}
}

@media(max-width:480px) {
nav {
    padding: 0 16px;
}
.nav-logo-text {
    font-size: 1.05rem;
}
.nav-logo-check {
    width: 22px;
    height: 20px;
}
.nav-btn-login, .nav-btn-register {
    padding: 8px 14px;
    font-size: 0.75rem;
}
}
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 48px 80px;
}
.hero-glow-l {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,130,30,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero-glow-r {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216,31,38,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232,130,30,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,130,30,0.04) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 70% 75% at 32% 50%, black 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-dim);
    border: 1px solid var(--orange-border);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s ease forwards;
}
.live-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-light);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
0%, 100% {
opacity:1;
box-shadow:0 0 0 0 rgba(232,130,30,0.5);
}
50% {
opacity:.7;
box-shadow:0 0 0 5px rgba(232,130,30,0);
}
}
.hero-badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.04em;
}
.hero-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.6s 0.25s ease forwards;
}
.hero-title .hl {
    color: var(--orange);
}
.hero-title .hl2 {
    color: var(--gold);
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
    opacity: 0;
    animation: fadeUp 0.6s 0.4s ease forwards;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s 0.55s ease forwards;
}
.hero-note {
    margin-top: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.6s 0.7s ease forwards;
}
.hero-note::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--muted);
}
/* hero right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 0.9s 0.85s ease forwards;
}
.panel-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.odds-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}
.odds-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
}
.odds-card:hover {
    border-color: rgba(232,130,30,0.4);
    transform: translateX(3px);
}
.odds-sport {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
}
.odds-match {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--white);
}
.odds-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    text-align: right;
}
.odds-type {
    font-family: 'DM Mono', monospace;
    font-size: 0.63rem;
    color: var(--muted);
    text-align: right;
    margin-top: 2px;
}
.bonus-strip {
    background: linear-gradient(135deg, rgba(216,31,38,0.14), rgba(232,130,30,0.08));
    border: 1px solid rgba(232,130,30,0.2);
    border-radius: 6px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}
.bonus-strip-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.bonus-strip-text span {
    color: var(--orange);
}
.bonus-strip-btn {
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    transition: background 0.2s;
}
.bonus-strip-btn:hover {
    background: var(--red-hover);
}
/* ── TICKER ── */
.ticker {
    background: var(--red);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    animation: tickerScroll 30s linear infinite;
}
.ticker-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 32px;
}
.ticker-item::after {
    content: '◆';
    margin-left: 32px;
    font-size: 0.4rem;
    opacity: 0.45;
    vertical-align: middle;
}
@keyframes tickerScroll {
from {
transform:translateX(0);
}
to {
transform:translateX(-50%);
}
}
/* ── STATS ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}
.stat-cell {
    padding: 38px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background 0.25s;
}
.stat-cell:last-child {
    border-right: none;
}
.stat-cell:hover {
    background: var(--card);
}
.stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-desc {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}
/* ── SECTIONS ── */
.section {
    padding: 96px 48px;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
.sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.sec-title .hl {
    color: var(--orange);
}
.sec-title .hl2 {
    color: var(--gold);
}
.sec-sub {
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 52px;
}
/* ── FEATURES ── */
.features-section {
    background: var(--dark);
}
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 28px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
    border-color: rgba(232,130,30,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55);
}
.feat-icon {
    width: 46px;
    height: 46px;
    background: var(--orange-dim);
    border: 1px solid var(--orange-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.feat-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 9px;
}
.feat-desc {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.7;
}
/* ── SPORTS ── */
.sports-section {
    background: var(--black);
}
.sports-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.sport-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px 14px;
    text-align: center;
    transition: border-color 0.25s, background 0.25s;
}
.sport-card:hover {
    border-color: rgba(232,130,30,0.35);
    background: var(--card2);
}
.sport-card:hover .sport-emoji {
    transform: scale(1.2);
}
.sport-emoji {
    font-size: 1.9rem;
    display: block;
    margin-bottom: 9px;
    transition: transform 0.25s;
}
.sport-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}
.sport-leagues {
    font-size: 0.68rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}
/* ── HOW IT WORKS ── */
.how-section {
    background: var(--dark);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.step-card {
    padding: 38px 26px;
    border-right: 1px solid var(--border);
    transition: background 0.25s;
}
.step-card:last-child {
    border-right: none;
}
.step-card:hover {
    background: var(--card2);
}
.step-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.step-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 9px;
    color: var(--white);
}
.step-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
}
/* ── PROMO ── */
.promo-section {
    padding: 80px 48px;
    background: var(--black);
}
.promo-box {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1c0a04 0%, #100808 60%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 70px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}
.promo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.promo-box::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(232,130,30,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-dim);
    border: 1px solid var(--red-border);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--red-hover);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.promo-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.promo-title .hl {
    color: var(--orange);
}
.promo-desc {
    font-size: 0.94rem;
    color: var(--off-white);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}
.promo-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.promo-amount {
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.promo-dollar {
    font-size: 6rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    text-shadow: 0 0 80px rgba(232,130,30,0.3);
}
.promo-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}
/* ── AGENT ── */
.agent-section {
    background: var(--dark);
}
.agent-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.agent-box::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.agent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.agent-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.agent-title .hl {
    color: var(--gold);
}
.agent-desc {
    font-size: 0.94rem;
    color: var(--off-white);
    line-height: 1.75;
    margin-bottom: 26px;
}
.agent-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.agent-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.perk-check {
    width: 20px;
    height: 20px;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 900;
}
.perk-text {
    font-size: 0.9rem;
    color: var(--off-white);
    line-height: 1.5;
}
.perk-text strong {
    color: var(--white);
}
.agent-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.agent-stat {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    border-left: 3px solid var(--gold);
}
.agent-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.agent-stat-label {
    font-size: 0.82rem;
    color: var(--muted);
}
/* ── REVIEWS ── */
.reviews-section {
    background: var(--black);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
}
.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.88rem;
    color: var(--off-white);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-av {
    width: 36px;
    height: 36px;
    background: var(--orange-dim);
    border: 1px solid var(--orange-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
}
.review-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--white);
}
.review-since {
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}
/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 48px 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 14px;
}
.footer-logo-bets {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c8501a;
    line-height: 1;
}
.footer-logo-offshore {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8821e;
    line-height: 1;
}
.footer-logo-check {
    display: inline-block;
    width: 16px;
    height: 24px;
    margin-left: 1px;
    position: relative;
    top: -1px;
}
.footer-logo-check svg {
    width: 100%;
    height: 100%;
}
.footer-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 270px;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 9px;
}
.social-link {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s;
}
.social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.fc-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'DM Mono', monospace;
}
.fc-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.fc-links a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.fc-links a:hover {
    color: var(--orange);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-legal {
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}
.footer-copy {
    font-size: 0.7rem;
    color: var(--muted);
}
/* ── MODAL ── */
.modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(4,4,4,0.93);
    backdrop-filter: blur(14px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-bg.open {
    opacity: 1;
    pointer-events: all;
}
.modal-box {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: all 0.3s;
}
.modal-bg.open .modal-box {
    transform: translateY(0) scale(1);
}
.modal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--card2);
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.modal-close:hover {
    color: var(--white);
    border-color: var(--border2);
}
.modal-title {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.modal-title span {
    color: var(--orange);
}
.modal-sub {
    font-size: 0.76rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}
.field {
    margin-bottom: 13px;
}
.field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--off-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.field input {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 13px 15px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    outline: none;
    transition: border-color 0.2s;
}
.field input:focus {
    border-color: var(--orange);
}
.field input::placeholder {
color:var(--muted);
}
.modal-submit {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    letter-spacing: 0.04em;
    transition: background 0.2s, box-shadow 0.2s;
}
.modal-submit:hover {
    background: var(--red-hover);
    box-shadow: 0 8px 28px rgba(216,31,38,0.45);
}
.modal-foot {
    text-align: center;
    margin-top: 14px;
    font-size: 0.76rem;
    color: var(--muted);
}
.modal-foot a {
    color: var(--orange);
    text-decoration: none;
}
@keyframes fadeUp {
from {
opacity:0;
transform:translateY(22px);
}
to {
opacity:1;
transform:translateY(0);
}
}
@keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}

@media(max-width:960px) {
.hero {
    padding: 96px 20px 60px;
}
.hero-inner {
    grid-template-columns: 1fr;
}
.hero-right {
    display: none;
}
.section {
    padding: 60px 20px;
}
.promo-section {
    padding: 60px 20px;
}
.promo-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
}
.promo-amount {
    display: none;
}
.agent-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
}
.feat-grid {
    grid-template-columns: 1fr 1fr;
}
.sports-grid {
    grid-template-columns: repeat(3, 1fr);
}
.steps-grid {
    grid-template-columns: 1fr 1fr;
}
.stats-row {
    grid-template-columns: 1fr 1fr;
}
.reviews-grid {
    grid-template-columns: 1fr;
}
.footer-top {
    grid-template-columns: 1fr 1fr;
}
footer {
    padding: 44px 20px 24px;
}
}