:root {
    --red: #E8001E;
    --red-dark: #B5001A;
    --red-light: #FF2040;
    --navy: #0D0F1A;
    --navy-light: #141625;
    --navy-mid: #1C1F35;
    --gold: #F5A623;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --text: #E2E8F0;
    --green: #22C55E;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Barlow Condensed', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--red-light)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

/* SKIP */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    background: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 700
}

.skip-link:focus {
    left: 4px
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 15, 26, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 0, 30, 0.2);
    padding: 0 24px;
    height: 70px
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.logo-link img {
    height: 44px;
    width: auto
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    flex-wrap: nowrap;
    overflow-x: auto
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 11px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition)
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red-light);
    background: rgba(232, 0, 30, 0.08)
}

.main-nav a.live-tag {
    color: var(--red-light)
}

.header-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-decoration: none;
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(232, 0, 30, 0.4)
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 0, 30, 0.55);
    color: var(--white)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red)
}

.btn-outline:hover {
    background: rgba(232, 0, 30, 0.1);
    transform: translateY(-2px);
    color: var(--red-light)
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.2rem
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition)
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--navy);
    padding: 16px;
    border-bottom: 1px solid rgba(232, 0, 30, 0.15);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto
}

.mobile-nav.active {
    display: flex
}

.mobile-nav a {
    color: var(--text);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500
}

.mobile-nav a:hover {
    color: var(--red-light);
    background: rgba(232, 0, 30, 0.08)
}

.mobile-nav-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white) !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 14px !important;
    border-radius: var(--radius) !important
}

/* HERO */
.hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(232, 0, 30, 0.06) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 24px
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-home.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 0, 30, 0.12);
    border: 1px solid rgba(232, 0, 30, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--red-light);
    font-weight: 600;
    margin-bottom: 20px
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em
}

.hero h1 span {
    color: var(--red-light)
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 540px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* BONUS CARD */
.hero-bonus-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 0, 30, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(12px)
}

.bonus-card-title {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px
}

.bonus-card-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red-light);
    line-height: 1
}

.bonus-card-sub {
    font-size: 0.82rem;
    color: var(--gray);
    margin: 8px 0 20px
}

.bonus-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem
}

.bonus-check {
    color: var(--green);
    font-size: 1rem
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(232, 0, 30, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 0, 30, 0.1)
}

.stat-item {
    background: var(--navy-light);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition)
}

.stat-item:hover {
    background: var(--navy-mid)
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--red-light);
    line-height: 1
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 6px;
    display: block
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

/* SECTIONS */
.section {
    padding: 80px 0
}

.section-alt {
    background: var(--navy-light)
}

.section-header {
    text-align: center;
    margin-bottom: 56px
}

.section-label {
    display: inline-block;
    background: rgba(232, 0, 30, 0.12);
    border: 1px solid rgba(232, 0, 30, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: var(--red-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 12px auto 0
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: var(--navy-light);
    border: 1px solid rgba(232, 0, 30, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent)
}

.card:hover {
    border-color: rgba(232, 0, 30, 0.3);
    transform: translateY(-4px)
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase
}

.card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6
}

/* TABLES */
.data-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg)
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.data-table caption {
    caption-side: bottom;
    font-size: 0.78rem;
    color: var(--gray);
    padding: 10px;
    text-align: left
}

.data-table thead tr {
    background: var(--navy-mid)
}

.data-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(232, 0, 30, 0.15)
}

.data-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.data-table tbody tr:last-child td {
    border-bottom: none
}

.data-table tbody tr:hover {
    background: rgba(232, 0, 30, 0.04)
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700
}

.badge-red {
    background: rgba(232, 0, 30, 0.15);
    color: var(--red-light)
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green)
}

.badge-gold {
    background: rgba(245, 166, 35, 0.15);
    color: var(--gold)
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 60px 24px 50px;
    border-bottom: 1px solid rgba(232, 0, 30, 0.1)
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1
}

.page-hero h1 span {
    color: var(--red-light)
}

.page-hero p {
    color: var(--gray);
    max-width: 700px;
    font-size: 1.05rem
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px
}

.breadcrumb a {
    color: var(--gray)
}

.breadcrumb a:hover {
    color: var(--red-light)
}

.breadcrumb-sep {
    color: var(--gray)
}

/* CHART */
.chart-wrap {
    max-width: 640px
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px
}

.bar-label {
    width: 160px;
    font-size: 0.88rem;
    color: var(--gray);
    flex-shrink: 0
}

.bar-track {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    height: 28px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    transition: width 1.2s ease;
    min-width: 48px
}

.bar-fill.alt {
    background: linear-gradient(90deg, var(--gold), #C88400)
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    background: var(--navy-mid);
    border: 1px solid rgba(232, 0, 30, 0.1);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body)
}

.faq-question::after {
    content: '+';
    color: var(--red-light);
    font-size: 1.4rem;
    flex-shrink: 0
}

.faq-question.active::after {
    content: '−'
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7
}

.faq-answer.open {
    display: block
}

/* SEO */
.seo-content {
    padding: 80px 0;
    background: var(--navy-light)
}

.seo-article h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin: 40px 0 14px
}

.seo-article h2:first-child {
    margin-top: 0
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red-light);
    margin: 28px 0 10px
}

.seo-article p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(232, 0, 30, 0.1)
}

.seo-links a {
    background: rgba(232, 0, 30, 0.08);
    border: 1px solid rgba(232, 0, 30, 0.2);
    color: var(--red-light);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem
}

.seo-links a:hover {
    background: rgba(232, 0, 30, 0.15)
}

/* STEPS */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem
}

.step-content strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px
}

.step-content span {
    color: var(--gray);
    font-size: 0.88rem
}

/* FOOTER */
.site-footer {
    background: var(--navy-mid);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-top: 16px;
    line-height: 1.6
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--red-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem
}

.footer-links a:hover {
    color: var(--red-light)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.82rem
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.footer-badge {
    background: rgba(232, 0, 30, 0.1);
    border: 1px solid rgba(232, 0, 30, 0.2);
    color: var(--red-light);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600
}

/* AGE BANNER */
.age-banner {
    background: rgba(232, 0, 30, 0.06);
    border-top: 1px solid rgba(232, 0, 30, 0.1);
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    color: var(--gray)
}

/* ANDROID BANNER */
.android-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9998;
    max-width: 420px;
    width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s ease
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0
    }
}

.android-banner-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem
}

.android-banner-icon {
    font-size: 2.4rem;
    flex-shrink: 0
}

.android-banner-text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem
}

.android-banner-text span {
    font-size: 0.82rem;
    color: var(--gray)
}

.android-banner-btn {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0
}

/* ANIMATE */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: none
}

/* PROVIDERS */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px
}

.provider-card {
    background: var(--navy-mid);
    border: 1px solid rgba(232, 0, 30, 0.08);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition)
}

.provider-card:hover {
    border-color: rgba(232, 0, 30, 0.3);
    color: var(--red-light)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-bonus-card {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .providers-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:768px) {

    .main-nav,
    .header-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .cards-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:480px) {
    .hero {
        padding: 60px 16px
    }

    .section {
        padding: 60px 0
    }
}