/* ============================================================
   1X-BET ONLINE MX — Main Stylesheet
   Brand: Blue #0044CC, Yellow #FFD600, Red #E3000F, Dark #080D1A
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
    --blue: #0044CC;
    --blue-bright: #1A5FE8;
    --blue-dark: #002A80;
    --blue-glow: rgba(0, 68, 204, 0.4);
    --yellow: #FFD600;
    --yellow-dark: #E6BF00;
    --red: #E3000F;
    --red-dark: #B8000C;
    --bg: #080D1A;
    --bg-card: #0D1830;
    --bg-card2: #111E38;
    --text: #EEF2FF;
    --text-muted: #7B8FC4;
    --border: rgba(0, 68, 204, 0.25);
    --border-yellow: rgba(255, 214, 0, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-blue: 0 0 24px rgba(0, 68, 204, 0.3);
    --shadow-yellow: 0 0 20px rgba(255, 214, 0, 0.2);
    --font: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse at 80% 0%, rgba(0, 68, 204, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(0, 68, 204, 0.1) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: var(--yellow);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--blue-bright);
}

/* ── Skip link ── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--yellow);
    color: #000;
    padding: 8px 16px;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ┌─────────────────────────────────────────────┐
   │  HEADER                                     │
   └─────────────────────────────────────────────┘ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 13, 26, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 68, 204, 0.4);
    box-shadow: 0 1px 20px rgba(0, 68, 204, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.logo-1x {
    color: #fff;
}

.logo-bet {
    color: var(--blue-bright);
    text-shadow: 0 0 14px rgba(26, 95, 232, 0.5);
}

.logo-dot {
    color: var(--red);
    font-size: 2rem;
    line-height: 1;
    margin: 0 1px;
}

/* Desktop nav */
nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

nav a {
    color: var(--text-muted);
    padding: 8px 13px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    transition: all .2s;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: var(--yellow);
    background: rgba(255, 214, 0, 0.07);
}

/* CTA button header */
.btn-header {
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #fff !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: .88rem;
    white-space: nowrap;
    transition: all .2s;
    box-shadow: 0 2px 14px rgba(0, 68, 204, 0.4);
    text-decoration: none !important;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 68, 204, 0.6);
    color: var(--yellow) !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 13, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    padding: 28px 20px;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all .2s;
}

.mobile-menu a:hover {
    background: rgba(255, 214, 0, 0.07);
    color: var(--yellow);
}

.mobile-tracker {
    margin-top: 16px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #fff !important;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.05rem;
    display: block;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

/* ┌─────────────────────────────────────────────┐
   │  HERO                                       │
   └─────────────────────────────────────────────┘ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #080d1a 0%, #0a1530 50%, #0d1e42 100%);
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.4;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(8, 13, 26, 0.95) 45%, rgba(8, 13, 26, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 68, 204, 0.15);
    border: 1px solid rgba(0, 68, 204, 0.4);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: .5px;
}

.badge::before {
    content: '●';
    font-size: .5rem;
    animation: blink 2s infinite;
    color: var(--yellow);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--yellow);
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 50px;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(0, 68, 204, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 214, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 68, 204, 0.6);
    color: var(--yellow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: 50px;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 68, 204, 0.3);
    flex-wrap: wrap;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--yellow);
}

.hero-stat span {
    font-size: .82rem;
    color: var(--text-muted);
}

/* ┌─────────────────────────────────────────────┐
   │  SECTIONS                                   │
   └─────────────────────────────────────────────┘ */
section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.section-header h2 em {
    font-style: normal;
    color: var(--yellow);
}

.section-header p {
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 68, 204, 0.12);
    border: 1px solid rgba(0, 68, 204, 0.3);
    color: var(--yellow);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* ── Cards ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .25s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 214, 0, 0.3);
    box-shadow: var(--shadow-blue);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.card-icon.blue {
    background: rgba(0, 68, 204, 0.15);
}

.card-icon.yellow {
    background: rgba(255, 214, 0, 0.12);
}

.card-icon.red {
    background: rgba(227, 0, 15, 0.12);
}

.card-icon.green {
    background: rgba(34, 197, 94, 0.12);
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.12);
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.65;
}

/* Image section */
.img-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-blue);
}

.img-section img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── Steps ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 68, 204, 0.4);
}

.step-content h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ┌─────────────────────────────────────────────┐
   │  TABLES                                     │
   └─────────────────────────────────────────────┘ */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 500px;
}

caption {
    font-weight: 700;
    font-size: .95rem;
    color: var(--yellow);
    text-align: left;
    padding: 14px 20px 10px;
    background: var(--bg-card2);
    border-radius: var(--radius) var(--radius) 0 0;
}

thead tr {
    background: rgba(0, 68, 204, 0.1);
}

th {
    padding: 13px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--yellow);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text);
}

tbody tr:hover {
    background: rgba(0, 68, 204, 0.04);
}

tbody tr:last-child td {
    border-bottom: none;
}

.td-yellow {
    color: var(--yellow);
    font-weight: 700;
}

.td-green {
    color: #4ade80;
}

.td-blue {
    color: #60a5fa;
}

.td-red {
    color: #f87171;
}

.td-badge {
    background: rgba(0, 68, 204, 0.15);
    color: #93c5fd;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    display: inline-block;
}

.td-badge-yellow {
    background: rgba(255, 214, 0, 0.12);
    color: var(--yellow);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    display: inline-block;
}

/* ┌─────────────────────────────────────────────┐
   │  CHARTS                                     │
   └─────────────────────────────────────────────┘ */
.chart-bar-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border);
}

.chart-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 22px;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bar-label {
    min-width: 155px;
    font-size: .88rem;
    color: var(--text-muted);
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
    display: flex;
    align-items: center;
    padding-right: 12px;
    justify-content: flex-end;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    transition: width 1s ease;
}

.bar-fill.yellow {
    background: linear-gradient(90deg, #E6BF00, #FFD600);
    color: #000;
}

.bar-fill.green {
    background: linear-gradient(90deg, #10b981, #4ade80);
    color: #000;
}

.bar-fill.red {
    background: linear-gradient(90deg, #B8000C, #E3000F);
    color: #fff;
}

.bar-fill.purple {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: #fff;
}

/* Donut */
.donut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.donut-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid var(--border);
    text-align: center;
}

.donut-ring {
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-ring::after {
    content: '';
    position: absolute;
    width: 74px;
    height: 74px;
    background: var(--bg-card);
    border-radius: 50%;
}

.donut-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    position: relative;
    z-index: 2;
}

.donut-label {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Progress */
.progress-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}

.progress-name {
    font-size: .88rem;
    color: var(--text);
    font-weight: 500;
}

.progress-pct {
    font-size: .88rem;
    color: var(--yellow);
    font-weight: 700;
}

.progress-track {
    height: 7px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    gap: 16px;
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-arrow {
    color: var(--yellow);
    font-size: 1.1rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.75;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* ── SEO content ── */
.seo-content {
    background: var(--bg-card2);
    border-top: 1px solid var(--border);
    padding: 70px 0;
}

.seo-article h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 16px;
}

.seo-article h3 {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 700;
    margin: 22px 0 10px;
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.82;
}

.seo-article p strong {
    color: var(--text);
}

.text-link {
    color: var(--yellow);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--blue-bright);
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.related-link {
    background: rgba(0, 68, 204, 0.1);
    border: 1px solid rgba(0, 68, 204, 0.3);
    color: var(--yellow);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    transition: all .2s;
}

.related-link:hover {
    background: rgba(0, 68, 204, 0.2);
}

/* ── Bonus card ── */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}

.bonus-card {
    background: linear-gradient(135deg, #0d1830 0%, #0a1428 60%, #131e00 100%);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.12);
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--yellow);
    font-weight: 700;
}

.bonus-type {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.bonus-card h3 {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 18px;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #060e24 0%, #0d1e42 50%, #060e24 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    border: 1px solid rgba(0, 68, 204, 0.35);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 68, 204, 0.25) 0%, transparent 70%);
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.cta-banner h2 em {
    color: var(--yellow);
    font-style: normal;
}

.cta-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn-primary {
    font-size: 1.05rem;
    padding: 16px 44px;
    position: relative;
}

/* ── Highlight box ── */
.highlight-box {
    background: rgba(0, 68, 204, 0.08);
    border: 1px solid rgba(0, 68, 204, 0.25);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.highlight-box p {
    color: var(--text);
    margin: 0;
}

/* ┌─────────────────────────────────────────────┐
   │  FOOTER                                     │
   └─────────────────────────────────────────────┘ */
footer {
    background: linear-gradient(180deg, #050c1c 0%, #030810 100%);
    border-top: 1px solid rgba(0, 68, 204, 0.3);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 44px;
    margin-bottom: 44px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
    margin: 14px 0 18px;
}

.footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .86rem;
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p,
.footer-bottom span {
    color: var(--text-muted);
    font-size: .8rem;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 22px;
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.age-badge {
    background: rgba(227, 0, 15, 0.12);
    border: 1px solid rgba(227, 0, 15, 0.3);
    color: var(--red);
    font-weight: 700;
    font-size: .82rem;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
}

/* ┌─────────────────────────────────────────────┐
   │  BREADCRUMBS & PAGE HERO                    │
   └─────────────────────────────────────────────┘ */
.breadcrumbs {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: .83rem;
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color .2s;
}

.breadcrumbs a:hover {
    color: var(--yellow);
}

.breadcrumbs span {
    color: var(--text-muted);
}

.breadcrumbs strong {
    color: var(--yellow);
}

.page-hero {
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #080d1a 0%, #0d1830 60%, #101f40 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: radial-gradient(ellipse at 100% 50%, rgba(0, 68, 204, 0.18) 0%, transparent 70%);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.page-hero h1 em {
    color: var(--yellow);
    font-style: normal;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 26px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 4px;
}

.tab-btn {
    flex: 1;
    padding: 9px 14px;
    border: none;
    border-radius: 8px;
    background: none;
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 68, 204, 0.2), rgba(0, 68, 204, 0.15));
    color: var(--yellow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.feature-item {
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all .2s;
}

.feature-item:hover {
    border-color: rgba(255, 214, 0, 0.25);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text h4 {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: .83rem;
    line-height: 1.6;
}

/* Payments */
.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.payment-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: .88rem;
    color: var(--text);
    transition: all .2s;
}

.payment-badge:hover {
    border-color: rgba(255, 214, 0, 0.3);
    color: var(--yellow);
}

/* Grid utility */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    section {
        padding: 52px 0;
    }

    .hero {
        min-height: 100svh;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .cta-banner {
        padding: 38px 22px;
    }

    .cta-banner h2 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 38px 0 34px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .bar-label {
        min-width: 100px;
        font-size: .8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

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

.animate {
    animation: fadeInUp .5s ease forwards;
}

/* ── Utilities ── */
.text-yellow {
    color: var(--yellow);
}

.text-blue {
    color: var(--blue-bright);
}

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

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-8 {
    margin-top: 32px;
}

/* ┌─────────────────────────────────────────────┐
   │  AUTHOR BOX                                 │
   └─────────────────────────────────────────────┘ */
.author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 48px 0;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: none;
    flex-shrink: 0;
    border: 3px solid rgba(255, 214, 0, 0.3);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.author-info {
    flex: 1;
}

.author-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yellow);
    margin-bottom: 4px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.author-role {
    font-size: .82rem;
    color: var(--blue-bright);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.author-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-stat {
    font-size: .78rem;
    color: var(--text-muted);
}

.author-stat strong {
    color: var(--yellow);
    font-weight: 700;
}

@media (max-width: 600px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }
    .author-meta {
        justify-content: center;
    }
}