/* ========== PREMIUM V10 — Stream2watch (2026 Design System) ========== */
/* Resaved: 2026-02-13 force update */

:root {
    /* --- Modern HSL Color Palette --- */
    /* Backgrounds - Deep Slate/Navy Blue base instead of flat black */
    --bg-primary-h: 220;
    --bg-primary-s: 30%;
    --bg-primary-l: 6%;
    --bg-primary: hsl(var(--bg-primary-h), var(--bg-primary-s), var(--bg-primary-l));

    --bg-elevated-h: 220;
    --bg-elevated-s: 25%;
    --bg-elevated-l: 10%;
    --bg-elevated: hsl(var(--bg-elevated-h), var(--bg-elevated-s), var(--bg-elevated-l));

    --bg-card-h: 220;
    --bg-card-s: 25%;
    --bg-card-l: 13%;
    --bg-card: hsl(var(--bg-card-h), var(--bg-card-s), var(--bg-card-l));

    /* Accents - Electric Blue & Live Red */
    --accent-h: 217;
    --accent-s: 91%;
    --accent-l: 60%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-hover: hsl(var(--accent-h), var(--accent-s), 50%);
    --accent-glow: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.25);

    --danger-h: 0;
    --danger-s: 84%;
    --danger-l: 60%;
    --danger: hsl(var(--danger-h), var(--danger-s), var(--danger-l));
    --danger-glow: hsla(var(--danger-h), var(--danger-s), var(--danger-l), 0.25);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --text-muted: #475569;

    /* Borders */
    --border-color: hsla(220, 20%, 90%, 0.08);
    --border-hover: hsla(220, 20%, 90%, 0.15);
    --border-subtle: var(--border-color);
    /* Alias for compatibility */
    --border-medium: var(--border-color);
    /* Alias for compatibility */

    /* Spacing System (Mobile First) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Shadows (Smoother, layered) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px var(--accent-glow);

    /* Animation */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index */
    --z-sticky: 1000;
    --z-dropdown: 1001;
    --z-modal: 2000;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 0%, hsla(220, 30%, 20%, 0.4) 0%, transparent 70%);
    /* Subtle top glow */
    background-attachment: fixed;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease-out);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ========== COMPONENT: TOPBAR ========== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    background: rgba(10, 14, 20, 0.85);
    /* Translucent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}

.topbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

/* Navigation Pucks/Tabs */
.sport-tabs {
    display: none;
    /* Hidden on mobile by default */
    gap: var(--space-xs);
    align-items: center;
    margin-left: var(--space-xl);
    flex: 1;
}

@media (min-width: 1024px) {
    .sport-tabs {
        display: flex;
    }
}

.sport-tab {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    border-radius: var(--radius-pill);
    /* Pill shape for modern feel */
    transition: all 0.25s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.sport-tab:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 1px var(--border-color);
}

.sport-tab.active {
    color: #fff;
    background: var(--accent);
    box-shadow: var(--shadow-glow);
}

/* Dropdown */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 16px;
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle:hover {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.2s var(--ease-out);
    margin-top: 12px;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.dropdown-menu a i {
    color: var(--text-tertiary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Topbar Actions */
.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.tz-sel {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.tz-sel:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.hamburger:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Nav (Slide Over) */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--bg-primary);
    padding: var(--space-lg);
    z-index: 999;
    overflow-y: auto;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
    transform: translateX(100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-section h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    padding-left: 12px;
    font-weight: 800;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.mobile-nav a i {
    font-size: 24px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.mobile-nav a:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.mobile-nav a:hover i {
    color: var(--accent);
}

/* ========== COMPONENT: HERO & SEARCH ========== */
.search-container {
    padding: 40px 0 60px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.search-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.main-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-out);
}

.main-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow-lg);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--text-tertiary);
    font-size: 20px;
    pointer-events: none;
}

.main-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 18px 18px 56px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    border-radius: var(--radius-pill);
}

.main-search-input:focus {
    outline: none;
}

.main-search-input::placeholder {
    color: var(--text-tertiary);
}

.main-search-btn {
    margin: 6px;
    padding: 0 28px;
    height: 48px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.main-search-btn:hover {
    background: var(--accent-hover);
}

.main-search-btn:active {
    transform: scale(0.96);
}

/* ========== LAYOUT GRID ========== */
.layout {
    max-width: 1440px;
    margin: -30px auto 0;
    /* Overlap search glow */
    padding: 0 var(--space-lg) 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .layout {
        grid-template-columns: 1fr 340px;
    }
}

/* ========== HERO INTRO ========== */
.hero-intro {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
}

/* Accent top border */
.hero-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-intro h1 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== LIVE BANNER ========== */
.live-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-lg);
}

.live-banner-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--danger);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.live-banner-text {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--danger);
}

.live-banner-count {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

/* ========== LEAGUE GROUPS & CARDS ========== */
.league-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.league-group:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.league-header {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.league-header:hover {
    background: rgba(255, 255, 255, 0.04);
}

.league-badge {
    width: 4px;
    height: 20px;
    border-radius: var(--radius-pill);
}

.league-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    flex: 1;
}

.league-count {
    background: var(--bg-primary);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
}

/* ========== EVENT ROWS (Grid System) ========== */
.event-row {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 80px 1fr;
    /* Mobile fallback */
    row-gap: 16px;
    column-gap: 16px;
    align-items: center;
    cursor: default;
    transition: background 0.2s;
}

@media (min-width: 768px) {
    .event-row {
        grid-template-columns: 90px 4fr 3fr auto;
        /* Desktop grid */
        row-gap: 0;
    }
}

.event-row:last-child {
    border-bottom: none;
}

.event-row:hover {
    background: var(--bg-hover);
}

.event-row.is-live {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--danger);
}

/* Time Column */
.ev-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hour {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.hour+small {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* Teams Column */
.ev-teams {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ev-team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
}

.ev-initial {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Icons Column */
.ev-stream-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Live badge override */
.ev-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    width: fit-content;
}

.ev-live-dot {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
}

.stream-icon {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-tertiary);
    transition: all 0.2s;
    line-height: normal;
}

.stream-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
}

/* Watch Button */
.ev-watch-btn {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    width: 100%;
}

@media (min-width: 768px) {
    .ev-watch-btn {
        width: auto;
    }
}

.ev-watch-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

/* ========== SIDEBAR ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.side-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.side-card-header i {
    color: var(--accent);
    font-size: 18px;
}

/* Sport List (Sidebar) */
.sport-list {
    padding: 8px 0;
}

.sport-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    transition: background 0.2s;
}

.sport-list a:last-child {
    border-bottom: none;
}

.sport-list a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    padding-left: 24px;
    /* Slide effect */
}

.sport-list a i:first-child {
    width: 24px;
    color: var(--text-tertiary);
    font-size: 18px;
}

.s-label {
    flex: 1;
    margin-left: 10px;
    font-weight: 500;
}

.s-arrow {
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
}

.sport-list a:hover .s-arrow {
    opacity: 1;
}

/* Pricing Rows */
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    color: var(--text-secondary);
}

.price-val {
    font-weight: 700;
    color: var(--text-primary);
    font-family: monospace;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-weight: 300;
    font-size: 18px;
    color: var(--text-tertiary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-elevated);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
}

.footer-copy {
    display: block;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    font-size: 13px;
    color: var(--text-tertiary);
    width: 100%;
}

/* ========== SEO CONTENT (Styled for reading) ========== */
.seo-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
}

.seo-content h2 {
    margin-bottom: 24px;
    font-size: 28px;
}

.seo-section {
    margin-bottom: 32px;
}

.seo-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.seo-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
}

.seo-section ul {
    padding-left: 20px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.seo-section li {
    margin-bottom: 8px;
}

.seo-section strong {
    color: var(--text-primary);
}

/* ========== LEAGUE FILTER (Client-Side) ========== */
.league-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    /* For scrollbar space */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
    -webkit-overflow-scrolling: touch;
}

.league-filter::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    user-select: none;
    flex-shrink: 0;
}

.filter-chip i {
    font-size: 16px;
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.filter-chip:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.filter-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.filter-chip.active i {
    color: white;
}

/* ========== LEAGUE FILTER DROPDOWN ========== */
.league-filter-dropdown {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.filter-label i {
    font-size: 18px;
    color: var(--accent);
}

.league-select {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
    padding: 10px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

.league-select:hover {
    border-color: var(--accent);
    background-color: var(--bg-elevated);
}

.league-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.league-select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
    padding: 10px;
}

@media (max-width: 768px) {
    .league-filter-dropdown {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .league-select {
        max-width: 100%;
    }
}

/* ========== SIDEBAR ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (max-width: 1023px) {
    .sidebar {
        display: none;
    }
}

.side-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.side-card:hover {
    border-color: var(--border-hover);
}

.side-card-header {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-card-header i {
    font-size: 18px;
    color: var(--accent);
}

/* Sport List in Sidebar */
.sport-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sport-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.2s;
    border: 1px solid transparent;
}

.sport-list a i {
    font-size: 20px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.sport-list a .s-label {
    flex: 1;
}

.sport-list a .s-arrow {
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.sport-list a:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.sport-list a:hover i {
    color: var(--accent);
}

.sport-list a:hover .s-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Price Rows */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.price-val {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 15px;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s, background 0.2s;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-tertiary);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

.faq-answer {
    padding: 0 20px 16px 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-tertiary);
}

/* Trust Card Body */
.trust-card-body {
    padding: 20px;
}

.trust-card-body p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.trust-card-body p:last-child {
    margin-bottom: 0;
}

.trust-card-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.trust-card-body i {
    margin-right: 6px;
}