
/* ── Self-hosted Fonts ────────────────────────────────────── */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-v14-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/noto-sans-v36-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/noto-sans-v36-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/noto-sans-v36-latin-700.woff2') format('woff2');
}
/* =====================================================
   FIFA World Cup 2026 Ticket Platform
   FIFA-Inspired Design System - Clean & Premium
   ===================================================== */

/* ---- Google Fonts ---- */
/* Google Fonts removed - self-hosted */

/* ---- CSS Variables ---- */
:root {
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8941E;
    --gold-glow: rgba(212, 175, 55, 0.12);
    --gold-glow-strong: rgba(212, 175, 55, 0.25);
    --fifa-blue: #005391;
    --fifa-green: #3CAC3B;
    --dark-bg: #000000;
    --dark-surface: #0a0a0a;
    --dark-card: #111111;
    --dark-card-hover: #1a1a1a;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-hover: rgba(212, 175, 55, 0.35);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-dim: #666666;
    --green: #3CAC3B;
    --green-glow: rgba(60, 172, 59, 0.15);
    --red: #E61D25;
    --blue: #4D65FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 9999px;
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --transition: all 0.2s ease;
}

/* ---- Base ---- */
* { box-sizing: border-box; }

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: #000; }

/* ---- Utility Classes ---- */
.text-gold { color: var(--gold) !important; }
.text-green { color: var(--green) !important; }
.bg-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: #000 !important; }
.border-gold { border-color: var(--gold) !important; }
.bg-dark-surface { background-color: var(--dark-surface) !important; }
.bg-dark-card { background-color: var(--dark-card) !important; }

/* ---- Scroll Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.6rem 0;
    z-index: 1000;
}
.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--gold) !important;
}
.navbar-brand i {
    color: var(--gold);
}
.navbar .nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 0.875rem !important;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}
.dropdown-menu-dark {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.dropdown-item:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.65rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.btn-gold:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:active { transform: translateY(0); }

.btn-gold-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    border-radius: var(--radius-pill);
    background: transparent;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.55rem 1.75rem;
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* ---- Glass Cards ---- */
.wc-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
}
.wc-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ---- Match Card ---- */
.match-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.match-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.match-card .stage-badge {
    position: absolute;
    top: 0; right: 0;
    padding: 0.3rem 0.9rem;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
}
.stage-group { background: var(--fifa-blue); color: #fff; }
.stage-round32 { background: #0891b2; color: #fff; }
.stage-round16 { background: #6d28d9; color: #fff; }
.stage-quarter { background: #d97706; color: #000; }
.stage-semi { background: var(--red); color: #fff; }
.stage-third { background: #4b5563; color: #fff; }
.stage-final { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; }

.match-card .teams {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    margin: 0.75rem 0;
    line-height: 1.3;
}
.match-card .vs {
    color: var(--gold);
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    margin: 0 0.4rem;
    opacity: 0.7;
}
.match-card .match-info {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.match-card .match-info i {
    color: var(--gold);
    width: 18px;
    font-size: 0.72rem;
}
.match-card .price-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--green);
    letter-spacing: 0.5px;
}
.match-card .price-label {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* ---- Hero Section ---- */
.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/bg/hero-stadium.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 0;
}
.hero-section > .container {
    position: relative;
    z-index: 1;
}
.hero-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}
.hero-section h1 .text-gold {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}
.hero-section .lead {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ---- FIFA Partner Badges (Hero) ---- */
.fifa-partners-bar {
    position: relative;
    z-index: 1;
}
.partners-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.6);
    margin-bottom: 0.5rem;
}
.partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}
.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.partner-badge:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    text-decoration: none;
}
.partner-logo-img {
    height: 10px;
    width: auto;
    max-width: 24px;
    border-radius: 1px;
    background: #fff;
    padding: 1px 2px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .partners-label {
        font-size: 0.48rem;
        letter-spacing: 1.2px;
        text-align: center;
    }
    .partners-row {
        justify-content: center;
        gap: 0.25rem;
    }
    .partner-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.45rem;
    }
    .partner-logo-img {
        height: 8px;
        max-width: 20px;
    }
}

/* ---- Crypto Badges ---- */
.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.crypto-badge:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
}

/* ---- Stats ---- */
.stats-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    position: relative;
}
.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.stat-box::after {
    content: '';
    position: absolute;
    right: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: var(--dark-border);
}
.stat-box:last-child::after { display: none; }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.75rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
}
.stat-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ---- How It Works Steps ---- */
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}
.step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--gold);
    position: relative;
}
.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 0.6rem auto 0;
}
.section-header p {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0.75rem auto 0;
    font-size: 0.95rem;
}

/* ---- Trust Banner ---- */
.trust-banner {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}
.trust-item {
    text-align: center;
    padding: 1.25rem;
}
.trust-item i {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--gold);
}
.trust-item h6 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.trust-item p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ---- Featured Matches Section ---- */
.featured-section {
    position: relative;
}
.featured-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/bg/geo-pattern.svg') repeat;
    opacity: 0.5;
    pointer-events: none;
}

/* ---- CTA Section ---- */
.bg-mesh {
    position: relative;
    overflow: hidden;
}
.bg-mesh::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/bg/crowd-atmosphere.jpg') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}
.bg-mesh::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}
.bg-mesh > * {
    position: relative;
    z-index: 1;
}

/* ---- Forms ---- */
.form-control, .form-select {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background-color: var(--dark-surface);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 2px var(--gold-glow);
}
.form-control::placeholder { color: var(--text-dim); }
.form-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Filter Bar ---- */
.filter-bar {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
}

/* ---- Auth Cards ---- */
.auth-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 460px;
    margin: 3rem auto;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.auth-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.auth-card .subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ---- Checkout ---- */
.checkout-summary {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
}
.checkout-summary .line-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}
.checkout-summary .total-line {
    border-top: 2px solid var(--gold);
    padding-top: 0.875rem;
    margin-top: 0.5rem;
    font-size: 1.15rem;
    font-weight: 800;
}

/* ---- Footer ---- */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 3.5rem 0 1.5rem;
}
.footer a.text-muted:hover { color: var(--gold) !important; }

/* Footer Partner Logos */
.footer-partner-logo {
    height: 14px;
    width: auto;
    max-width: 40px;
    border-radius: 2px;
    background: #fff;
    padding: 2px 3px;
    object-fit: contain;
    transition: opacity 0.2s ease;
    opacity: 0.6;
}
.footer-partner-logo:hover {
    opacity: 1;
}
@media (max-width: 576px) {
    .footer-partner-logo {
        height: 12px;
        max-width: 34px;
    }
}

/* ---- Tables (Dark theme) ---- */
.table-dark {
    --bs-table-bg: var(--dark-card);
    --bs-table-border-color: var(--dark-border);
}
.table-dark thead {
    background: var(--dark-surface) !important;
}
.table-dark th {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim) !important;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--dark-border) !important;
}
.table-dark td {
    padding: 0.875rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
}
.table-dark tbody tr:hover {
    background: rgba(212, 175, 55, 0.03) !important;
}

/* ---- Badges ---- */
.badge { font-weight: 700; letter-spacing: 0.3px; }
.badge-available { background: var(--green); color: #fff; }
.badge-sold { background: var(--red); color: #fff; }
.badge-reserved { background: #d97706; color: #000; }

/* ---- Alerts ---- */
.alert {
    border-radius: var(--radius-md);
    border: none;
    font-size: 0.9rem;
}

/* ---- Pagination ---- */
.pagination .page-link {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    border-radius: var(--radius-pill) !important;
    margin: 0 3px;
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}
.pagination .page-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}
.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 800;
}
.pagination .page-item.disabled .page-link {
    background: var(--dark-surface);
    border-color: var(--dark-border);
    color: var(--text-dim);
}

/* ---- Accordion (FAQ) ---- */
.accordion-button {
    font-weight: 700;
    font-size: 0.92rem;
    padding: 1rem 1.25rem;
    color: #fff !important;
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
}
.accordion-button::after {
    filter: invert(1) brightness(2);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(15deg);
}
.accordion-button:focus {
    box-shadow: 0 0 0 2px var(--gold-glow) !important;
}
.accordion-body {
    color: #c5cdd8 !important;
    background: var(--dark-surface) !important;
    border: 1px solid var(--dark-border) !important;
    border-top: none !important;
}
.accordion-item { border: none !important; background: transparent !important; }

/* ---- City Cards ---- */
.city-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}
.city-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-2px);
}
.city-card .city-flag {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}
.city-card .city-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}
.city-card .city-venue {
    font-size: 0.62rem;
    color: var(--text-dim);
    margin-top: 2px;
}

/* ---- Global Sellers by Country ---- */
.seller-country-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 0.6rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.seller-country-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-2px);
}
.seller-country-card .scc-flag {
    font-size: 2rem;
    line-height: 1;
}
.seller-country-card .scc-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.15rem;
}
.seller-country-card .scc-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.5px;
}
.seller-country-card .scc-label {
    font-size: 0.52rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sellers-total-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@media (max-width: 767.98px) {
    .seller-country-card { padding: 0.8rem 0.4rem; }
    .seller-country-card .scc-flag { font-size: 1.6rem; }
    .seller-country-card .scc-name { font-size: 0.62rem; }
    .seller-country-card .scc-count { font-size: 1rem; }
    .seller-country-card .scc-label { font-size: 0.45rem; }
}

/* ---- Countdown Timer ---- */
.countdown-box {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* ---- Glassmorphism Panel ---- */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ---- Gradient Dividers ---- */
.divider-gradient {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
    border: none;
    margin: 2rem 0;
}

/* ---- Loading Skeleton ---- */
.skeleton {
    background: linear-gradient(90deg, var(--dark-card) 25%, var(--dark-card-hover) 50%, var(--dark-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

/* ---- Text Visibility Fixes (Dark Theme) ---- */
.text-muted { color: #888 !important; }
.form-text { color: #777 !important; }
.small, small { color: inherit; }

/* Form select dropdown */
.form-select option {
    background-color: #111;
    color: #fff;
}
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
}

/* Form check inputs */
.form-check-input {
    background-color: var(--dark-surface);
    border-color: var(--dark-border);
}
.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}
.form-check-label {
    color: #c5cdd8;
}

/* Breadcrumb dark */
.breadcrumb-item a { color: #888 !important; }
.breadcrumb-item a:hover { color: var(--gold) !important; }
.breadcrumb-item.active { color: var(--gold) !important; }
.breadcrumb-item + .breadcrumb-item::before { color: #555 !important; }

/* Alert text */
.alert-success { background: rgba(60, 172, 59, 0.1); color: #6ee7b7 !important; border: 1px solid rgba(60, 172, 59, 0.2); }
.alert-danger { background: rgba(230, 29, 37, 0.1); color: #fca5a5 !important; border: 1px solid rgba(230, 29, 37, 0.2); }
.alert-warning { background: rgba(212, 175, 55, 0.1); color: #fcd34d !important; border: 1px solid rgba(212, 175, 55, 0.2); }
.alert-info { background: rgba(77, 101, 255, 0.1); color: #93c5fd !important; border: 1px solid rgba(77, 101, 255, 0.2); }

/* List items */
ul li, ol li { color: #c5cdd8; }
p { color: #c5cdd8; }
h1, h2, h3, h4, h5, h6 { color: #fff; }

/* ---- World Cup 2026 Animated Top Banner ---- */
.wc-animated-banner {
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    padding: 6px 0;
    position: relative;
    overflow: hidden;
    z-index: 1050;
}

.wc-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.wc-football-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wc-football-icon svg {
    width: 100%;
    height: 100%;
}

.wc-banner-text {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.wc-banner-flags {
    display: flex;
    gap: 4px;
    align-items: center;
}
.wc-mini-flag {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.wc-flag-us {
    background: linear-gradient(180deg,
        #bf0a30 0%, #bf0a30 15%,
        #fff 15%, #fff 23%,
        #bf0a30 23%, #bf0a30 38%,
        #fff 38%, #fff 46%,
        #bf0a30 46%, #bf0a30 62%,
        #fff 62%, #fff 69%,
        #bf0a30 69%, #bf0a30 85%,
        #fff 85%, #fff 100%);
    position: relative;
}
.wc-flag-us::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%;
    height: 54%;
    background: #002868;
}
.wc-flag-mx {
    background: linear-gradient(90deg, #006847 33%, #fff 33%, #fff 66%, #ce1126 66%);
}
.wc-flag-ca {
    background: linear-gradient(90deg, #ff0000 25%, #fff 25%, #fff 75%, #ff0000 75%);
}

/* ---- Thin Accent Line (replaces confetti) ---- */
.wc-confetti-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--fifa-blue), var(--fifa-green), var(--gold));
    position: relative;
    z-index: 1050;
}
.wc-confetti-bar span { display: none; }

/* ---- World Cup Footer Banner ---- */
.wc-footer-banner {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.wc-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.wc-trophy-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}
.wc-trophy-icon i {
    font-size: 1rem;
    color: var(--gold);
}

.wc-footer-info {
    text-align: center;
}
.wc-footer-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
    color: var(--gold) !important;
    -webkit-text-fill-color: var(--gold);
}
.wc-footer-info .wc-subtitle {
    color: var(--text-secondary) !important;
    font-size: 0.7rem;
    margin: 0.15rem 0 0;
    font-weight: 500;
}

.wc-flag-parade {
    display: flex;
    gap: 5px;
    align-items: center;
}
.wc-flag-parade .wc-mini-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Hide particles (removed) */
.wc-particles { display: none; }

/* Hide floating footballs (removed) */
.wc-floating-balls { display: none; }

/* ---- Countdown Box (Hero) ---- */
.countdown-box .d-flex .text-center h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* ---- Live Widget ---- */
@keyframes lw-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}
@keyframes lw-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Ticket Counter Float ---- */
@keyframes tcfSlideIn {
    from { transform: translateX(60px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes tcfBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
@keyframes tcfPulseRing {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.06); opacity: 0.15; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-section { padding: 4rem 0 3rem; }
    .hero-section h1 { font-size: 3rem; }
    .stat-number { font-size: 2rem; }
    .checkout-summary { position: static !important; }
}

@media (max-width: 768px) {
    .hero-section { padding: 3rem 0 2rem; }
    .hero-section h1 { font-size: 2.5rem; letter-spacing: 1px; }
    .hero-section .lead { font-size: 0.92rem; }
    .section-header h2 { font-size: 2rem; }
    .section-header { margin-bottom: 2rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.58rem; letter-spacing: 1.5px; }
    .match-card { padding: 1.25rem; }
    .match-card .teams { font-size: 1.1rem; }
    .match-card .price-tag { font-size: 1.3rem; }
    .trust-banner { padding: 1.5rem; border-radius: var(--radius-md); }
    .trust-item { padding: 0.75rem 0.5rem; }
    .trust-item i { font-size: 1.75rem; margin-bottom: 0.5rem; }
    .trust-item h6 { font-size: 0.78rem; }
    .trust-item p { font-size: 0.68rem; }
    .auth-card { margin: 1.5rem; padding: 2rem; }
    .filter-bar { padding: 1rem; }
    .table-responsive { -webkit-overflow-scrolling: touch; }
    .table-dark th, .table-dark td { white-space: nowrap; padding: 0.65rem 0.75rem; font-size: 0.8rem; }
    .footer .col-lg-4 { margin-bottom: 1rem; }
    .step-card { padding: 1.5rem 1rem; }
    .step-icon { width: 52px; height: 52px; font-size: 1.2rem; }
    .btn-gold, .btn-gold-outline { padding: 0.6rem 1.25rem; font-size: 0.78rem; }
    .btn-lg { padding: 0.7rem 1.5rem !important; font-size: 0.88rem !important; }
    .wc-banner-content { gap: 6px; font-size: 0.65rem; }
    .wc-banner-text { font-size: 0.6rem; letter-spacing: 1.5px; }
    .wc-football-icon { width: 12px; height: 12px; }
    .wc-mini-flag { width: 16px; height: 11px; }
    .wc-footer-content { gap: 0.75rem; }
    .wc-footer-info h3 { font-size: 0.95rem; }
    .wc-footer-info .wc-subtitle { font-size: 0.62rem; }
    .wc-trophy-icon { width: 34px; height: 34px; }
    .wc-trophy-icon i { font-size: 0.9rem; }
}

@media (max-width: 576px) {
    .hero-section h1 { font-size: 2rem; }
    .hero-section .lead { font-size: 0.85rem; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 0.85rem; }
    .stat-box { padding: 1rem 0.5rem; }
    .stat-box::after { display: none; }
    .stat-number { font-size: 1.5rem; }
    .filter-bar .form-label { font-size: 0.7rem; margin-bottom: 0.25rem; }
    .filter-bar .form-select { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
    .match-card .stage-badge { font-size: 0.55rem; padding: 0.2rem 0.55rem; }
    .match-card .match-info { font-size: 0.72rem; line-height: 1.7; }
    .match-card .price-tag { font-size: 1.1rem; }
    .checkout-summary { border-radius: var(--radius-md); padding: 1.25rem; }
    .checkout-summary .line-item { font-size: 0.8rem; padding: 0.5rem 0; }
    .checkout-summary .total-line { font-size: 1rem; }
    .auth-card { margin: 1rem; padding: 1.5rem; border-radius: var(--radius-md); }
    .auth-card h2 { font-size: 1.6rem; }
    .city-card { padding: 0.75rem; }
    .city-card .city-flag { font-size: 1.2rem; }
    .city-card .city-name { font-size: 0.72rem; }
    .city-card .city-venue { font-size: 0.58rem; }
    .navbar-brand { font-size: 1.1rem; }
    .navbar .nav-link { font-size: 0.8rem; padding: 0.5rem 0.75rem !important; }
    .accordion-button { font-size: 0.82rem; padding: 0.85rem 1rem; }
    .accordion-body { font-size: 0.8rem; padding: 0.85rem 1rem; }
    .wc-banner-flags { display: none; }
    .wc-football-icon { width: 11px; height: 11px; }
    .wc-banner-text { font-size: 0.55rem; letter-spacing: 0.8px; }
    .footer { padding: 2rem 0 1rem; }
    .breadcrumb { font-size: 0.75rem; }
    .form-control, .form-select { font-size: 0.85rem; padding: 0.6rem 0.85rem; }
    .form-label { font-size: 0.72rem; }
    .bg-mesh h2 { font-size: 1.5rem !important; }
}

/* ---- Touch-friendly ---- */
@media (pointer: coarse) {
    .btn { min-height: 44px; }
    .form-check-input { width: 1.25em; height: 1.25em; }
    .nav-link { min-height: 44px; display: flex; align-items: center; }
    .page-link { min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
}


/* ── Payment Method Badges ────────────────────────────── */
.footer-payment-badge {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
}
.footer-payment-badge:hover {
    border-color: var(--gold);
    color: #fff;
    background: rgba(212,175,55,0.05);
}
.payment-logos-hero .badge {
    transition: all 0.2s;
}
.payment-logos-hero .badge:hover {
    border-color: var(--gold) !important;
    background: rgba(212,175,55,0.1) !important;
}
.payment-methods-bar .partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.match-payment-badge {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
}

/* Guarantee badge button */
.btn-outline-gold {
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.4);
    background: transparent;
    transition: all 0.2s;
}
.btn-outline-gold:hover {
    color: #000;
    background: var(--gold);
    border-color: var(--gold);
}


/* ── Mobile Optimizations ────────────────────────────────── */
/* Prevent iOS zoom on inputs */
input, select, textarea { font-size: 16px !important; }
@media (min-width: 768px) {
    input, select, textarea { font-size: inherit !important; }
}

/* Touch targets */
.btn { min-height: 44px; }

/* Responsive hero on mobile */
@media (max-width: 576px) {
    .hero-section { padding: 2rem 0 !important; }
    .hero-section h1 { font-size: 1.8rem !important; }
    .hero-section .lead { font-size: 0.9rem !important; }
}
