:root {
    --red: #D42A28;
    --red-dark: #A21A18;
    --red-deep: #7a1010;
    --navy: #0a1c37;
    --navy2: #0d2348;
    --gold: #f0b429;
    --white: #ffffff;
    --off: #f4f5f7;
    --text: #1a1a2e;
    --muted: #6b7280;
    --border: #e5e7eb;
    --glass: rgba(255, 255, 255, 0.06);
}

.o-img {
    max-width: 992px;
    width: 100%;
    height: auto;
}

.header-top {
    display: none;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* ── HEADER ── */
header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--red);
}

.header-top {
    background: var(--red);
    padding: 10px 40px;
    align-items: center;
    justify-content: space-between;
}

.header-top-slogan {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-top-slogan span {
    color: var(--gold);
}

.header-reg-btn {
    background: #fff;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #fff;
}

.header-reg-btn:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 52px;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-decoration: none;
}

.logo span {
    display: inline-block;
    background: var(--red);
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 4px;
}

nav {
    display: flex;
    gap: 4px;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    transition: all 0.2s;
}

nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

nav a.active {
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(212, 42, 40, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 0%, rgba(212, 42, 40, 0.1) 0%, transparent 50%);
}

/* Diagonal stripes */
.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 18px,
            rgba(255, 255, 255, 0.025) 18px,
            rgba(255, 255, 255, 0.025) 20px);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    width: 100%;
}



.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 42, 40, 0.2);
    border: 1px solid rgba(212, 42, 40, 0.5);
    color: #ff8a88;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.hero-badge::before {
    content: '●';
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h1 .accent {
    color: var(--red);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(212, 42, 40, 0.35);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 42, 40, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.hstat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.hstat-n {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
}

.hstat-l {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Bonus card hero right */
.hero-bonus-card {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(212, 42, 40, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.bonus-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.bonus-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-cta {
    display: block;
    background: #fff;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.bonus-cta:hover {
    background: var(--gold);
    color: #000;
}

/* ── CONTENT ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 64px 0;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 0 40px;
}

/* Article */
.article h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 36px 0 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    display: inline-block;
}

.article h2:first-child {
    margin-top: 0;
}

.article p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}

.article ul {
    margin: 0 0 16px 20px;
}

.article ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 6px;
}

.article ul li::marker {
    color: var(--red);
}

/* Blockquote info */
.info-box {
    background: #eef6ff;
    border-left: 4px solid #1e73be;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
}

.info-box p {
    font-size: 0.88rem;
    color: #1e3a5f;
    margin: 0;
}

.warn-box {
    background: #fff8e1;
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0;
}

.warn-box p {
    font-size: 0.88rem;
    color: #7a5200;
    margin: 0;
}

.warn-box a {
    color: var(--red);
}

/* Pros cons table */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.pros-card {
    background: #f0faf4;
    border: 1px solid #b6e4c8;
    border-radius: 12px;
    padding: 20px;
}

.cons-card {
    background: #fff5f5;
    border: 1px solid #ffc9c9;
    border-radius: 12px;
    padding: 20px;
}

.pros-card h3,
.cons-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.pros-card h3 {
    color: #1a7f37;
}

.cons-card h3 {
    color: var(--red);
}

.check-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.check-item .ico {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.9rem;
}

/* Registration steps */
.reg-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
}

.reg-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f8f9fc;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}

.reg-n {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reg-body strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.reg-body p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 0;
}

/* FAQ accordion */
.faq-list {
    margin: 20px 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    padding: 16px 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--red);
}

details[open] .faq-item summary::after,
details[open]>summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 0 16px;
    font-size: 0.9rem;
    color: #444;
    margin: 0;
    line-height: 1.65;
}

/* ── SIDEBAR ── */
.sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-card {
    background: var(--navy);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(10, 28, 55, 0.15);
}

.sidebar-card-header {
    background: var(--red);
    padding: 14px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidebar-card-body {
    padding: 18px;
}

.sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-stat:last-child {
    border: none;
}

.sidebar-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-stat-val {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.sidebar-bonus {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    margin-bottom: 20px;
}

.sb-bonus-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sb-bonus-n {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 4px 0;
}

.sb-bonus-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 14px;
}

.sb-btn {
    display: block;
    background: #fff;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.sb-btn:hover {
    background: var(--gold);
    color: #000;
}

.sports-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sport-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.sport-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
}

.sport-icon {
    font-size: 1rem;
}

.sport-count {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
}

/* Section headings */
.section-intro {
    padding: 56px 0 0;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: 0.03em;
}

/* Live section */
.live-banner {
    background: var(--navy);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
    flex-direction: column;
}

.live-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.3)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.1)
    }
}

.live-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.live-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.live-btn {
    margin-left: auto;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s;
}

.live-btn:hover {
    background: var(--red-dark);
}

/* Margin cards */
.margin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.margin-card {
    background: #f8f9fc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.margin-val {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 4px;
}

.margin-lbl {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    border-top: 3px solid var(--red);
    padding: 48px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.age-badge {
    background: rgba(212, 42, 40, 0.2);
    border: 1px solid rgba(212, 42, 40, 0.4);
    color: #ff8a88;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 8px;
}

.partners-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.partners-row p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }


}

@media (max-width: 768px) {

    .header-top,
    .header-nav {
        padding: 8px 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 16px;
    }

    .hero-bonus-card {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .container {
        padding: 0 16px;
    }

    .layout {
        padding: 40px 0;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .margin-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom,
    .partners-row {
        padding: 16px;
    }

    .divider {
        margin: 0 16px;
    }

    h1 {
        font-size: 2rem;
    }
}

@media(min-width: 1400px) {
    .header-top {
        display: flex;
    }
}