/* roulang page: index */
:root {
            --deep-blue: #0B1A2E;
            --card-bg: #121C2E;
            --grass-green: #3CB371;
            --gold: #F0C040;
            --lava-orange: #FF6B4A;
            --surface-glass: rgba(18, 28, 46, 0.75);
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-mid: rgba(255, 255, 255, 0.2);
            --text-primary: #FFFFFF;
            --text-secondary: #B0BEC5;
            --text-muted: #78909C;
            --footer-bg: #060F1A;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-gold-hover: 0 0 30px rgba(240, 192, 64, 0.55);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            background-color: var(--deep-blue);
            color: var(--text-primary);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
            border-radius: 4px;
        }
        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        .container-main {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .glass-card {
            background: var(--surface-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }
        .glass-card-sm {
            background: var(--surface-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
            transition: all var(--transition-smooth);
        }
        .glass-card-sm:hover {
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #F0C040 0%, #D4A830 100%);
            color: #1a1a1a;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-smooth);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
            color: #1a1a1a;
            background: linear-gradient(135deg, #F5C850 0%, #DDB840 100%);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 0 12px rgba(240, 192, 64, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 11px 27px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-mid);
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.55);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            transform: translateY(-1px);
        }
        .btn-secondary:active {
            transform: translateY(0);
        }

        .btn-sm {
            font-size: 13px;
            padding: 7px 16px;
            font-weight: 500;
            border-radius: 4px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 107, 74, 0.2);
            color: var(--lava-orange);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.05em;
            border: 1px solid rgba(255, 107, 74, 0.35);
        }
        .badge-live::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--lava-orange);
            animation: pulse-live 1.4s infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.8);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 107, 74, 0);
            }
        }

        .badge-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 9px;
            border-radius: 3px;
            letter-spacing: 0.04em;
        }
        .badge-new {
            background: rgba(255, 107, 74, 0.2);
            color: var(--lava-orange);
        }
        .badge-hot {
            background: rgba(255, 107, 74, 0.3);
            color: #FF8A6A;
        }
        .badge-recommend {
            background: rgba(240, 192, 64, 0.2);
            color: var(--gold);
        }

        .score-number {
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .divider-subtle {
            height: 1px;
            background: var(--border-subtle);
            border: none;
            margin: 0;
        }

        .section-spacing {
            margin-top: 80px;
            margin-bottom: 80px;
        }
        .section-spacing-sm {
            margin-top: 48px;
            margin-bottom: 48px;
        }

        .nav-blur {
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .hero-grid-bg {
            background-color: var(--deep-blue);
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            position: relative;
        }
        .hero-grid-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(240, 192, 64, 0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.03em;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            letter-spacing: 0.02em;
        }

        .footer-link {
            color: var(--text-muted);
            font-size: 14px;
            transition: color var(--transition-fast);
            line-height: 2;
        }
        .footer-link:hover {
            color: #fff;
        }

        @media (max-width: 1024px) {
            .container-main {
                padding: 0 20px;
            }
            .section-spacing {
                margin-top: 60px;
                margin-bottom: 60px;
            }
            .section-title {
                font-size: 24px;
            }
        }
        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
            .section-spacing {
                margin-top: 48px;
                margin-bottom: 48px;
            }
            .section-title {
                font-size: 22px;
            }
            .section-subtitle {
                font-size: 14px;
                margin-bottom: 28px;
            }
            .btn-primary,
            .btn-secondary {
                font-size: 14px;
                padding: 10px 20px;
            }
        }
        @media (max-width: 520px) {
            .container-main {
                padding: 0 12px;
            }
            .section-spacing {
                margin-top: 36px;
                margin-bottom: 36px;
            }
            .section-title {
                font-size: 20px;
            }
            .btn-primary,
            .btn-secondary {
                font-size: 13px;
                padding: 9px 16px;
            }
        }

        .mobile-menu-open {
            overflow: hidden;
        }

/* roulang page: category2 */
:root {
            --deep-blue: #0B1A2E;
            --card-bg: #121C2E;
            --glass-border: rgba(255, 255, 255, 0.08);
            --gold: #F0C040;
            --green-grass: #3CB371;
            --lava: #FF6B4A;
            --text-primary: #FFFFFF;
            --text-secondary: #C8D0D8;
            --text-muted: #8A94A3;
            --footer-bg: #060F1A;
            --la-liga-warm: #6B2A1E;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-glow: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-glow-lg: 0 0 30px rgba(240, 192, 64, 0.5);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            background-color: var(--deep-blue);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
        }

        .container-main {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* 导航栏 */
        .nav-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .nav-logo i {
            color: var(--gold);
            font-size: 1.4rem;
        }

        .nav-logo span {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            white-space: nowrap;
        }

        .nav-links-desktop {
            display: flex;
            align-items: center;
            gap: 2px;
            flex-wrap: nowrap;
        }

        .nav-links-desktop a {
            padding: 8px 12px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color var(--transition-fast), background var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-links-desktop a.nav-active {
            color: var(--gold);
            border-bottom: 2px solid var(--gold);
            border-radius: 0;
            background: transparent;
            padding-bottom: 6px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search {
            position: relative;
        }

        .nav-search input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            padding: 8px 14px 8px 36px;
            border-radius: 20px;
            font-size: 0.85rem;
            width: 190px;
            transition: all var(--transition-smooth);
            outline: none;
        }

        .nav-search input::placeholder {
            color: var(--text-muted);
        }
        .nav-search input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 12px rgba(240, 192, 64, 0.2);
            width: 220px;
        }
        .nav-search i {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 0.8rem;
            pointer-events: none;
        }

        .btn-cta-nav {
            background: var(--gold);
            color: #0B1A2E;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 18px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 14px rgba(240, 192, 64, 0.3);
        }
        .btn-cta-nav:hover {
            box-shadow: 0 0 24px rgba(240, 192, 64, 0.5);
            transform: translateY(-1px);
        }

        /* 移动端汉堡菜单 */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 26, 46, 0.97);
            backdrop-filter: blur(16px);
            z-index: 999;
            flex-direction: column;
            padding: 20px;
            gap: 4px;
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            display: block;
            padding: 14px 16px;
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all var(--transition-fast);
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.nav-active {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .mobile-nav-panel a.nav-active {
            color: var(--gold);
            border-left: 3px solid var(--gold);
        }

        @media (max-width: 1024px) {
            .nav-links-desktop {
                display: none;
            }
            .nav-search {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .btn-cta-nav {
                font-size: 0.8rem;
                padding: 7px 14px;
            }
        }

        @media (max-width: 520px) {
            .nav-logo span {
                font-size: 0.95rem;
            }
            .btn-cta-nav {
                font-size: 0.75rem;
                padding: 6px 12px;
            }
            .nav-inner {
                height: 52px;
                padding: 0 12px;
            }
        }

        /* Hero - 西甲深红棕色调 */
        .hero-la-liga {
            position: relative;
            background: linear-gradient(160deg, #1A0D0B 0%, #2B1610 25%, #1A2030 60%, #0B1A2E 100%);
            overflow: hidden;
            padding: 60px 0 64px;
        }
        .hero-la-liga::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-la-liga::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -15%;
            width: 60%;
            height: 140%;
            background: radial-gradient(ellipse, rgba(180, 60, 30, 0.18) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }
        .hero-la-liga .container-main {
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(240, 192, 64, 0.12);
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid rgba(240, 192, 64, 0.25);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 14px 0;
            letter-spacing: -0.5px;
        }
        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0 0 24px 0;
            max-width: 500px;
        }
        .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--gold);
            color: #0B1A2E;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 26px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow);
            white-space: nowrap;
        }
        .btn-primary:hover {
            box-shadow: var(--shadow-glow-lg);
            transform: translateY(-2px);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: #fff;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 12px 26px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: all var(--transition-smooth);
            white-space: nowrap;
        }
        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.04);
        }

        .hero-card-feature {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            text-align: center;
        }
        .hero-card-feature .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
        }
        .hero-card-feature .team-block {
            text-align: center;
        }
        .hero-card-feature .team-crest {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #fff;
        }
        .hero-card-feature .team-name {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .hero-card-feature .score-display {
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 2px;
        }
        .hero-card-feature .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 107, 74, 0.2);
            color: var(--lava);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.55;
            }
        }
        .hero-card-feature .match-info {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-la-liga {
                padding: 36px 0 40px;
            }
            .hero-card-feature .score-display {
                font-size: 2.2rem;
            }
        }

        /* 通用板块 */
        .section-block {
            padding: 56px 0;
        }
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 6px 0;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0 0 32px 0;
        }

        /* 玻璃拟态卡片 */
        .glass-card {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
        }

        /* 积分榜表格 */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            min-width: 700px;
        }
        .standings-table th {
            text-align: left;
            padding: 12px 10px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }
        .standings-table td {
            padding: 11px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .standings-table .rank-col {
            font-weight: 700;
            color: #fff;
            width: 40px;
        }
        .standings-table .team-col {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #fff;
        }
        .standings-table .team-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            color: #fff;
        }
        .standings-table .pts-col {
            font-weight: 700;
            color: var(--gold);
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-size: 1rem;
        }
        .standings-table tr.top-row td {
            background: rgba(240, 192, 64, 0.06);
        }
        .standings-table tr.top-row .pts-col {
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .standings-table {
                font-size: 0.78rem;
                min-width: 600px;
            }
            .standings-table th,
            .standings-table td {
                padding: 8px 6px;
            }
        }

        /* 赛程卡片网格 */
        .fixture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 16px;
        }
        .fixture-card {
            background: rgba(18, 28, 46, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-sm);
            padding: 16px 14px;
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .fixture-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-1px);
        }
        .fixture-time {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 44px;
            text-align: center;
        }
        .fixture-teams {
            flex: 1;
            font-size: 0.85rem;
            color: #fff;
            font-weight: 500;
            line-height: 1.4;
        }
        .fixture-score {
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-weight: 700;
            color: var(--gold);
            font-size: 0.95rem;
            min-width: 36px;
            text-align: center;
        }
        .fixture-status {
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
            white-space: nowrap;
        }
        .fixture-status.live {
            background: rgba(255, 107, 74, 0.2);
            color: var(--lava);
            animation: pulse-badge 2s infinite;
        }
        .fixture-status.upcoming {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
        }
        .fixture-status.finished {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
        }

        @media (max-width: 520px) {
            .fixture-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 射手榜卡片 */
        .scorer-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 14px;
        }
        .scorer-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(18, 28, 46, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            transition: all var(--transition-smooth);
        }
        .scorer-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }
        .scorer-rank {
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--gold);
            min-width: 32px;
            text-align: center;
        }
        .scorer-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #fff;
        }
        .scorer-info {
            flex: 1;
        }
        .scorer-name {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
        }
        .scorer-team {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .scorer-goals {
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-weight: 700;
            color: var(--green-grass);
            font-size: 1.1rem;
        }

        /* 资讯列表 */
        .news-list-la-liga {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .news-item-la-liga {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: rgba(18, 28, 46, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-sm);
            padding: 16px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .news-item-la-liga:hover {
            border-color: rgba(255, 255, 255, 0.14);
            background: rgba(18, 28, 46, 0.8);
        }
        .news-thumb-la-liga {
            width: 120px;
            height: 80px;
            border-radius: 6px;
            flex-shrink: 0;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
        }
        .news-thumb-la-liga img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .news-content-la-liga {
            flex: 1;
            min-width: 0;
        }
        .news-date-la-liga {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .news-title-la-liga {
            font-weight: 600;
            color: #fff;
            font-size: 0.95rem;
            margin: 0 0 6px 0;
            line-height: 1.4;
        }
        .news-summary-la-liga {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .badge-tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 3px;
            margin-left: 6px;
            vertical-align: middle;
        }
        .badge-new {
            background: var(--lava);
            color: #fff;
        }
        .badge-hot {
            background: #E8384F;
            color: #fff;
        }

        @media (max-width: 640px) {
            .news-item-la-liga {
                flex-direction: column;
                gap: 10px;
            }
            .news-thumb-la-liga {
                width: 100%;
                height: 160px;
            }
        }

        /* 视频集锦卡片 */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
        }
        .video-card {
            background: rgba(18, 28, 46, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .video-card:hover {
            border-color: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
        }
        .video-thumb {
            width: 100%;
            height: 170px;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
        }
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-play-icon {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            opacity: 0;
            transition: opacity var(--transition-smooth);
        }
        .video-card:hover .video-play-icon {
            opacity: 1;
        }
        .video-play-icon i {
            font-size: 2.5rem;
            color: #fff;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
        }
        .video-info {
            padding: 14px;
        }
        .video-title {
            font-weight: 600;
            color: #fff;
            font-size: 0.9rem;
            margin: 0 0 6px 0;
            line-height: 1.4;
        }
        .video-duration {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* 数据统计卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .stat-card {
            background: rgba(18, 28, 46, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-sm);
            padding: 20px 16px;
            text-align: center;
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: rgba(255, 255, 255, 0.14);
        }
        .stat-value {
            font-family: 'Roboto Mono', 'SF Mono', monospace;
            font-size: 2rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
        .stat-trend {
            font-size: 0.72rem;
            margin-top: 4px;
            font-weight: 500;
        }
        .stat-trend.up {
            color: var(--green-grass);
        }
        .stat-trend.neutral {
            color: var(--text-muted);
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-value {
                font-size: 1.5rem;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: rgba(18, 28, 46, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            padding: 18px 20px;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            line-height: 1.4;
        }
        .faq-question i {
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            flex-shrink: 0;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--gold);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 20px;
        }
        .faq-answer p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.75;
        }

        /* CTA通栏 */
        .cta-banner {
            background: rgba(18, 28, 46, 0.8);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(240, 192, 64, 0.3);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 0 30px rgba(240, 192, 64, 0.1);
        }
        .cta-banner h3 {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 8px 0;
        }
        .cta-banner p {
            color: var(--text-secondary);
            margin: 0 0 20px 0;
            font-size: 0.95rem;
        }
        .cta-banner .input-group {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-banner input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 12px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            min-width: 240px;
            outline: none;
            transition: border var(--transition-smooth);
        }
        .cta-banner input:focus {
            border-color: var(--gold);
        }
        .cta-banner .privacy-note {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 12px;
        }

        /* 页脚 */
        .footer-link {
            color: var(--text-muted);
            font-size: 0.82rem;
            transition: color var(--transition-fast);
            display: inline-block;
            padding: 2px 0;
        }
        .footer-link:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 16px;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
            margin: 0 4px;
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        @media (max-width: 640px) {
            .section-block {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .cta-banner {
                padding: 24px 16px;
            }
            .cta-banner h3 {
                font-size: 1.2rem;
            }
            .cta-banner input {
                min-width: 100%;
            }
            .scorer-list {
                grid-template-columns: 1fr;
            }
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category1 */
:root {
            --color-deep: #0B1A2E;
            --color-card: #121C2E;
            --color-footer-bg: #060F1A;
            --color-green: #3CB371;
            --color-gold: #F0C040;
            --color-orange: #FF6B4A;
            --color-text: #E8ECF1;
            --color-text-secondary: #A8B8CC;
            --color-text-muted: #6B7D95;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-border-hover: rgba(255, 255, 255, 0.2);
            --color-white5: rgba(255, 255, 255, 0.05);
            --color-white8: rgba(255, 255, 255, 0.08);
            --color-white15: rgba(255, 255, 255, 0.15);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-gold-hover: 0 0 30px rgba(240, 192, 64, 0.5);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.25s ease;
            --container-max: 1320px;
            --section-gap: 80px;
            --section-gap-mobile: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--color-deep);
            color: var(--color-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
            border: none;
        }

        ul {
            list-style: none;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER & NAV ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--color-border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            height: 60px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-area a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
        }

        .logo-icon {
            font-size: 22px;
            color: var(--color-gold);
        }

        .logo-text {
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 2px;
        }

        .nav-desktop a {
            padding: 8px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text-secondary);
            border-radius: var(--radius-md);
            white-space: nowrap;
            transition: all var(--transition-fast);
            position: relative;
        }

        .nav-desktop a:hover {
            color: #fff;
            background: var(--color-white5);
        }

        .nav-desktop a.nav-active {
            color: var(--color-gold);
            font-weight: 600;
        }

        .nav-desktop a.nav-active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 2px;
            background: var(--color-gold);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-trigger {
            display: none;
            align-items: center;
            gap: 8px;
            background: var(--color-white8);
            border-radius: 20px;
            padding: 7px 16px;
            color: var(--color-text-muted);
            font-size: 13px;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }

        .search-trigger:hover {
            border-color: var(--color-border-hover);
            color: var(--color-text-secondary);
        }

        .btn-cta-sm {
            background: var(--color-gold);
            color: #1a1a1a;
            font-weight: 600;
            font-size: 13px;
            padding: 8px 18px;
            border-radius: 20px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 0 14px rgba(240, 192, 64, 0.25);
        }

        .btn-cta-sm:hover {
            box-shadow: 0 0 24px rgba(240, 192, 64, 0.45);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--color-white8);
            border-radius: var(--radius-sm);
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            border: 1px solid var(--color-border);
            transition: all var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            border-color: var(--color-border-hover);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 18, 30, 0.97);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 999;
            padding: 20px;
            flex-direction: column;
            gap: 6px;
            overflow-y: auto;
        }

        .mobile-nav-panel.open {
            display: flex;
        }

        .mobile-nav-panel a {
            display: block;
            padding: 14px 18px;
            font-size: 16px;
            font-weight: 500;
            color: var(--color-text-secondary);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }

        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.nav-active {
            color: var(--color-gold);
            background: var(--color-white5);
            border-color: var(--color-border);
        }

        .bottom-quick-bar {
            display: flex;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(11, 26, 46, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--color-border);
            z-index: 998;
            padding: 6px 8px;
            gap: 4px;
            justify-content: space-around;
        }

        .bottom-quick-bar a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            padding: 6px 8px;
            font-size: 10px;
            color: var(--color-text-muted);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            flex: 1;
            text-align: center;
            min-width: 0;
        }

        .bottom-quick-bar a i {
            font-size: 16px;
        }

        .bottom-quick-bar a.active-quick {
            color: var(--color-gold);
        }

        /* ============ HERO ============ */
        .hero-section {
            position: relative;
            padding: 60px 0 70px;
            background-color: #0F1428;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 16, 40, 0.82) 0%, rgba(11, 26, 46, 0.75) 40%, rgba(10, 20, 38, 0.85) 100%);
            z-index: 1;
        }

        .hero-particle {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background:
                radial-gradient(circle at 20% 30%, rgba(240, 192, 64, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 60%, rgba(60, 179, 113, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 60% 20%, rgba(120, 100, 200, 0.05) 0%, transparent 45%);
        }

        .hero-grid {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 34px;
            font-weight: 900;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }

        .hero-content h1 .league-badge {
            display: inline-block;
            background: var(--color-gold);
            color: #1a1a1a;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 4px;
            vertical-align: middle;
            margin-right: 6px;
            letter-spacing: 0;
        }

        .hero-content .hero-desc {
            font-size: 15px;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 22px;
            max-width: 540px;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-gold {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #F0C040 0%, #e0b030 100%);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-normal);
            white-space: nowrap;
        }

        .btn-gold:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
        }

        .btn-glass {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border-hover);
            transition: all var(--transition-normal);
            white-space: nowrap;
        }

        .btn-glass:hover {
            border-color: rgba(255, 255, 255, 0.4);
            background: var(--color-white5);
            transform: translateY(-2px);
        }

        .hero-card-feature {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-card);
        }

        .hero-card-feature .match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            font-size: 12px;
            color: var(--color-text-muted);
        }

        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-orange);
            animation: pulse-dot 1.5s ease-in-out infinite;
            margin-right: 4px;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 107, 74, 0);
            }
        }

        .match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }

        .match-team {
            text-align: center;
            flex: 1;
        }

        .match-team .team-crest {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin: 0 auto 8px;
            background: var(--color-white8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            border: 2px solid var(--color-border);
        }

        .match-team .team-name {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
        }

        .match-score {
            text-align: center;
            flex-shrink: 0;
        }

        .match-score .score-num {
            font-family: 'Roboto Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 38px;
            font-weight: 900;
            color: var(--color-gold);
            letter-spacing: 2px;
            line-height: 1;
        }

        .match-score .score-status {
            font-size: 11px;
            color: var(--color-orange);
            font-weight: 600;
            margin-top: 2px;
        }

        .match-meta-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--color-text-muted);
            margin-top: 10px;
        }

        .match-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* ============ SECTION COMMON ============ */
        .section-block {
            padding: var(--section-gap) 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--color-text-muted);
            margin-bottom: 32px;
        }

        .glass-card {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-normal);
            overflow: hidden;
        }

        .glass-card:hover {
            border-color: var(--color-border-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        /* ============ STANDINGS TABLE ============ */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }

        .standings-table thead th {
            background: var(--color-white5);
            color: var(--color-text-muted);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 10px;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
            white-space: nowrap;
        }

        .standings-table thead th:first-child {
            text-align: left;
            padding-left: 16px;
            width: 50px;
        }

        .standings-table thead th:nth-child(2) {
            text-align: left;
            min-width: 160px;
        }

        .standings-table tbody td {
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
            color: var(--color-text-secondary);
            font-size: 13px;
            white-space: nowrap;
        }

        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 16px;
            font-weight: 700;
            color: #fff;
        }

        .standings-table tbody td:nth-child(2) {
            text-align: left;
            font-weight: 600;
        }

        .standings-table tbody tr.top-row {
            background: rgba(240, 192, 64, 0.06);
        }

        .standings-table tbody tr.top-row td {
            color: #fff;
        }

        .standings-table tbody tr:hover {
            background: var(--color-white5);
        }

        .team-cell {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-cell .mini-crest {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--color-white8);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            border: 1px solid var(--color-border);
        }

        .standings-table .pts-col {
            font-weight: 800;
            color: var(--color-gold);
            font-size: 15px;
        }

        .standings-table .form-dot {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 10px;
            line-height: 20px;
            text-align: center;
            font-weight: 700;
            margin: 0 1px;
        }

        .form-dot.win {
            background: rgba(60, 179, 113, 0.25);
            color: var(--color-green);
        }
        .form-dot.draw {
            background: rgba(240, 192, 64, 0.2);
            color: var(--color-gold);
        }
        .form-dot.loss {
            background: rgba(255, 107, 74, 0.2);
            color: var(--color-orange);
        }

        /* ============ MATCH CARDS ============ */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .match-mini-card {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            padding: 16px;
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: space-between;
        }

        .match-mini-card:hover {
            border-color: var(--color-border-hover);
            background: rgba(22, 34, 52, 0.8);
        }

        .match-mini-card .mini-time {
            font-size: 11px;
            color: var(--color-text-muted);
            white-space: nowrap;
            flex-shrink: 0;
            width: 44px;
            text-align: center;
        }

        .match-mini-card .mini-teams {
            flex: 1;
            min-width: 0;
            text-align: center;
        }

        .match-mini-card .mini-teams .vs-line {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-mini-card .mini-teams .league-tag {
            font-size: 10px;
            color: var(--color-text-muted);
            margin-top: 2px;
        }

        .match-mini-card .mini-score {
            font-family: 'Roboto Mono', 'SF Mono', 'Consolas', monospace;
            font-size: 16px;
            font-weight: 800;
            color: var(--color-gold);
            flex-shrink: 0;
            min-width: 32px;
            text-align: center;
        }

        .match-mini-card .mini-score.upcoming {
            color: var(--color-text-muted);
            font-size: 12px;
            font-weight: 500;
            font-family: inherit;
        }

        .btn-watch-sm {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 4px;
            border: 1px solid var(--color-border-hover);
            background: transparent;
            color: #fff;
            white-space: nowrap;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .btn-watch-sm:hover {
            background: var(--color-gold);
            color: #1a1a1a;
            border-color: var(--color-gold);
        }

        /* ============ NEWS LIST ============ */
        .news-list-league {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .news-item-league {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 16px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            border: 1px solid transparent;
            cursor: pointer;
        }

        .news-item-league:hover {
            background: var(--color-white5);
            border-color: var(--color-border);
        }

        .news-item-league .news-date-tag {
            flex-shrink: 0;
            font-size: 11px;
            color: var(--color-text-muted);
            background: var(--color-white8);
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
            font-weight: 500;
        }

        .news-item-league .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-item-league .news-body h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .news-item-league .news-body p {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 3px;
            margin-left: 6px;
            vertical-align: middle;
        }
        .news-badge.new {
            background: var(--color-orange);
            color: #fff;
        }
        .news-badge.hot {
            background: #e74c3c;
            color: #fff;
        }

        /* ============ TOP SCORERS ============ */
        .scorers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }

        .scorer-card {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-normal);
        }

        .scorer-card:hover {
            border-color: var(--color-border-hover);
            transform: translateY(-2px);
        }

        .scorer-rank {
            font-size: 28px;
            font-weight: 900;
            color: var(--color-gold);
            flex-shrink: 0;
            width: 36px;
            text-align: center;
            font-family: 'Roboto Mono', 'SF Mono', 'Consolas', monospace;
        }

        .scorer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-white8);
            flex-shrink: 0;
            border: 2px solid var(--color-border);
            overflow: hidden;
        }

        .scorer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .scorer-info {
            flex: 1;
            min-width: 0;
        }

        .scorer-info .scorer-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
        }

        .scorer-info .scorer-team {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        .scorer-goals {
            font-size: 22px;
            font-weight: 900;
            color: var(--color-green);
            flex-shrink: 0;
            text-align: right;
        }

        .scorer-goals small {
            font-size: 11px;
            font-weight: 500;
            color: var(--color-text-muted);
            display: block;
        }

        /* ============ VIDEO CARDS ============ */
        .video-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 18px;
        }

        .video-card {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .video-card:hover {
            border-color: var(--color-border-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #1a2a3a;
            overflow: hidden;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-thumb .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: all var(--transition-fast);
        }

        .video-thumb .play-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(240, 192, 64, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #1a1a1a;
            transition: all var(--transition-fast);
        }

        .video-card:hover .play-icon-circle {
            background: var(--color-gold);
            transform: scale(1.1);
        }

        .video-card .video-info {
            padding: 14px;
        }

        .video-card .video-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .video-card .video-info .video-meta {
            font-size: 11px;
            color: var(--color-text-muted);
        }

        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-item {
            background: rgba(18, 28, 46, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--color-border-hover);
        }

        .faq-question {
            width: 100%;
            background: none;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 20px;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            cursor: pointer;
            border: none;
            transition: all var(--transition-fast);
        }

        .faq-question i {
            font-size: 14px;
            color: var(--color-text-muted);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--color-gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        /* ============ CTA ============ */
        .cta-banner {
            background: rgba(18, 28, 46, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(240, 192, 64, 0.3);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 0 40px rgba(240, 192, 64, 0.08);
        }

        .cta-banner h2 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .cta-banner .cta-sub {
            font-size: 14px;
            color: var(--color-text-muted);
            margin-bottom: 20px;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-form input {
            flex: 1;
            min-width: 220px;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            background: var(--color-white8);
            border: 1px solid var(--color-border);
            color: #fff;
            font-size: 14px;
            transition: all var(--transition-fast);
        }

        .cta-form input:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }

        .cta-form input::placeholder {
            color: var(--color-text-muted);
        }

        .cta-privacy {
            font-size: 11px;
            color: var(--color-text-muted);
            margin-top: 10px;
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--color-footer-bg);
            padding: 48px 0 20px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--color-text-muted);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--color-gold);
        }

        .footer-brand {
            grid-column: 1 / -1;
        }

        .footer-brand .fb-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        .footer-brand .fb-logo span {
            color: #fff;
            font-weight: 800;
            font-size: 17px;
        }
        .footer-brand .fb-desc {
            font-size: 12px;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .footer-social {
            display: flex;
            gap: 8px;
        }
        .footer-social a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-white8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            font-size: 13px;
            transition: all var(--transition-fast);
        }
        .footer-social a:hover {
            background: rgba(240, 192, 64, 0.25);
            color: var(--color-gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--color-border);
            padding-top: 16px;
            text-align: center;
            font-size: 11px;
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 4px;
        }

        .footer-bottom-links a {
            color: var(--color-text-muted);
            font-size: 11px;
            transition: color var(--transition-fast);
        }

        .footer-bottom-links a:hover {
            color: var(--color-gold);
        }

        .footer-bottom-links span {
            color: var(--color-border);
        }

        /* ============ RESPONSIVE ============ */
        @media (min-width: 640px) {
            .hero-content h1 {
                font-size: 38px;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .section-title {
                font-size: 28px;
            }
            .bottom-quick-bar {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .header-inner {
                height: 64px;
            }
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .hero-content h1 {
                font-size: 40px;
            }
            .section-block {
                padding: 80px 0;
            }
            .section-title {
                font-size: 30px;
            }
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            }
            .footer-brand {
                grid-column: auto;
            }
            .bottom-quick-bar {
                display: none;
            }
            .mobile-nav-panel {
                display: none !important;
            }
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .search-trigger {
                display: flex;
            }
            .mobile-menu-toggle {
                display: none;
            }
            .hero-content h1 {
                font-size: 42px;
            }
            .container-main {
                padding: 0 24px;
            }
            .section-block {
                padding: 90px 0;
            }
        }

        @media (max-width: 1023px) {
            .nav-desktop {
                display: none;
            }
            .search-trigger {
                display: none;
            }
            .mobile-menu-toggle {
                display: flex;
            }
            .section-block {
                padding: var(--section-gap-mobile) 0;
            }
            .hero-section {
                padding: 40px 0 50px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .video-cards-grid {
                grid-template-columns: 1fr 1fr;
            }
            .scorers-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 639px) {
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-section {
                padding: 32px 0 40px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .video-cards-grid {
                grid-template-columns: 1fr;
            }
            .scorers-grid {
                grid-template-columns: 1fr;
            }
            .cta-banner {
                padding: 28px 16px;
            }
            .cta-banner h2 {
                font-size: 20px;
            }
            .btn-gold,
            .btn-glass {
                font-size: 13px;
                padding: 10px 18px;
            }
            .section-title {
                font-size: 22px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .standings-table {
                font-size: 12px;
                min-width: 600px;
            }
            body {
                padding-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 23px;
            }
            .hero-btns {
                flex-direction: column;
                gap: 8px;
            }
            .hero-btns .btn-gold,
            .hero-btns .btn-glass {
                width: 100%;
                justify-content: center;
            }
            .match-mini-card {
                flex-wrap: wrap;
                gap: 8px;
            }
            .section-title {
                font-size: 20px;
            }
        }

/* roulang page: category3 */
:root {
            --color-bg: #0B1A2E;
            --color-bg-card: rgba(18, 28, 46, 0.75);
            --color-bg-footer: #060F1A;
            --color-primary: #0B1A2E;
            --color-accent-green: #3CB371;
            --color-gold: #F0C040;
            --color-orange: #FF6B4A;
            --color-text: #E8ECF1;
            --color-text-secondary: #A0B4C8;
            --color-text-muted: #6B8299;
            --color-border: rgba(255, 255, 255, 0.08);
            --color-border-light: rgba(255, 255, 255, 0.15);
            --color-white: #FFFFFF;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-gold-hover: 0 0 30px rgba(240, 192, 64, 0.5);
            --font-mono: 'Roboto Mono', 'SF Mono', 'Consolas', 'Menlo', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --transition: 0.25s ease;
            --container-max: 1320px;
            --spacing-section: 80px;
            --spacing-block: 48px;
            --spacing-card: 24px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-text);
            background-color: var(--color-bg);
            min-height: 100vh;
            letter-spacing: 0.01em;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background var(--transition), border var(--transition);
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
        }

        input {
            color: var(--color-text);
        }

        ::selection {
            background: rgba(240, 192, 64, 0.3);
            color: #fff;
        }

        :focus-visible {
            outline: 2px solid var(--color-gold);
            outline-offset: 2px;
            border-radius: 2px;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
        }

        /* ===== HEADER & NAV ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background var(--transition);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-area a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--color-white);
            font-weight: 800;
            font-size: 1.15rem;
            white-space: nowrap;
        }

        .logo-area i {
            color: var(--color-gold);
            font-size: 1.4rem;
        }

        .logo-area:hover i {
            filter: drop-shadow(0 0 10px rgba(240, 192, 64, 0.5));
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 2px;
            flex-wrap: nowrap;
        }

        .nav-desktop a {
            padding: 8px 12px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            border-radius: var(--radius-md);
            white-space: nowrap;
            transition: all var(--transition);
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--color-white);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-desktop a.nav-active {
            color: var(--color-gold);
            border-bottom: 2px solid var(--color-gold);
            border-radius: 0;
            background: transparent;
            font-weight: 600;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-box input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--color-border);
            border-radius: 20px;
            padding: 8px 14px 8px 34px;
            color: var(--color-text);
            font-size: 0.85rem;
            width: 180px;
            transition: all var(--transition);
        }

        .search-box input::placeholder {
            color: var(--color-text-muted);
        }
        .search-box input:focus {
            border-color: var(--color-gold);
            background: rgba(255, 255, 255, 0.1);
            width: 220px;
            box-shadow: 0 0 12px rgba(240, 192, 64, 0.15);
        }

        .search-box .search-icon {
            position: absolute;
            left: 12px;
            color: var(--color-text-muted);
            font-size: 0.85rem;
            pointer-events: none;
        }

        .btn-cta-nav {
            background: linear-gradient(135deg, #E8B830, #F0C040);
            color: #0B1A2E;
            font-weight: 700;
            padding: 9px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            white-space: nowrap;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            cursor: pointer;
        }

        .btn-cta-nav:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
            background: linear-gradient(135deg, #F0C040, #F5CC55);
        }

        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-text);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 6px;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 26, 46, 0.97);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            padding: 20px;
            gap: 4px;
            overflow-y: auto;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            padding: 14px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            border-radius: var(--radius-md);
            transition: all var(--transition);
        }

        .mobile-nav a.nav-active {
            color: var(--color-gold);
            background: rgba(240, 192, 64, 0.08);
            font-weight: 700;
        }

        .mobile-nav a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--color-white);
        }

        @media (max-width: 1024px) {
            .nav-desktop {
                display: none;
            }
            .search-box input {
                width: 140px;
            }
            .search-box input:focus {
                width: 170px;
            }
            .hamburger-btn {
                display: block;
            }
        }
        @media (max-width: 640px) {
            .search-box {
                display: none;
            }
            .btn-cta-nav {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            .header-inner {
                padding: 0 12px;
            }
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding: 80px 0 70px;
            background: linear-gradient(160deg, #0A1F18 0%, #0D1F1A 25%, #0B1A2E 55%, #0E1C25 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            mix-blend-mode: soft-light;
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(60, 179, 113, 0.08) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-text h1 {
            font-size: clamp(2rem, 3.5vw, 2.6rem);
            font-weight: 900;
            color: var(--color-white);
            line-height: 1.25;
            margin-bottom: 14px;
        }

        .hero-text h1 .accent-gold {
            color: var(--color-gold);
        }

        .hero-text .hero-subtitle {
            font-size: 1rem;
            color: var(--color-text-secondary);
            line-height: 1.65;
            margin-bottom: 8px;
            max-width: 480px;
        }

        .hero-text .season-tag {
            display: inline-block;
            background: rgba(240, 192, 64, 0.12);
            color: var(--color-gold);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(240, 192, 64, 0.25);
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #E8B830, #F0C040);
            color: #0B1A2E;
            font-weight: 700;
            padding: 13px 28px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-primary:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
            background: linear-gradient(135deg, #F0C040, #F5CC55);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-text);
            font-weight: 600;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            cursor: pointer;
            border: 1px solid var(--color-border-light);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.05);
            color: var(--color-white);
        }

        .hero-card {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            text-align: center;
        }

        .hero-card .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 107, 74, 0.2);
            color: var(--color-orange);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 107, 74, 0.35);
        }

        .hero-card .live-dot {
            width: 8px;
            height: 8px;
            background: var(--color-orange);
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 4px var(--color-orange);
            }
            50% {
                opacity: 0.4;
                box-shadow: 0 0 12px var(--color-orange);
            }
        }

        .hero-card .match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .hero-card .team-block {
            text-align: center;
        }

        .hero-card .team-crest {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--color-text-secondary);
            border: 1px solid var(--color-border);
        }

        .hero-card .team-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-text);
        }

        .hero-card .score-display {
            font-family: var(--font-mono);
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--color-gold);
            text-shadow: 0 0 16px rgba(240, 192, 64, 0.3);
            letter-spacing: 4px;
            min-width: 80px;
            text-align: center;
        }

        .hero-card .match-status {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0 40px;
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            .hero-text .hero-subtitle {
                max-width: 100%;
            }
            .hero-btns {
                justify-content: center;
            }
            .hero-card .match-teams {
                gap: 12px;
            }
            .hero-card .score-display {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-card .team-crest {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .hero-card .score-display {
                font-size: 1.8rem;
                letter-spacing: 2px;
            }
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: var(--spacing-section) 0;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-white);
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.4rem;
            }
        }

        /* ===== STANDINGS TABLE ===== */
        .standings-table-wrap {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow-x: auto;
            box-shadow: var(--shadow-card);
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
            font-size: 0.9rem;
        }

        .standings-table thead th {
            background: rgba(255, 255, 255, 0.04);
            padding: 14px 12px;
            text-align: center;
            font-weight: 600;
            color: var(--color-text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            white-space: nowrap;
            border-bottom: 1px solid var(--color-border);
        }

        .standings-table thead th:first-child {
            text-align: left;
            padding-left: 20px;
        }

        .standings-table tbody td {
            padding: 13px 12px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            white-space: nowrap;
            font-family: var(--font-sans);
        }

        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 20px;
            font-weight: 600;
        }

        .standings-table tbody tr.top-row {
            background: rgba(240, 192, 64, 0.06);
        }

        .standings-table tbody tr.top-row td {
            color: var(--color-gold);
            font-weight: 700;
        }

        .standings-table tbody tr.top-row td:first-child {
            color: var(--color-gold);
        }

        .standings-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-cell .mini-crest {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
            border: 1px solid var(--color-border);
        }

        .rank-num {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 1rem;
        }

        .pts-highlight {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--color-gold);
        }

        .form-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 1px;
        }
        .form-dot.win {
            background: #3CB371;
        }
        .form-dot.draw {
            background: #A0B4C8;
        }
        .form-dot.loss {
            background: #FF6B4A;
        }

        @media (max-width: 768px) {
            .standings-table {
                font-size: 0.78rem;
                min-width: 600px;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 10px 8px;
            }
        }

        /* ===== FIXTURES CARDS ===== */
        .fixtures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .fixture-card {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 16px;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: default;
        }

        .fixture-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card);
            transform: translateY(-1px);
        }

        .fixture-time {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--color-gold);
            font-weight: 600;
            min-width: 50px;
            text-align: center;
        }

        .fixture-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .fixture-team {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--color-text);
        }

        .fixture-vs {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .fixture-score-mini {
            font-family: var(--font-mono);
            font-weight: 700;
            color: var(--color-gold);
            font-size: 0.9rem;
        }

        .fixture-badge {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .fixture-badge.live {
            background: rgba(255, 107, 74, 0.2);
            color: var(--color-orange);
        }
        .fixture-badge.upcoming {
            background: rgba(160, 180, 200, 0.15);
            color: var(--color-text-secondary);
        }
        .fixture-badge.finished {
            background: rgba(160, 180, 200, 0.1);
            color: var(--color-text-muted);
        }
        .fixture-badge.watch {
            background: rgba(60, 179, 113, 0.18);
            color: var(--color-accent-green);
            cursor: pointer;
        }

        @media (max-width: 640px) {
            .fixtures-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== NEWS LIST ===== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background var(--transition);
            border-radius: var(--radius-sm);
            padding-left: 8px;
            padding-right: 8px;
            margin: 0 -8px;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .news-thumb {
            width: 120px;
            height: 80px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--color-border);
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            margin-bottom: 2px;
        }

        .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-text);
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .news-excerpt {
            font-size: 0.83rem;
            color: var(--color-text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-badge {
            display: inline-block;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 700;
            margin-right: 6px;
            vertical-align: middle;
        }
        .news-badge.new {
            background: rgba(255, 107, 74, 0.2);
            color: var(--color-orange);
        }
        .news-badge.hot {
            background: rgba(255, 107, 74, 0.25);
            color: #FF8C6A;
        }

        @media (max-width: 640px) {
            .news-item {
                flex-direction: column;
                gap: 10px;
            }
            .news-thumb {
                width: 100%;
                height: 160px;
            }
        }

        /* ===== TOP SCORERS ===== */
        .scorers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }

        .scorer-card {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition);
        }

        .scorer-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card);
            transform: translateY(-1px);
        }

        .scorer-rank {
            font-family: var(--font-mono);
            font-size: 1.3rem;
            font-weight: 900;
            color: var(--color-gold);
            min-width: 32px;
            text-align: center;
        }

        .scorer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--color-text-muted);
            flex-shrink: 0;
            border: 1px solid var(--color-border);
        }

        .scorer-info {
            flex: 1;
            min-width: 0;
        }

        .scorer-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-text);
        }

        .scorer-team {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }

        .scorer-goals {
            font-family: var(--font-mono);
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--color-accent-green);
            text-align: right;
        }

        @media (max-width: 640px) {
            .scorers-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .scorer-card {
                padding: 12px;
                gap: 8px;
            }
            .scorer-rank {
                font-size: 1rem;
                min-width: 24px;
            }
            .scorer-avatar {
                width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }
        }

        /* ===== VIDEO CARDS ===== */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .video-card {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            cursor: pointer;
        }

        .video-card:hover {
            border-color: var(--color-border-light);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }

        .video-thumb-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
        }

        .video-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-play-btn {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            opacity: 0;
            transition: opacity var(--transition);
        }

        .video-card:hover .video-play-btn {
            opacity: 1;
        }

        .video-play-btn i {
            font-size: 2.5rem;
            color: var(--color-gold);
            filter: drop-shadow(0 0 10px rgba(240, 192, 64, 0.5));
        }

        .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 4px;
            font-family: var(--font-mono);
        }

        .video-card-body {
            padding: 14px;
        }

        .video-card-title {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text);
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .video-card-meta {
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
        }
        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--color-bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--color-text);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            background: transparent;
            border: none;
            transition: color var(--transition);
        }

        .faq-question:hover {
            color: var(--color-gold);
        }

        .faq-question i {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            transition: transform var(--transition);
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--color-gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }

        .faq-answer p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        .faq-answer .faq-conclusion {
            font-weight: 600;
            color: var(--color-accent-green);
            margin-bottom: 6px;
        }

        .faq-answer .faq-guide {
            color: var(--color-gold);
            font-weight: 500;
            margin-top: 6px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 60px 0;
        }

        .cta-banner {
            background: var(--color-bg-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(240, 192, 64, 0.25);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            text-align: center;
            box-shadow: 0 0 40px rgba(240, 192, 64, 0.08);
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-banner h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 8px;
        }

        .cta-banner p {
            color: var(--color-text-secondary);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 440px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-form input {
            flex: 1;
            min-width: 220px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--color-border);
            color: var(--color-text);
            font-size: 0.9rem;
        }

        .cta-form input:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 12px rgba(240, 192, 64, 0.12);
        }

        .cta-privacy {
            font-size: 0.7rem;
            color: var(--color-text-muted);
            margin-top: 10px;
        }

        @media (max-width: 480px) {
            .cta-banner {
                padding: 28px 16px;
            }
            .cta-form input {
                min-width: 100%;
            }
            .cta-form .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: var(--color-bg-footer);
            padding: 60px 0 20px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 32px;
            max-width: var(--container-max);
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .footer-brand-col {
            grid-column: span 1;
        }

        .footer-brand-col .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--color-white);
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .footer-brand-col .footer-logo i {
            color: var(--color-gold);
        }
        .footer-brand-col .footer-desc {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .footer-social {
            display: flex;
            gap: 8px;
        }
        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-secondary);
            font-size: 0.85rem;
            transition: all var(--transition);
        }
        .footer-social a:hover {
            background: rgba(240, 192, 64, 0.25);
            color: var(--color-gold);
        }

        .footer-col h4 {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--color-white);
            margin-bottom: 10px;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: var(--color-gold);
        }

        .footer-bottom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 16px 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
        }
        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            line-height: 1.8;
        }
        .footer-bottom .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 4px;
        }
        .footer-bottom .footer-links-row a {
            font-size: 0.75rem;
            color: var(--color-text-muted);
            transition: color var(--transition);
        }
        .footer-bottom .footer-links-row a:hover {
            color: var(--color-gold);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .footer-brand-col {
                grid-column: span 2;
            }
        }
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-brand-col {
                grid-column: span 2;
            }
        }
        @media (max-width: 400px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-brand-col {
                grid-column: span 1;
            }
        }

        /* ===== UTILITY ===== */
        .text-gold {
            color: var(--color-gold);
        }
        .text-green {
            color: var(--color-accent-green);
        }
        .text-muted {
            color: var(--color-text-muted);
        }
        .text-center {
            text-align: center;
        }
        .mt-8 {
            margin-top: 32px;
        }
        .mt-4 {
            margin-top: 16px;
        }
        .mb-4 {
            margin-bottom: 16px;
        }

/* roulang page: category4 */
:root {
            --bg-deep: #0B1A2E;
            --bg-hero-bundesliga: #1A1D23;
            --bg-card: rgba(18, 28, 46, 0.75);
            --bg-footer: #060F1A;
            --text-primary: #FFFFFF;
            --text-secondary: #C8CDD4;
            --text-muted: #7B8392;
            --gold: #F0C040;
            --green: #3CB371;
            --orange-accent: #E65C00;
            --orange-bright: #FF6B3D;
            --red-live: #FF4B4B;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.2);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 14px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-glow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-glow-orange: 0 0 18px rgba(230, 92, 0, 0.3);
            --container-max: 1320px;
            --spacing-section: 80px;
            --spacing-block: 40px;
            --spacing-card: 20px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 15px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .container-main {
                padding: 0 16px;
            }
            :root {
                --spacing-section: 48px;
                --spacing-block: 28px;
            }
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            color: var(--gold);
            font-size: 22px;
            transition: var(--transition-fast);
        }

        .logo-text {
            color: #fff;
            font-weight: 700;
            font-size: 17px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .logo-area:hover .logo-icon {
            transform: rotate(-15deg) scale(1.1);
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .nav-desktop a {
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 6px;
            transition: var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }

        .nav-desktop a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-desktop a.nav-active {
            color: var(--gold);
            font-weight: 600;
            border-bottom: 2px solid var(--gold);
            border-radius: 0;
            padding-bottom: 6px;
            background: transparent;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-trigger {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border-subtle);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
            font-size: 14px;
        }

        .search-trigger:hover {
            border-color: var(--border-hover);
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
        }

        .btn-cta-header {
            padding: 9px 20px;
            font-size: 13px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--gold), #d4a020);
            color: #0B1A2E;
            border: none;
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            letter-spacing: 0.3px;
            box-shadow: var(--shadow-glow-gold);
            transition: var(--transition-smooth);
        }

        .btn-cta-header:hover {
            box-shadow: 0 0 30px rgba(240, 192, 64, 0.5);
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: 1px solid var(--border-subtle);
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.04);
        }

        @media (max-width: 1024px) {
            .nav-desktop {
                gap: 0;
            }
            .nav-desktop a {
                padding: 8px 9px;
                font-size: 12.5px;
            }
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .header-actions .search-trigger {
                display: none;
            }
            .btn-cta-header {
                padding: 8px 15px;
                font-size: 12px;
            }
        }

        /* Mobile nav drawer */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 26, 46, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            padding: 20px;
            gap: 4px;
            overflow-y: auto;
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer a {
            padding: 14px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: var(--radius-md);
            transition: var(--transition-fast);
            display: block;
        }

        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.nav-active {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .mobile-nav-drawer a.nav-active {
            color: var(--gold);
            font-weight: 600;
            border-left: 3px solid var(--gold);
        }

        /* Hero - Bundesliga */
        .hero-bundesliga {
            position: relative;
            background-color: var(--bg-hero-bundesliga);
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            min-height: 420px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bundesliga::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.88) 0%, rgba(11, 26, 46, 0.78) 50%, rgba(26, 29, 35, 0.85) 100%);
            z-index: 1;
        }

        .hero-bundesliga::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230, 92, 0, 0.12) 0%, transparent 70%);
            z-index: 2;
            pointer-events: none;
        }

        .hero-bundesliga .hero-content {
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 48px;
            width: 100%;
        }

        .hero-bundesliga .hero-text {
            flex: 1;
        }

        .hero-bundesliga .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(230, 92, 0, 0.2);
            border: 1px solid rgba(230, 92, 0, 0.4);
            color: var(--orange-bright);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .hero-bundesliga h1 {
            font-size: 38px;
            font-weight: 900;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .hero-bundesliga h1 .accent {
            color: var(--orange-bright);
        }

        .hero-bundesliga .hero-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 540px;
        }

        .hero-bundesliga .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-orange {
            padding: 12px 26px;
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, #E65C00, #FF7A30);
            color: #fff;
            border: none;
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.3px;
            box-shadow: var(--shadow-glow-orange);
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-orange:hover {
            box-shadow: 0 0 28px rgba(230, 92, 0, 0.5);
            transform: translateY(-2px);
        }

        .btn-glass {
            padding: 12px 26px;
            font-size: 14px;
            font-weight: 500;
            border-radius: var(--radius-sm);
            background: transparent;
            color: #fff;
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.3px;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-glass:hover {
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.04);
        }

        .hero-bundesliga .hero-visual {
            flex: 0 0 340px;
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .hero-visual .league-emblem {
            width: 90px;
            height: 90px;
            margin: 0 auto 14px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
        }

        .hero-visual .league-emblem img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            border-radius: 50%;
        }

        .hero-visual .season-tag {
            font-size: 13px;
            color: var(--orange-bright);
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .hero-visual .highlight-stat {
            font-size: 40px;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-visual .stat-label {
            font-size: 12px;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .hero-bundesliga {
                min-height: auto;
                padding: 36px 0;
            }
            .hero-bundesliga .hero-content {
                flex-direction: column;
                gap: 24px;
            }
            .hero-bundesliga h1 {
                font-size: 28px;
            }
            .hero-bundesliga .hero-visual {
                flex: 0 0 auto;
                width: 100%;
                max-width: 340px;
            }
            .hero-bundesliga .hero-desc {
                font-size: 14px;
            }
        }

        @media (max-width: 520px) {
            .hero-bundesliga h1 {
                font-size: 24px;
            }
            .hero-bundesliga .hero-btns {
                flex-direction: column;
                gap: 8px;
            }
            .btn-orange,
            .btn-glass {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        /* Section titles */
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        @media (max-width: 520px) {
            .section-title {
                font-size: 21px;
            }
        }

        /* Glass card */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: var(--transition-smooth);
        }

        .glass-card:hover {
            border-color: var(--border-hover);
            box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        /* Standings table */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }

        .standings-table th {
            text-align: left;
            padding: 12px 10px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid var(--border-subtle);
            white-space: nowrap;
        }

        .standings-table td {
            padding: 11px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .standings-table .rank-col {
            width: 40px;
            text-align: center;
            font-weight: 700;
            font-size: 15px;
            color: #fff;
        }

        .standings-table .team-col {
            font-weight: 600;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .standings-table .team-emblem {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
        }

        .standings-table .pts-col {
            font-weight: 700;
            color: var(--gold);
            font-size: 15px;
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', monospace;
        }

        .standings-table tr.top-row {
            background: rgba(240, 192, 64, 0.05);
        }

        .standings-table tr.top-row td {
            color: #fff;
        }

        .standings-table tr.top-row .pts-col {
            color: var(--gold);
            font-size: 16px;
        }

        .standings-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .badge-zone {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-left: 4px;
        }

        .badge-ucl {
            background: rgba(60, 179, 113, 0.2);
            color: var(--green);
        }

        .badge-uel {
            background: rgba(240, 192, 64, 0.2);
            color: var(--gold);
        }

        /* Fixture cards */
        .fixture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .fixture-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            transition: var(--transition-smooth);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
        }

        .fixture-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
        }

        .fixture-card .team-name {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            max-width: 70px;
            line-height: 1.3;
            word-break: break-word;
        }

        .fixture-card .score-area {
            text-align: center;
            flex-shrink: 0;
        }

        .fixture-card .score {
            font-size: 22px;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', monospace;
            letter-spacing: 2px;
        }

        .fixture-card .score.upcoming {
            color: var(--text-muted);
            font-size: 16px;
            letter-spacing: 1px;
        }

        .fixture-card .match-time {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .fixture-card .live-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--red-live);
            margin-right: 4px;
            animation: pulse-live 1.4s infinite;
        }

        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 75, 75, 0.6);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(255, 75, 75, 0);
            }
        }

        .fixture-card .btn-watch {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 4px;
            border: 1px solid var(--border-subtle);
            background: transparent;
            color: var(--text-secondary);
            cursor: pointer;
            text-decoration: none;
            white-space: nowrap;
            transition: var(--transition-fast);
        }

        .fixture-card .btn-watch:hover {
            border-color: var(--orange-bright);
            color: var(--orange-bright);
            background: rgba(230, 92, 0, 0.08);
        }

        @media (max-width: 640px) {
            .fixture-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .fixture-card {
                padding: 12px 14px;
            }
            .fixture-card .team-name {
                font-size: 12px;
                max-width: 55px;
            }
            .fixture-card .score {
                font-size: 18px;
            }
        }

        /* News list */
        .news-list-bundesliga {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .news-item-bundesliga {
            display: flex;
            gap: 16px;
            padding: 14px 16px;
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            transition: var(--transition-smooth);
            align-items: flex-start;
        }

        .news-item-bundesliga:hover {
            border-color: var(--border-hover);
            background: rgba(18, 28, 46, 0.85);
        }

        .news-item-bundesliga .news-thumb {
            width: 90px;
            height: 64px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.04);
        }

        .news-item-bundesliga .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-item-bundesliga .news-date {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 3px;
        }

        .news-item-bundesliga .news-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .news-item-bundesliga .news-summary {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item-bundesliga .news-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.3px;
            margin-right: 4px;
        }

        .tag-new {
            background: rgba(255, 107, 74, 0.2);
            color: #FF6B4A;
        }
        .tag-hot {
            background: rgba(255, 75, 75, 0.2);
            color: #FF4B4B;
        }
        .tag-recommend {
            background: rgba(240, 192, 64, 0.2);
            color: var(--gold);
        }

        @media (max-width: 520px) {
            .news-item-bundesliga {
                flex-direction: column;
                gap: 10px;
            }
            .news-item-bundesliga .news-thumb {
                width: 100%;
                height: 140px;
            }
        }

        /* Top scorers */
        .scorer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }

        .scorer-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: var(--transition-smooth);
        }

        .scorer-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-1px);
        }

        .scorer-rank {
            font-size: 20px;
            font-weight: 900;
            color: var(--gold);
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', monospace;
            width: 32px;
            text-align: center;
            flex-shrink: 0;
        }

        .scorer-card .scorer-info {
            flex: 1;
            min-width: 0;
        }

        .scorer-card .scorer-name {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 2px;
        }

        .scorer-card .scorer-team {
            font-size: 12px;
            color: var(--text-muted);
        }

        .scorer-card .scorer-goals {
            font-size: 22px;
            font-weight: 900;
            color: var(--orange-bright);
            font-family: 'Roboto Mono', 'SF Mono', 'Menlo', monospace;
            flex-shrink: 0;
        }

        @media (max-width: 520px) {
            .scorer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .scorer-card {
                padding: 12px;
                gap: 8px;
            }
            .scorer-card .scorer-goals {
                font-size: 18px;
            }
            .scorer-rank {
                font-size: 16px;
                width: 24px;
            }
        }

        /* Video cards */
        .video-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 16px;
        }

        .video-card-main {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }

        .video-card-main:hover {
            border-color: var(--border-hover);
            transform: translateY(-2px);
        }

        .video-card-main .video-thumb {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }

        .video-card-main .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(230, 92, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            transition: var(--transition-smooth);
            pointer-events: none;
        }

        .video-card-main:hover .play-overlay {
            background: rgba(230, 92, 0, 1);
            box-shadow: 0 0 24px rgba(230, 92, 0, 0.5);
            transform: translate(-50%, -50%) scale(1.08);
        }

        .video-card-main .video-info {
            padding: 14px 16px;
        }

        .video-card-main .video-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .video-card-main .video-duration {
            font-size: 11px;
            color: var(--text-muted);
        }

        .video-card-side {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .video-card-side:hover {
            border-color: var(--border-hover);
            transform: translateY(-1px);
        }

        .video-card-side .video-thumb-sm {
            width: 100%;
            height: 100px;
            object-fit: cover;
            display: block;
        }

        .video-card-side .video-info-sm {
            padding: 10px 12px;
        }

        .video-card-side .video-title-sm {
            font-size: 13px;
            font-weight: 500;
            color: #fff;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .video-card-main .video-thumb {
                height: 180px;
            }
            .video-card-side .video-thumb-sm {
                height: 120px;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-question {
            padding: 16px 20px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--orange-bright);
        }

        .faq-question .faq-icon {
            font-size: 13px;
            color: var(--text-muted);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            color: var(--orange-bright);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* CTA */
        .cta-bundesliga {
            background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(11, 26, 46, 0.85) 100%);
            border: 1px solid rgba(230, 92, 0, 0.25);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            text-align: center;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: relative;
            overflow: hidden;
        }

        .cta-bundesliga::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 92, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .cta-bundesliga>* {
            position: relative;
            z-index: 1;
        }

        .cta-bundesliga h3 {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .cta-bundesliga p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-input-group {
            display: flex;
            gap: 10px;
            max-width: 440px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .cta-input-group input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: var(--transition-fast);
        }

        .cta-input-group input:focus {
            border-color: var(--orange-bright);
            box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.1);
        }

        .cta-input-group input::placeholder {
            color: var(--text-muted);
        }

        @media (max-width: 520px) {
            .cta-bundesliga {
                padding: 28px 16px;
            }
            .cta-bundesliga h3 {
                font-size: 20px;
            }
            .cta-input-group {
                flex-direction: column;
                gap: 8px;
            }
            .cta-input-group input {
                width: 100%;
            }
            .cta-input-group .btn-orange {
                width: 100%;
                justify-content: center;
            }
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            padding: 48px 0 20px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
            gap: 28px;
            margin-bottom: 32px;
        }

        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .footer-social {
            display: flex;
            gap: 8px;
        }

        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 13px;
            transition: var(--transition-fast);
            text-decoration: none;
        }

        .footer-social a:hover {
            background: rgba(230, 92, 0, 0.2);
            color: var(--orange-bright);
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 5px;
        }

        .footer-col ul li a {
            font-size: 12.5px;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--orange-bright);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 16px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            margin: 0 6px;
            transition: var(--transition-fast);
        }

        .footer-bottom a:hover {
            color: var(--orange-bright);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .site-footer {
                padding: 32px 0 16px;
                margin-top: 40px;
            }
        }

        /* Utility */
        .section-spacing {
            padding: var(--spacing-section) 0;
        }

        .section-spacing-sm {
            padding: var(--spacing-block) 0;
        }

        @media (max-width: 768px) {
            .section-spacing {
                padding: 48px 0;
            }
            .section-spacing-sm {
                padding: 28px 0;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 5px;
            height: 5px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

/* roulang page: category5 */
:root {
            --bg-deep: #0B1A2E;
            --bg-card: rgba(18, 28, 46, 0.75);
            --bg-footer: #060F1A;
            --gold: #F0C040;
            --gold-glow: rgba(240, 192, 64, 0.35);
            --green: #3CB371;
            --orange: #FF6B4A;
            --red-live: #FF3B3B;
            --text-primary: #FFFFFF;
            --text-secondary: #C5CDD8;
            --text-muted: #8895A7;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-card: rgba(255, 255, 255, 0.12);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 14px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-gold-hover: 0 0 32px rgba(240, 192, 64, 0.5);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --font-mono: 'SF Mono', 'Roboto Mono', 'Consolas', 'Monaco', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            --container-max: 1320px;
            --section-gap: 80px;
            --section-gap-mobile: 48px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            background-color: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        input {
            font-family: inherit;
            border: none;
            outline: none;
        }

        ul,
        ol {
            list-style: none;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* ========== HEADER & NAV ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background var(--transition-smooth);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-area i {
            font-size: 22px;
            color: var(--gold);
        }

        .logo-text {
            font-weight: 800;
            font-size: 18px;
            letter-spacing: 0.3px;
            white-space: nowrap;
            color: #fff;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .desktop-nav a {
            padding: 8px 12px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .desktop-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .desktop-nav a.nav-active {
            color: var(--gold);
            font-weight: 600;
        }

        .desktop-nav a.nav-active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2.5px;
            background: var(--gold);
            border-radius: 2px;
            box-shadow: 0 0 8px rgba(240, 192, 64, 0.6);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .search-box {
            position: relative;
            width: 200px;
        }

        .search-box input {
            width: 100%;
            padding: 9px 14px 9px 36px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 13px;
            transition: all var(--transition-fast);
        }

        .search-box input::placeholder {
            color: var(--text-muted);
        }

        .search-box input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.08);
        }

        .search-box .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 13px;
            pointer-events: none;
        }

        .btn-cta-nav {
            padding: 9px 18px;
            background: linear-gradient(135deg, #F0C040, #D4A030);
            color: #0B1A2E;
            font-weight: 700;
            font-size: 13px;
            border-radius: 20px;
            white-space: nowrap;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
        }

        .btn-cta-nav:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-1px);
            color: #0B1A2E;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            padding: 6px;
            cursor: pointer;
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 20, 35, 0.97);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            z-index: 999;
            flex-direction: column;
            padding: 20px;
            gap: 6px;
            overflow-y: auto;
        }

        .mobile-nav-panel.is-open {
            display: flex;
        }

        .mobile-nav-panel a {
            padding: 14px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
        }

        .mobile-nav-panel a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .mobile-nav-panel a.nav-active {
            color: var(--gold);
            background: rgba(240, 192, 64, 0.08);
            border-color: rgba(240, 192, 64, 0.25);
            font-weight: 600;
        }

        .mobile-nav-panel .mobile-search-wrap {
            margin-bottom: 8px;
        }

        .mobile-nav-panel .mobile-search-wrap input {
            width: 100%;
            padding: 12px 16px 12px 38px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 14px;
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            padding: 64px 0 56px;
            background: linear-gradient(170deg, #0D1B35 0%, #09152A 30%, #0B1A2E 60%, #0A162C 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 8%;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: starglow 4s ease-in-out infinite;
        }

        @keyframes starglow {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        .hero-stars {
            position: absolute;
            top: 5%;
            right: 15%;
            z-index: 0;
            pointer-events: none;
        }

        .hero-stars i {
            color: var(--gold);
            font-size: 10px;
            opacity: 0.7;
            animation: twinkle 2.5s ease-in-out infinite;
            margin: 0 6px;
        }

        .hero-stars i:nth-child(2) {
            animation-delay: 0.6s;
            font-size: 14px;
        }
        .hero-stars i:nth-child(3) {
            animation-delay: 1.2s;
            font-size: 8px;
        }
        .hero-stars i:nth-child(4) {
            animation-delay: 0.3s;
            font-size: 11px;
        }
        .hero-stars i:nth-child(5) {
            animation-delay: 1.8s;
            font-size: 13px;
        }

        @keyframes twinkle {
            0%,
            100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.95;
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 38px;
            font-weight: 900;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .hero-text h1 .gold-accent {
            color: var(--gold);
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.4);
        }

        .hero-text .hero-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 480px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 192, 64, 0.12);
            border: 1px solid rgba(240, 192, 64, 0.3);
            color: var(--gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red-live);
            animation: pulse-dot 1.4s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 59, 59, 0);
            }
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-gold {
            padding: 13px 28px;
            background: linear-gradient(135deg, #F0C040, #D4A030);
            color: #0B1A2E;
            font-weight: 700;
            font-size: 14.5px;
            border-radius: 6px;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-smooth);
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .btn-gold:hover {
            box-shadow: var(--shadow-gold-hover);
            transform: translateY(-2px);
            color: #0B1A2E;
        }

        .btn-glass {
            padding: 12px 26px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            border-radius: 6px;
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .btn-glass:hover {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        .hero-card {
            background: rgba(18, 28, 46, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-match-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 16px;
        }

        .hero-team {
            text-align: center;
            flex: 1;
        }

        .hero-team .team-crest {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--text-muted);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .hero-team .team-name {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
        }

        .hero-score-display {
            text-align: center;
            flex-shrink: 0;
        }

        .hero-score-display .score-num {
            font-family: var(--font-mono);
            font-size: 42px;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 3px;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.5);
            line-height: 1;
        }

        .hero-score-display .match-status {
            font-size: 12px;
            color: var(--green);
            font-weight: 600;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-content: center;
        }

        .hero-card-extra {
            display: flex;
            justify-content: center;
            gap: 24px;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 12px;
        }

        /* ========== SECTION COMMONS ========== */
        .section {
            padding: var(--section-gap) 0;
        }

        .section-header {
            margin-bottom: 36px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.4px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        /* ========== STANDINGS TABLE ========== */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13.5px;
            min-width: 700px;
        }

        .standings-table thead th {
            text-align: left;
            padding: 12px 10px;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        .standings-table tbody td {
            padding: 11px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
            white-space: nowrap;
            vertical-align: middle;
        }

        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }

        .standings-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .standings-table .rank-col {
            width: 40px;
            text-align: center;
            font-weight: 700;
            font-family: var(--font-mono);
            color: #fff;
        }

        .standings-table .team-col {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: #fff;
        }

        .standings-table .crest-mini {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
            color: var(--text-muted);
        }

        .standings-table .highlight-row {
            background: rgba(240, 192, 64, 0.06);
        }

        .standings-table .highlight-row td {
            color: #fff;
        }

        .standings-table .highlight-row .rank-col {
            color: var(--gold);
        }

        .standings-table .qual-zone {
            display: inline-block;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            margin-right: 4px;
            vertical-align: middle;
        }

        .qual-zone-direct {
            background: var(--gold);
            box-shadow: 0 0 6px rgba(240, 192, 64, 0.6);
        }
        .qual-zone-playoff {
            background: var(--green);
        }

        /* ========== MATCH CARDS ========== */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .match-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            padding: 16px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .match-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .match-time {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            white-space: nowrap;
            min-width: 50px;
            text-align: center;
        }

        .match-info {
            flex: 1;
            min-width: 0;
        }

        .match-info .match-teams {
            font-weight: 600;
            color: #fff;
            font-size: 13.5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-info .match-league-tag {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .match-score-mini {
            font-family: var(--font-mono);
            font-weight: 700;
            font-size: 15px;
            color: var(--gold);
            text-align: center;
            min-width: 40px;
        }

        .btn-watch-mini {
            padding: 6px 14px;
            font-size: 11px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 14px;
            white-space: nowrap;
            transition: all var(--transition-fast);
            background: transparent;
        }

        .btn-watch-mini:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(240, 192, 64, 0.08);
        }

        .btn-watch-mini.live-now {
            border-color: var(--red-live);
            color: var(--red-live);
            animation: pulse-border 2s ease-in-out infinite;
        }

        @keyframes pulse-border {
            0%,
            100% {
                border-color: rgba(255, 59, 59, 0.5);
            }
            50% {
                border-color: rgba(255, 59, 59, 1);
            }
        }

        /* ========== NEWS LIST ========== */
        .news-grid-champions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .news-featured-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .news-featured-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .news-featured-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .news-featured-body {
            padding: 18px 20px;
        }

        .news-featured-body .news-tag {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 3px;
            margin-bottom: 8px;
        }

        .news-featured-body h3 {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-featured-body p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .news-featured-body .read-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--gold);
            transition: color var(--transition-fast);
        }

        .news-featured-body .read-more:hover {
            color: #fff;
        }

        .news-list-side {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .news-list-item {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 14px 16px;
            transition: all var(--transition-smooth);
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .news-list-item:hover {
            border-color: rgba(255, 255, 255, 0.18);
            background: rgba(24, 36, 56, 0.8);
        }

        .news-list-item .news-date-tag {
            font-size: 11px;
            color: var(--text-muted);
            white-space: nowrap;
            min-width: 70px;
            font-weight: 500;
        }

        .news-list-item .news-item-content h4 {
            font-size: 13.5px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 3px;
            line-height: 1.4;
        }

        .news-list-item .news-item-content p {
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .badge-hot {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            margin-left: 6px;
            vertical-align: middle;
        }

        .badge-new {
            display: inline-block;
            background: var(--orange);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            margin-left: 6px;
            vertical-align: middle;
        }

        .badge-recommend {
            display: inline-block;
            background: var(--gold);
            color: #0B1A2E;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            margin-left: 6px;
            vertical-align: middle;
        }

        /* ========== TOP SCORERS ========== */
        .scorers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 14px;
        }

        .scorer-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .scorer-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .scorer-card .player-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-muted);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .scorer-card .scorer-rank {
            font-family: var(--font-mono);
            font-size: 22px;
            font-weight: 900;
            color: var(--gold);
        }

        .scorer-card .scorer-name {
            font-weight: 600;
            color: #fff;
            font-size: 14px;
            margin: 4px 0;
        }

        .scorer-card .scorer-team {
            font-size: 12px;
            color: var(--text-muted);
        }

        .scorer-card .scorer-goals {
            font-family: var(--font-mono);
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
            margin-top: 4px;
        }

        /* ========== VIDEO CARDS ========== */
        .video-cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .video-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .video-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .video-thumb {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
            position: relative;
        }

        .video-thumb-wrap {
            position: relative;
        }

        .video-thumb-wrap .play-icon-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: background var(--transition-fast);
        }

        .video-thumb-wrap .play-icon-overlay i {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.85);
            transition: all var(--transition-fast);
        }

        .video-card:hover .play-icon-overlay {
            background: rgba(0, 0, 0, 0.2);
        }
        .video-card:hover .play-icon-overlay i {
            color: #fff;
            transform: scale(1.1);
        }

        .video-card-body {
            padding: 14px;
        }

        .video-card-body h4 {
            font-size: 13.5px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            line-height: 1.4;
        }

        .video-card-body .video-duration {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* ========== KNOCKOUT PREVIEW ========== */
        .knockout-preview {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            text-align: center;
        }

        .knockout-slot {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            padding: 14px 10px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .knockout-slot:hover {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .knockout-slot .ko-label {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .knockout-slot .ko-teams {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            line-height: 1.5;
        }

        .knockout-slot .ko-vs {
            color: var(--gold);
            font-weight: 700;
            font-size: 12px;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-question i {
            font-size: 14px;
            color: var(--text-muted);
            transition: transform var(--transition-fast);
        }

        .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: var(--gold);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-answer-inner .faq-conclusion {
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .faq-answer-inner .faq-detail {
            margin-bottom: 6px;
        }

        .faq-answer-inner .faq-guide {
            color: var(--gold);
            font-weight: 500;
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: rgba(18, 28, 46, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(240, 192, 64, 0.3);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            text-align: center;
            box-shadow: 0 0 40px rgba(240, 192, 64, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-banner h2 {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto 10px;
            position: relative;
            z-index: 1;
        }

        .cta-form input {
            flex: 1;
            padding: 13px 18px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 14px;
        }

        .cta-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.08);
        }

        .cta-form .btn-gold {
            flex-shrink: 0;
        }

        .cta-privacy {
            font-size: 12px;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--bg-footer);
            padding: 56px 0 20px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
            margin-bottom: 36px;
        }

        .footer-grid .footer-brand-col {
            grid-column: span 1;
        }

        .footer-brand-col .footer-logo {
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 10px;
        }

        .footer-brand-col .footer-logo i {
            color: var(--gold);
            font-size: 20px;
        }

        .footer-brand-col .footer-logo span {
            font-weight: 700;
            font-size: 17px;
            color: #fff;
        }

        .footer-brand-col .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .footer-social {
            display: flex;
            gap: 8px;
        }

        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 13px;
            transition: all var(--transition-fast);
        }

        .footer-social a:hover {
            background: rgba(240, 192, 64, 0.2);
            color: var(--gold);
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-col ul li {
            margin-bottom: 5px;
        }

        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 16px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .footer-bottom .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-bottom: 6px;
        }

        .footer-bottom .footer-bottom-links a {
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }

        .footer-bottom .footer-bottom-links a:hover {
            color: #fff;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-text h1 {
                font-size: 30px;
            }
            .hero-card {
                max-width: 440px;
            }
            .news-grid-champions {
                grid-template-columns: 1fr;
            }
            .video-cards-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .knockout-preview {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .search-box {
                width: 150px;
            }
            .desktop-nav a {
                padding: 6px 8px;
                font-size: 12.5px;
            }
            .section {
                padding: 56px 0;
            }
        }

        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .search-box {
                display: none;
            }
            .btn-cta-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .hero-section {
                padding: 40px 0 36px;
            }
            .hero-text h1 {
                font-size: 26px;
            }
            .hero-actions {
                flex-direction: column;
            }
            .hero-actions .btn-gold,
            .hero-actions .btn-glass {
                width: 100%;
                justify-content: center;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .scorers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .video-cards-row {
                grid-template-columns: 1fr;
            }
            .knockout-preview {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-form {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .section {
                padding: 40px 0;
            }
            .section-header h2 {
                font-size: 22px;
            }
            .standings-table {
                font-size: 12px;
                min-width: 600px;
            }
        }

        @media (max-width: 520px) {
            .hero-text h1 {
                font-size: 22px;
            }
            .hero-score-display .score-num {
                font-size: 30px;
            }
            .hero-match-teams {
                gap: 10px;
            }
            .hero-team .team-crest {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .scorers-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .knockout-preview {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .container-main {
                padding: 0 14px;
            }
            .cta-banner {
                padding: 24px 18px;
            }
            .cta-banner h2 {
                font-size: 20px;
            }
        }

/* roulang page: category6 */
:root {
            --bg-deep: #0B1A2E;
            --bg-footer: #060F1A;
            --bg-card: rgba(18, 28, 46, 0.75);
            --bg-hero-csl: #0F1826;
            --accent-green: #3CB371;
            --accent-gold: #F0C040;
            --accent-orange: #FF6B4A;
            --accent-red: #C93A3A;
            --text-primary: #FFFFFF;
            --text-secondary: #C8D0D8;
            --text-muted: #8899AA;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-medium: rgba(255, 255, 255, 0.16);
            --border-glow: rgba(240, 192, 64, 0.45);
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 14px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --shadow-glow-gold: 0 0 20px rgba(240, 192, 64, 0.35);
            --shadow-glow-gold-hover: 0 0 32px rgba(240, 192, 64, 0.55);
            --shadow-glow-red: 0 0 18px rgba(201, 58, 58, 0.3);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-card: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-mono: 'SF Mono', 'Roboto Mono', 'Consolas', 'Menlo', monospace;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --container-max: 1320px;
            --container-padding: 24px;
            --section-gap: 80px;
            --section-gap-inner: 40px;
            --card-gap: 20px;
            --header-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-secondary);
            background: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
            font-size: inherit;
            outline: none;
            border: none;
            background: none;
        }

        button {
            cursor: pointer;
        }

        ul,
        ol {
            list-style: none;
        }

        table {
            border-collapse: collapse;
            width: 100%;
        }

        .container-main {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            width: 100%;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 26, 46, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            gap: 16px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .header-logo i {
            font-size: 22px;
            color: var(--accent-gold);
        }

        .header-logo span {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .header-nav a {
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .header-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .header-nav a.active {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .header-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 2px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .header-search {
            position: relative;
            display: flex;
            align-items: center;
        }

        .header-search input {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-subtle);
            color: #fff;
            padding: 8px 14px 8px 36px;
            border-radius: 20px;
            font-size: 13px;
            width: 200px;
            transition: all var(--transition-smooth);
            letter-spacing: 0.2px;
        }

        .header-search input::placeholder {
            color: var(--text-muted);
        }
        .header-search input:focus {
            border-color: var(--border-medium);
            background: rgba(255, 255, 255, 0.1);
            width: 240px;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.08);
        }

        .header-search i {
            position: absolute;
            left: 13px;
            color: var(--text-muted);
            font-size: 13px;
            pointer-events: none;
        }

        .btn-cta-sm {
            background: var(--accent-gold);
            color: #0B1A2E;
            font-weight: 700;
            font-size: 13px;
            padding: 8px 18px;
            border-radius: 20px;
            white-space: nowrap;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-gold);
            letter-spacing: 0.3px;
        }

        .btn-cta-sm:hover {
            box-shadow: var(--shadow-glow-gold-hover);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 22px;
            color: #fff;
            cursor: pointer;
            padding: 6px;
            border-radius: var(--radius-sm);
        }
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        /* Mobile Nav Drawer */
        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11, 20, 36, 0.97);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            z-index: 999;
            flex-direction: column;
            padding: 24px var(--container-padding);
            gap: 6px;
            overflow-y: auto;
        }
        .mobile-nav-drawer.open {
            display: flex;
        }
        .mobile-nav-drawer a {
            display: block;
            padding: 14px 16px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .mobile-nav-drawer a:hover,
        .mobile-nav-drawer a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .mobile-nav-drawer a.active {
            color: var(--accent-gold);
            border-left: 3px solid var(--accent-gold);
            font-weight: 600;
        }

        /* Hero Section - CSL */
        .hero-csl {
            position: relative;
            padding: 64px 0 56px;
            background: linear-gradient(170deg, #0F1826 0%, #140C12 35%, #0B1A2E 70%, #0B1A2E 100%);
            overflow: hidden;
        }

        .hero-csl::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(201, 58, 58, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 58, 58, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .hero-csl::after {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-csl-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        .hero-csl-text h1 {
            font-size: 38px;
            font-weight: 900;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .hero-csl-text h1 .accent-red {
            color: #E05555;
        }
        .hero-csl-text .hero-subtitle {
            font-size: 15.5px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin-bottom: 20px;
            max-width: 480px;
        }
        .hero-csl-text .season-tag {
            display: inline-block;
            background: rgba(201, 58, 58, 0.2);
            color: #E05555;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
            border: 1px solid rgba(201, 58, 58, 0.3);
            letter-spacing: 0.3px;
        }
        .hero-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn-primary-gold {
            background: var(--accent-gold);
            color: #0B1A2E;
            font-weight: 700;
            font-size: 14.5px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-glow-gold);
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        .btn-primary-gold:hover {
            box-shadow: var(--shadow-glow-gold-hover);
            transform: translateY(-2px);
        }
        .btn-secondary-glass {
            border: 1px solid var(--border-medium);
            color: #fff;
            font-weight: 600;
            font-size: 14.5px;
            padding: 12px 26px;
            border-radius: var(--radius-sm);
            transition: all var(--transition-smooth);
            background: rgba(255, 255, 255, 0.04);
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        .btn-secondary-glass:hover {
            border-color: rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }
        .btn-outline-sm {
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-size: 12.5px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 16px;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-outline-sm:hover {
            border-color: var(--border-medium);
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .hero-csl-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .hero-csl-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero-csl-card .league-logo-placeholder {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            border: 2px solid rgba(240, 192, 64, 0.3);
        }
        .hero-csl-card .league-logo-placeholder i {
            font-size: 30px;
            color: var(--accent-gold);
        }
        .hero-csl-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .hero-csl-card .card-stat-row {
            display: flex;
            gap: 20px;
            margin-top: 14px;
            flex-wrap: wrap;
        }
        .hero-csl-card .stat-item {
            text-align: center;
            min-width: 60px;
        }
        .hero-csl-card .stat-value {
            font-family: var(--font-mono);
            font-size: 26px;
            font-weight: 700;
            color: var(--accent-gold);
        }
        .hero-csl-card .stat-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Common */
        .section-block {
            padding: var(--section-gap) 0;
        }
        .section-block-inner {
            padding: var(--section-gap-inner) 0;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 0.4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title .title-icon {
            color: var(--accent-gold);
            font-size: 22px;
        }
        .section-subtitle {
            font-size: 14.5px;
            color: var(--text-muted);
            margin-bottom: 32px;
            letter-spacing: 0.2px;
        }
        .section-divider {
            border: none;
            border-top: 1px solid var(--border-subtle);
            margin: 0;
        }

        /* Glass Card */
        .glass-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: all var(--transition-card);
        }
        .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.18);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }

        /* Standings Table */
        .standings-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            min-width: 700px;
            font-size: 14px;
        }
        .standings-table thead th {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            padding: 12px 10px;
            text-align: center;
            border-bottom: 2px solid var(--border-subtle);
            white-space: nowrap;
        }
        .standings-table thead th:first-child {
            text-align: left;
            padding-left: 16px;
            width: 50px;
        }
        .standings-table thead th:nth-child(2) {
            text-align: left;
            min-width: 140px;
        }
        .standings-table tbody td {
            padding: 12px 10px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .standings-table tbody td:first-child {
            text-align: left;
            padding-left: 16px;
            font-weight: 700;
            font-family: var(--font-mono);
            color: var(--text-muted);
        }
        .standings-table tbody td:nth-child(2) {
            text-align: left;
            font-weight: 600;
            color: #fff;
        }
        .standings-table tbody tr.row-top {
            background: rgba(240, 192, 64, 0.06);
        }
        .standings-table tbody tr.row-top td:first-child {
            color: var(--accent-gold);
        }
        .standings-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .standings-table .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .standings-table .team-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #fff;
        }
        .team-dot-red {
            background: #C93A3A;
        }
        .team-dot-blue {
            background: #2B5EA7;
        }
        .team-dot-green {
            background: #1A7A3A;
        }
        .team-dot-orange {
            background: #E87A20;
        }
        .team-dot-cyan {
            background: #1A8A8A;
        }
        .team-dot-purple {
            background: #6B3FA0;
        }
        .team-dot-teal {
            background: #2E8B6F;
        }
        .team-dot-slate {
            background: #556677;
        }

        .pts-highlight {
            font-weight: 800;
            font-family: var(--font-mono);
            color: var(--accent-gold);
            font-size: 15px;
        }
        .form-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 1px;
        }
        .form-win {
            background: #3CB371;
        }
        .form-draw {
            background: #8899AA;
        }
        .form-loss {
            background: #C93A3A;
        }

        /* Match Cards */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--card-gap);
        }
        .match-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            transition: all var(--transition-card);
            box-shadow: var(--shadow-card);
        }
        .match-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .match-card .team-side {
            text-align: center;
            flex: 1;
            min-width: 0;
        }
        .match-card .team-dot-sm {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            margin: 0 auto 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
        }
        .match-card .team-name-sm {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-card .match-center {
            text-align: center;
            flex-shrink: 0;
        }
        .match-card .match-score {
            font-family: var(--font-mono);
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-gold);
            letter-spacing: 2px;
        }
        .match-card .match-time {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .match-card .match-status-tag {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 10px;
            letter-spacing: 0.4px;
        }
        .tag-live {
            background: rgba(255, 107, 74, 0.2);
            color: var(--accent-orange);
            animation: pulse-live 1.8s ease-in-out infinite;
        }
        .tag-upcoming {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
        }
        .tag-finished {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
        }

        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* News List */
        .news-list-csl {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .news-item-csl {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            transition: all var(--transition-card);
            align-items: flex-start;
        }
        .news-item-csl:hover {
            border-color: rgba(255, 255, 255, 0.18);
            transform: translateX(3px);
            box-shadow: var(--shadow-card);
        }
        .news-item-csl .news-thumb {
            width: 100px;
            height: 68px;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.04);
        }
        .news-item-csl .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-item-csl .news-date {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }
        .news-item-csl .news-title {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin: 3px 0 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item-csl .news-excerpt {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-tag-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            letter-spacing: 0.3px;
            margin-left: 6px;
        }
        .badge-new {
            background: rgba(255, 107, 74, 0.2);
            color: var(--accent-orange);
        }
        .badge-hot {
            background: rgba(201, 58, 58, 0.2);
            color: #E05555;
        }
        .badge-featured {
            background: rgba(240, 192, 64, 0.2);
            color: var(--accent-gold);
        }

        /* Scorer Cards */
        .scorer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: var(--card-gap);
        }
        .scorer-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            transition: all var(--transition-card);
            box-shadow: var(--shadow-card);
        }
        .scorer-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .scorer-card .scorer-rank {
            font-family: var(--font-mono);
            font-size: 28px;
            font-weight: 900;
            color: var(--accent-gold);
            flex-shrink: 0;
            width: 36px;
            text-align: center;
        }
        .scorer-card .scorer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-muted);
        }
        .scorer-card .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-card .scorer-name {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .scorer-card .scorer-team {
            font-size: 12px;
            color: var(--text-muted);
        }
        .scorer-card .scorer-goals {
            font-family: var(--font-mono);
            font-size: 18px;
            font-weight: 700;
            color: var(--accent-green);
            flex-shrink: 0;
        }

        /* Video Cards */
        .video-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: var(--card-gap);
        }
        .video-card {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-card);
            box-shadow: var(--shadow-card);
            cursor: pointer;
        }
        .video-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
        }
        .video-card .video-thumb {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
        }
        .video-card .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-card .video-play-icon {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: all var(--transition-smooth);
        }
        .video-card:hover .video-play-icon {
            background: rgba(0, 0, 0, 0.2);
        }
        .video-card .video-play-icon i {
            font-size: 42px;
            color: #fff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
        }
        .video-card .video-body {
            padding: 14px 16px;
        }
        .video-card .video-title {
            font-size: 14.5px;
            font-weight: 600;
            color: #fff;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .video-card .video-meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
            display: flex;
            gap: 12px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-card);
        }
        .faq-item summary {
            padding: 18px 20px;
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.3px;
            user-select: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary .faq-chevron {
            transition: transform var(--transition-smooth);
            color: var(--text-muted);
            font-size: 14px;
            flex-shrink: 0;
        }
        .faq-item[open] summary .faq-chevron {
            transform: rotate(180deg);
            color: var(--accent-gold);
        }
        .faq-item[open] summary {
            border-bottom: 1px solid var(--border-subtle);
        }
        .faq-item .faq-answer {
            padding: 16px 20px 20px;
            font-size: 14.5px;
            color: var(--text-secondary);
            line-height: 1.75;
            letter-spacing: 0.2px;
        }
        .faq-item .faq-answer strong {
            color: var(--accent-gold);
        }

        /* CTA Banner */
        .cta-banner {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-glow-gold);
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-banner h3 {
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.4px;
        }
        .cta-banner p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .cta-banner .cta-input-group {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-banner input {
            flex: 1;
            min-width: 220px;
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-medium);
            color: #fff;
            font-size: 14px;
            letter-spacing: 0.2px;
        }
        .cta-banner input::placeholder {
            color: var(--text-muted);
        }
        .cta-banner input:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 4px rgba(240, 192, 64, 0.08);
        }
        .cta-privacy {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
            position: relative;
            z-index: 1;
            letter-spacing: 0.2px;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-footer);
            padding: 56px 0 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .footer-social-icons {
            display: flex;
            gap: 10px;
        }
        .footer-social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-smooth);
            color: var(--text-muted);
            font-size: 14px;
        }
        .footer-social-icons a:hover {
            background: rgba(240, 192, 64, 0.2);
            color: var(--accent-gold);
        }
        .footer-col-title {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 18px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.9;
            letter-spacing: 0.2px;
        }
        .footer-bottom a {
            color: var(--text-muted);
            margin: 0 4px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: #fff;
        }
        .footer-bottom .footer-links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px 16px;
            margin-bottom: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-csl-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .hero-csl-text h1 {
                font-size: 30px;
            }
            .hero-csl-card {
                max-width: 480px;
            }
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            .footer-grid>div:first-child {
                grid-column: 1/-1;
            }
            .match-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
            .scorer-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
            .video-cards-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            }
            .section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .header-nav {
                display: none;
            }
            .header-search {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .btn-cta-sm {
                font-size: 12px;
                padding: 7px 14px;
            }
            .hero-csl {
                padding: 40px 0 36px;
            }
            .hero-csl-text h1 {
                font-size: 26px;
            }
            .hero-csl-text .hero-subtitle {
                font-size: 14px;
            }
            .hero-btn-group {
                flex-direction: column;
                gap: 8px;
            }
            .hero-btn-group .btn-primary-gold,
            .hero-btn-group .btn-secondary-glass {
                width: 100%;
                justify-content: center;
            }
            .section-block {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .match-card {
                padding: 14px 10px;
            }
            .match-card .match-score {
                font-size: 20px;
            }
            .match-card .team-name-sm {
                font-size: 11px;
            }
            .scorer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .video-cards-grid {
                grid-template-columns: 1fr;
            }
            .news-item-csl {
                flex-direction: column;
                gap: 10px;
            }
            .news-item-csl .news-thumb {
                width: 100%;
                height: 140px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .cta-banner {
                padding: 28px 18px;
            }
            .cta-banner h3 {
                font-size: 22px;
            }
            .standings-table {
                font-size: 12px;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 8px 6px;
            }
            .hero-csl-card .card-stat-row {
                gap: 10px;
            }
            .hero-csl-card .stat-value {
                font-size: 22px;
            }
        }

        @media (max-width: 520px) {
            .header-logo span {
                font-size: 15px;
            }
            .header-logo i {
                font-size: 18px;
            }
            .hero-csl-text h1 {
                font-size: 22px;
            }
            .hero-csl-card {
                padding: 18px;
            }
            .hero-csl-card .league-logo-placeholder {
                width: 50px;
                height: 50px;
            }
            .hero-csl-card .league-logo-placeholder i {
                font-size: 22px;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .scorer-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .section-title {
                font-size: 20px;
            }
            .news-item-csl .news-thumb {
                height: 100px;
            }
            .btn-primary-gold,
            .btn-secondary-glass {
                font-size: 13px;
                padding: 10px 18px;
            }
            .standings-table-wrap {
                margin: 0 -16px;
                padding: 0 16px;
            }
            .cta-banner input {
                min-width: 100%;
            }
        }

        @media (max-width: 360px) {
            .hero-csl-text h1 {
                font-size: 20px;
            }
            .hero-csl-card .stat-value {
                font-size: 18px;
            }
            .match-card .match-score {
                font-size: 18px;
            }
        }
