/* roulang page: index */
:root {
            --bg-base: #0a0f1e;
            --bg-secondary: #0b1120;
            --glass-bg: rgba(15, 26, 48, 0.75);
            --glass-border: rgba(138, 180, 255, .18);
            --primary: #2f81f7;
            --primary-bright: #5ea2ff;
            --accent-cyan: #7cd6ff;
            --amber: #f5a623;
            --neon-cyan: #2de2c5;
            --danger: #ff5c5c;
            --success: #4cc38a;
            --text-base: #dce6f2;
            --text-strong: #f3f7ff;
            --text-muted: #93a8c8;
            --radius-card: 16px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, .35);
            --inner-glow: rgba(87, 149, 255, .12);
            --font-num: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
            background: var(--bg-base);
            color: var(--text-base);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }
        body.drawer-open {
            overflow: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            color: inherit;
        }
        button:focus,
        a:focus,
        input:focus {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }
        section {
            padding: 96px 0;
            position: relative;
        }
        @media (max-width: 768px) {
            section {
                padding: 64px 0;
            }
        }
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 0 var(--inner-glow);
            pointer-events: none;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #fff;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(47, 129, 247, .45), 0 8px 24px rgba(0, 0, 0, .3);
            transition: all .25s ease;
            font-size: 15px;
            letter-spacing: .02em;
            border: 1px solid rgba(126, 204, 255, .3);
        }
        .btn-primary:hover {
            box-shadow: 0 0 32px rgba(47, 129, 247, .7), 0 12px 32px rgba(0, 0, 0, .4);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #3b8cfa, #6aaaff);
        }
        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 0 16px rgba(47, 129, 247, .4);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: rgba(15, 26, 48, .6);
            color: var(--text-base);
            font-weight: 500;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all .25s ease;
            font-size: 15px;
        }
        .btn-secondary:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
            transform: translateX(2px);
        }
        .btn-secondary:active {
            transform: translateY(1px);
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            letter-spacing: .03em;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(245, 166, 35, .18);
            color: var(--amber);
            border: 1px solid rgba(245, 166, 35, .35);
        }
        .badge-upcoming {
            background: rgba(147, 168, 200, .15);
            color: var(--text-muted);
            border: 1px solid rgba(147, 168, 200, .25);
        }
        .badge-finished {
            background: rgba(76, 195, 138, .15);
            color: var(--success);
            border: 1px solid rgba(76, 195, 138, .3);
        }
        .badge-cyan {
            background: rgba(45, 226, 197, .12);
            color: var(--neon-cyan);
            border: 1px solid rgba(45, 226, 197, .3);
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            z-index: 100;
            background: rgba(10, 15, 30, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }
        .header-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo:hover {
            color: var(--accent-cyan);
        }
        .logo-icon {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
            border-radius: 6px;
            display: inline-block;
            flex-shrink: 0;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hamburger {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: all .25s ease;
        }
        .hamburger:hover {
            border-color: rgba(126, 204, 255, .5);
            background: rgba(15, 26, 48, .9);
        }
        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-base);
            border-radius: 2px;
            transition: all .3s ease;
        }
        .header-cta {
            font-size: 14px;
            padding: 10px 20px;
        }
        @media (max-width: 520px) {
            .header-cta {
                display: none;
            }
            .header-inner {
                padding: 0 16px;
            }
        }
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            z-index: 200;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
        }
        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }
        .drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 380px;
            max-width: 100%;
            background: rgba(11, 17, 32, .96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-left: 1px solid rgba(138, 180, 255, .2);
            z-index: 210;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.22, .61, .36, 1);
            display: flex;
            flex-direction: column;
            padding: 28px 32px;
            overflow-y: auto;
        }
        .drawer.active {
            transform: translateX(0);
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-shrink: 0;
        }
        .drawer-logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .drawer-close {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(15, 26, 48, .8);
            border: 1px solid rgba(138, 180, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--text-muted);
            transition: all .2s ease;
        }
        .drawer-close:hover {
            border-color: rgba(255, 92, 92, .5);
            color: var(--danger);
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }
        .drawer-link {
            padding: 16px 18px;
            border-radius: 12px;
            font-size: 24px;
            font-weight: 600;
            color: var(--text-strong);
            transition: all .25s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border: 1px solid transparent;
        }
        .drawer-link:hover {
            background: rgba(15, 26, 48, .7);
            border-color: rgba(138, 180, 255, .2);
            color: var(--accent-cyan);
        }
        .drawer-link .sub {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            white-space: nowrap;
        }
        .drawer-cta {
            margin-top: 24px;
            text-align: center;
            flex-shrink: 0;
        }
        @media (max-width: 520px) {
            .drawer {
                width: 100%;
                padding: 20px;
            }
            .drawer-link {
                font-size: 20px;
                padding: 14px;
            }
        }
        .hero {
            padding-top: 160px;
            padding-bottom: 80px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-base) 60%),
                url('/assets/images/b89cfc2a6d2c31d1.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(47, 129, 247, .15), transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(45, 226, 197, .08), transparent 50%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero-badge-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .hero-status-bar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .2);
            border-radius: 30px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }
        .hero-status-bar .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(76, 195, 138, .5);
            }
            50% {
                box-shadow: 0 0 0 6px rgba(76, 195, 138, .1);
            }
        }
        .hero-icon-matrix {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
            margin-bottom: 28px;
        }
        .hero-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 14px 18px;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .18);
            border-radius: 14px;
            font-size: 13px;
            color: var(--text-muted);
            backdrop-filter: blur(10px);
            min-width: 80px;
            transition: all .25s ease;
        }
        .hero-icon-item:hover {
            border-color: rgba(126, 204, 255, .45);
            color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(47, 129, 247, .2);
        }
        .hero-icon-item .icon {
            font-size: 22px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 24px;
        }
        .hero h1 {
            font-size: 48px;
            line-height: 1.25;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .01em;
            margin-bottom: 12px;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 38px;
            }
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
                line-height: 1.35;
            }
            .hero {
                padding-top: 120px;
                padding-bottom: 48px;
                min-height: auto;
            }
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .section-label::before {
            content: '';
            width: 16px;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 2px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-strong);
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 640px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }
            .section-desc {
                font-size: 14px;
            }
        }
        .score-card {
            min-width: 240px;
            max-width: 240px;
            padding: 0;
            background: rgba(15, 26, 48, .8);
            border: 1px solid rgba(138, 180, 255, .18);
            border-radius: 14px;
            overflow: hidden;
            flex-shrink: 0;
            transition: all .3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
        }
        .score-card:hover {
            border-color: rgba(126, 204, 255, .5);
            box-shadow: 0 8px 28px rgba(47, 129, 247, .3);
            transform: translateY(-2px);
        }
        .score-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            border-bottom: 1px solid rgba(138, 180, 255, .1);
        }
        .score-card-body {
            padding: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }
        .score-team {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-base);
            font-weight: 500;
            min-width: 60px;
        }
        .score-number {
            font-family: var(--font-num);
            font-size: 28px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .02em;
        }
        .score-card-footer {
            padding: 8px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(138, 180, 255, .08);
            font-size: 12px;
            color: var(--text-muted);
        }
        .score-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 12px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }
        .score-track::-webkit-scrollbar {
            height: 4px;
        }
        .score-track::-webkit-scrollbar-track {
            background: rgba(138, 180, 255, .05);
            border-radius: 4px;
        }
        .score-track::-webkit-scrollbar-thumb {
            background: rgba(138, 180, 255, .3);
            border-radius: 4px;
        }
        .score-card {
            scroll-snap-align: start;
        }
        .league-chip {
            display: inline-flex;
            align-items: center;
            padding: 10px 18px;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .18);
            border-radius: 12px;
            font-size: 14px;
            color: var(--text-base);
            font-weight: 500;
            transition: all .25s ease;
            backdrop-filter: blur(10px);
        }
        .league-chip:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 0 16px rgba(47, 129, 247, .2);
            transform: translateY(-1px);
        }
        .stat-number {
            font-family: var(--font-num);
            font-size: 40px;
            font-weight: 700;
            color: var(--accent-cyan);
            line-height: 1.1;
        }
        .pricing-card {
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all .3s ease;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
            border-color: rgba(126, 204, 255, .4);
        }
        .pricing-card.recommended {
            border-color: rgba(126, 204, 255, .6);
            box-shadow: 0 0 32px rgba(47, 129, 247, .3), 0 12px 40px rgba(0, 0, 0, .4);
            background: rgba(15, 26, 48, .9);
        }
        .price-amount {
            font-family: var(--font-num);
            font-size: 36px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .price-unit {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 400;
        }
        .faq-item {
            border: 1px solid rgba(138, 180, 255, .15);
            border-radius: 12px;
            background: rgba(15, 26, 48, .6);
            overflow: hidden;
            transition: all .25s ease;
        }
        .faq-item:hover {
            border-color: rgba(126, 204, 255, .3);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-strong);
            text-align: left;
            letter-spacing: .01em;
            transition: all .2s ease;
        }
        .faq-question:hover {
            color: var(--accent-cyan);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
            padding: 0 20px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-bottom: 18px;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }
        .faq-arrow {
            font-size: 16px;
            color: var(--text-muted);
            transition: all .3s ease;
            flex-shrink: 0;
        }
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid rgba(138, 180, 255, .12);
            padding: 64px 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 12px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-strong);
            margin-bottom: 16px;
            letter-spacing: .02em;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-col ul a {
            font-size: 13px;
            color: var(--text-muted);
        }
        .footer-col ul a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            border-top: 1px solid rgba(138, 180, 255, .1);
            padding-top: 24px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: .02em;
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        .info-row {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(138, 180, 255, .12);
        }
        .info-row:last-child {
            border-bottom: none;
        }
        .info-row .date {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
            font-family: var(--font-num);
        }
        .info-row .title {
            font-size: 14px;
            color: var(--text-base);
            font-weight: 500;
            transition: color .2s ease;
        }
        .info-row:hover .title {
            color: var(--accent-cyan);
        }
        .glass-grid {
            display: grid;
            gap: 24px;
        }
        @media (min-width: 1024px) {
            .glass-grid.cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            .glass-grid.cols-4 {
                grid-template-columns: repeat(4, 1fr);
            }
            .glass-grid.cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .glass-grid.cols-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .glass-grid.cols-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .glass-grid.cols-2 {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .glass-grid.cols-3, .glass-grid.cols-4, .glass-grid.cols-2 {
                grid-template-columns: 1fr;
            }
        }
        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(138, 180, 255, .12);
            border-radius: 3px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
            transition: width .5s ease;
        }
        .review-card {
            padding: 20px;
            background: rgba(15, 26, 48, .5);
            border-radius: 14px;
            border: 1px solid rgba(138, 180, 255, .1);
        }
        .review-card .stars {
            color: var(--amber);
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .review-card .text {
            font-size: 13px;
            color: var(--text-base);
            line-height: 1.7;
        }
        .review-card .source {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 8px;
            font-weight: 500;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb .sep {
            color: rgba(147, 168, 200, .4);
        }
        .tag-pill {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background: rgba(15, 26, 48, .6);
            border: 1px solid rgba(138, 180, 255, .15);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-muted);
            transition: all .2s ease;
        }
        .tag-pill:hover {
            border-color: rgba(126, 204, 255, .4);
            color: var(--accent-cyan);
        }
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .screenshot-card {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(138, 180, 255, .15);
            background: rgba(15, 26, 48, .6);
            transition: all .3s ease;
        }
        .screenshot-card:hover {
            border-color: rgba(126, 204, 255, .4);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
        }
        .screenshot-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .screenshot-card .caption {
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .cta-section {
            background: linear-gradient(135deg, rgba(47, 129, 247, .15), rgba(45, 226, 197, .08)), url('/assets/images/fa813eb4dee9fd89.webp') center/cover no-repeat;
            background-blend-mode: overlay;
            border-radius: 20px;
            padding: 48px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(138, 180, 255, .25);
            box-shadow: 0 0 40px rgba(47, 129, 247, .2);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(126, 204, 255, .06), transparent 70%);
            pointer-events: none;
        }
        .cta-section > * {
            position: relative;
            z-index: 1;
        }
        .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 12px;
        }
        .cta-desc {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 520px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .cta-title {
                font-size: 24px;
            }
            .cta-section {
                padding: 32px 20px;
            }
        }
        .hidden-desktop {
            display: none;
        }
        @media (max-width: 768px) {
            .hidden-desktop {
                display: block;
            }
            .hidden-mobile {
                display: none;
            }
        }

/* roulang page: category2 */
:root {
            --bg-base: #0a0f1e;
            --bg-secondary: #0b1120;
            --glass-bg: rgba(15, 26, 48, 0.75);
            --glass-border: rgba(138, 180, 255, .18);
            --primary: #2f81f7;
            --primary-bright: #5ea2ff;
            --accent-cyan: #7cd6ff;
            --amber: #f5a623;
            --neon-cyan: #2de2c5;
            --danger: #ff5c5c;
            --success: #4cc38a;
            --text-base: #dce6f2;
            --text-strong: #f3f7ff;
            --text-muted: #93a8c8;
            --radius-card: 16px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, .35);
            --inner-glow: rgba(87, 149, 255, .12);
            --font-num: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
            background: var(--bg-base);
            color: var(--text-base);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            margin: 0;
        }

        body.drawer-open {
            overflow: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--accent-cyan);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            color: inherit;
        }

        button:focus,
        a:focus,
        input:focus,
        select:focus {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }

        section {
            padding: 64px 0;
            position: relative;
        }

        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 0 var(--inner-glow);
            pointer-events: none;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #fff;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(47, 129, 247, .45), 0 8px 24px rgba(0, 0, 0, .3);
            transition: all .25s ease;
            font-size: 15px;
            letter-spacing: .02em;
            border: 1px solid rgba(126, 204, 255, .3);
        }

        .btn-primary:hover {
            box-shadow: 0 0 32px rgba(47, 129, 247, .7), 0 12px 32px rgba(0, 0, 0, .4);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #3b8cfa, #6aaaff);
        }

        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 0 16px rgba(47, 129, 247, .4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: rgba(15, 26, 48, .6);
            color: var(--text-base);
            font-weight: 500;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all .25s ease;
            font-size: 15px;
        }

        .btn-secondary:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
            transform: translateX(2px);
        }

        .btn-secondary:active {
            transform: translateY(1px);
        }

        .btn-sm {
            padding: 10px 18px;
            font-size: 14px;
            border-radius: 10px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            letter-spacing: .03em;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(245, 166, 35, .18);
            color: var(--amber);
            border: 1px solid rgba(245, 166, 35, .35);
        }

        .badge-upcoming {
            background: rgba(147, 168, 200, .15);
            color: var(--text-muted);
            border: 1px solid rgba(147, 168, 200, .25);
        }

        .badge-finished {
            background: rgba(76, 195, 138, .15);
            color: var(--success);
            border: 1px solid rgba(76, 195, 138, .3);
        }

        .badge-cyan {
            background: rgba(45, 226, 197, .12);
            color: var(--neon-cyan);
            border: 1px solid rgba(45, 226, 197, .3);
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            z-index: 100;
            background: rgba(10, 15, 30, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }

        .header-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .02em;
            white-space: nowrap;
            transition: color .2s ease;
        }

        .logo:hover {
            color: var(--accent-cyan);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hamburger {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .2);
            border-radius: 10px;
            font-size: 20px;
            color: var(--text-strong);
            transition: all .25s ease;
        }

        .hamburger:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 0 16px rgba(47, 129, 247, .25);
        }

        .hamburger:active {
            transform: scale(.96);
        }

        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, .6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 150;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s ease;
        }

        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 360px;
            max-width: 100%;
            background: rgba(11, 17, 32, .95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid rgba(138, 180, 255, .18);
            z-index: 200;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .drawer.open {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 24px 16px;
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            flex-shrink: 0;
        }

        .drawer-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-strong);
        }

        .drawer-close {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 26, 48, .7);
            border: 1px solid rgba(138, 180, 255, .2);
            border-radius: 10px;
            font-size: 16px;
            color: var(--text-muted);
            transition: all .2s ease;
        }

        .drawer-close:hover {
            color: #fff;
            border-color: rgba(126, 204, 255, .5);
            background: rgba(47, 129, 247, .15);
        }

        .drawer-nav {
            padding: 16px 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
        }

        .drawer-link {
            display: block;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid transparent;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-base);
            transition: all .25s ease;
            line-height: 1.3;
            cursor: pointer;
        }

        .drawer-link .sub {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .drawer-link:hover {
            background: rgba(15, 26, 48, .6);
            border-color: rgba(138, 180, 255, .2);
            color: var(--accent-cyan);
        }

        .drawer-cta {
            padding: 16px 24px 24px;
            border-top: 1px solid rgba(138, 180, 255, .12);
            flex-shrink: 0;
        }

        .footer {
            background: rgba(10, 15, 30, .95);
            border-top: 1px solid rgba(138, 180, 255, .12);
            padding: 56px 0 24px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-strong);
            margin-bottom: 14px;
            letter-spacing: .02em;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: var(--text-muted);
            transition: color .2s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(138, 180, 255, .1);
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
        }

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        /* 面包屑 */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-muted);
        }

        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }

        .breadcrumb .sep {
            color: rgba(147, 168, 200, .5);
        }

        .breadcrumb .current {
            color: var(--accent-cyan);
            font-weight: 500;
        }

        /* 页面特有样式 */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-strong);
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: .01em;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 680px;
            line-height: 1.7;
        }

        .filter-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: .02em;
        }

        .form-group input,
        .form-group select {
            padding: 12px 14px;
            background: rgba(10, 15, 30, .75);
            border: 1px solid rgba(138, 180, 255, .2);
            border-radius: 10px;
            color: var(--text-base);
            font-size: 14px;
            font-family: inherit;
            transition: all .25s ease;
            width: 100%;
            appearance: none;
            -webkit-appearance: none;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(126, 204, 255, .15);
            outline: none;
        }

        .form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2393a8c8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .data-table-wrap {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .15);
            background: rgba(10, 15, 30, .6);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 720px;
        }

        .data-table th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: .04em;
            border-bottom: 1px solid rgba(138, 180, 255, .15);
            white-space: nowrap;
            background: rgba(15, 26, 48, .5);
        }

        .data-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(138, 180, 255, .08);
            color: var(--text-base);
            white-space: nowrap;
        }

        .data-table tr:last-child td {
            border-bottom: none;
        }

        .data-table tbody tr:hover {
            background: rgba(47, 129, 247, .08);
        }

        .data-table .num {
            font-family: var(--font-num);
            font-weight: 600;
            color: var(--text-strong);
        }

        .data-table .score-highlight {
            color: var(--amber);
            font-weight: 700;
            font-family: var(--font-num);
        }

        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 16px;
        }

        .league-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 20px 12px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            text-align: center;
            transition: all .25s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .league-item:hover {
            border-color: rgba(126, 204, 255, .45);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
        }

        .league-item .league-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-strong);
        }

        .league-item .league-count {
            font-size: 12px;
            color: var(--text-muted);
        }

        .stat-mini-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        .stat-mini-card {
            padding: 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            text-align: center;
        }

        .stat-mini-card .stat-value {
            font-size: 28px;
            font-weight: 700;
            font-family: var(--font-num);
            color: var(--accent-cyan);
            margin-bottom: 4px;
        }

        .stat-mini-card .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 15px;
            color: var(--text-base);
            line-height: 1.6;
        }

        .check-list li::before {
            content: '✓';
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(76, 195, 138, .15);
            color: var(--success);
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            margin-top: 2px;
        }

        .grid-bg {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(138, 180, 255, .05) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .img-cover {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
            border: 1px solid rgba(138, 180, 255, .15);
        }

        @media (max-width: 1024px) {
            .section-title {
                font-size: 26px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .filter-form {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .section-desc {
                font-size: 15px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .logo {
                font-size: 17px;
            }
            .btn-sm {
                padding: 8px 14px;
                font-size: 13px;
            }
            .hamburger {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
            .drawer {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .filter-form {
                grid-template-columns: 1fr;
            }
            .league-grid {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 12px;
            }
            .stat-mini-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-mini-card .stat-value {
                font-size: 22px;
            }
            .data-table {
                font-size: 13px;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
        }

        @media (max-width: 520px) {
            .section-title {
                font-size: 20px;
            }
            .section-desc {
                font-size: 14px;
            }
            .btn-primary {
                padding: 12px 20px;
                font-size: 14px;
            }
            .btn-secondary {
                padding: 12px 18px;
                font-size: 14px;
            }
            .stat-mini-grid {
                grid-template-columns: 1fr;
            }
            .hamburger {
                width: 36px;
                height: 36px;
                font-size: 17px;
            }
            .header {
                height: 60px;
            }
            .container {
                padding: 0 16px;
            }
        }

/* roulang page: category1 */
:root {
  --bg-base: #0a0f1e;
  --bg-secondary: #0b1120;
  --glass-bg: rgba(15, 26, 48, 0.75);
  --glass-border: rgba(138, 180, 255, .18);
  --primary: #2f81f7;
  --primary-bright: #5ea2ff;
  --accent-cyan: #7cd6ff;
  --amber: #f5a623;
  --neon-cyan: #2de2c5;
  --danger: #ff5c5c;
  --success: #4cc38a;
  --text-base: #dce6f2;
  --text-strong: #f3f7ff;
  --text-muted: #93a8c8;
  --radius-card: 16px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, .35);
  --inner-glow: rgba(87, 149, 255, .12);
  --font-num: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
  background: var(--bg-base);
  color: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body.drawer-open {
  overflow: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--accent-cyan);
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}
button:focus, a:focus, input:focus, select:focus {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}
section {
  padding: 64px 0;
  position: relative;
}
@media (min-width: 1024px) {
  section {
    padding: 96px 0;
  }
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 var(--inner-glow);
  pointer-events: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-bright));
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(47, 129, 247, .45), 0 8px 24px rgba(0, 0, 0, .3);
  transition: all .25s ease;
  font-size: 15px;
  letter-spacing: .02em;
  border: 1px solid rgba(126, 204, 255, .3);
}
.btn-primary:hover {
  box-shadow: 0 0 32px rgba(47, 129, 247, .7), 0 12px 32px rgba(0, 0, 0, .4);
  color: #fff;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #3b8cfa, #6aaaff);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 0 16px rgba(47, 129, 247, .4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(15, 26, 48, .6);
  color: var(--text-base);
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid rgba(138, 180, 255, .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .25s ease;
  font-size: 15px;
}
.btn-secondary:hover {
  border-color: rgba(126, 204, 255, .5);
  color: var(--accent-cyan);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  transform: translateX(2px);
}
.btn-secondary:active {
  transform: translateY(1px);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.badge-live {
  background: rgba(245, 166, 35, .18);
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, .35);
}
.badge-upcoming {
  background: rgba(147, 168, 200, .15);
  color: var(--text-muted);
  border: 1px solid rgba(147, 168, 200, .25);
}
.badge-finished {
  background: rgba(76, 195, 138, .15);
  color: var(--success);
  border: 1px solid rgba(76, 195, 138, .3);
}
.badge-cyan {
  background: rgba(45, 226, 197, .12);
  color: var(--neon-cyan);
  border: 1px solid rgba(45, 226, 197, .3);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 100;
  background: rgba(10, 15, 30, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(138, 180, 255, .12);
  display: flex;
  align-items: center;
  transition: all .3s ease;
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: .02em;
  white-space: nowrap;
}
.logo span {
  color: var(--accent-cyan);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(15, 26, 48, .6);
  border: 1px solid rgba(138, 180, 255, .2);
  color: var(--text-strong);
  font-size: 20px;
  transition: all .25s ease;
}
.menu-btn:hover {
  border-color: rgba(126, 204, 255, .5);
  color: var(--accent-cyan);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}
.menu-btn:active {
  transform: scale(.95);
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100%);
  background: rgba(10, 15, 30, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(138, 180, 255, .18);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22, .28, .16, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 32px;
  overflow-y: auto;
}
.drawer.open {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(138, 180, 255, .12);
}
.drawer-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
}
.drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(15, 26, 48, .7);
  border: 1px solid rgba(138, 180, 255, .2);
  color: var(--text-muted);
  font-size: 16px;
  transition: all .2s ease;
}
.drawer-close:hover {
  color: var(--danger);
  border-color: rgba(255, 92, 92, .4);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.drawer-link {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(15, 26, 48, .4);
  transition: all .25s ease;
}
.drawer-link:hover {
  background: rgba(15, 26, 48, .7);
  border-color: rgba(138, 180, 255, .25);
  color: var(--accent-cyan);
}
.drawer-link .main {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 2px;
}
.drawer-link:hover .main {
  color: var(--accent-cyan);
}
.drawer-link .sub {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.drawer-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(138, 180, 255, .12);
}
.breadcrumb {
  padding-top: 100px;
  padding-bottom: 0;
  background: transparent;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb-inner a {
  color: var(--text-muted);
  transition: color .2s ease;
}
.breadcrumb-inner a:hover {
  color: var(--accent-cyan);
}
.breadcrumb-inner .sep {
  color: rgba(147, 168, 200, .5);
  font-size: 12px;
}
.breadcrumb-inner .current {
  color: var(--accent-cyan);
  font-weight: 500;
}
.page-header {
  padding-top: 40px;
  padding-bottom: 24px;
}
.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: .02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .page-header h1 {
    font-size: 44px;
  }
}
.page-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
}
.filter-bar {
  margin-bottom: 32px;
}
.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .filter-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
}
.filter-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 26, 48, .7);
  border: 1px solid rgba(138, 180, 255, .2);
  border-radius: 12px;
  color: var(--text-base);
  font-size: 15px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2393a8c8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color .2s ease;
}
.filter-select:hover {
  border-color: rgba(126, 204, 255, .4);
}
.filter-select:focus {
  border-color: var(--accent-cyan);
  outline: none;
}
.filter-select option {
  background: var(--bg-secondary);
  color: var(--text-base);
}
.match-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.match-card {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 12px;
  transition: all .25s ease;
}
.match-card:hover {
  border-color: rgba(126, 204, 255, .35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .45), 0 0 20px rgba(47, 129, 247, .12);
  transform: translateY(-2px);
}
.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.match-league {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}
.match-time {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-num);
}
.match-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.match-team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.match-team .team-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .match-team .team-name {
    font-size: 18px;
  }
}
.match-score {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-strong);
  font-family: var(--font-num);
  letter-spacing: .04em;
  padding: 0 8px;
  min-width: 100px;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .match-score {
    font-size: 40px;
    min-width: 140px;
  }
}
.match-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.6); }
}
.match-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(138, 180, 255, .1);
  font-size: 13px;
  color: var(--text-muted);
}
.match-foot .events {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.section-title {
  text-align: left;
  margin-bottom: 24px;
}
.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 8px;
  letter-spacing: .02em;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
}
.section-title p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  max-width: 680px;
  line-height: 1.7;
}
.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .status-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .status-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.status-item {
  padding: 16px;
  border-radius: 14px;
  background: rgba(15, 26, 48, .5);
  border: 1px solid rgba(138, 180, 255, .15);
  transition: all .25s ease;
}
.status-item:hover {
  border-color: rgba(126, 204, 255, .3);
  background: rgba(15, 26, 48, .7);
}
.status-item .status-name {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 15px;
  margin-bottom: 4px;
}
.status-item .status-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.league-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .league-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .league-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.league-card {
  padding: 18px 16px;
  text-align: center;
  border-radius: 14px;
  background: rgba(15, 26, 48, .55);
  border: 1px solid rgba(138, 180, 255, .15);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.league-card:hover {
  border-color: rgba(126, 204, 255, .45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transform: translateY(-2px);
}
.league-card .league-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
}
.league-card .league-teams {
  font-size: 13px;
  color: var(--text-muted);
}
.league-card .league-status {
  font-size: 12px;
  color: var(--accent-cyan);
}
.data-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}
.data-note .icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 226, 197, .1);
  border: 1px solid rgba(45, 226, 197, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 20px;
}
.data-note h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
}
.data-note p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.subscribe-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subscribe-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
}
.subscribe-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .subscribe-form {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
.subscribe-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(10, 15, 30, .7);
  border: 1px solid rgba(138, 180, 255, .18);
  border-radius: 10px;
  color: var(--text-base);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s ease;
}
.subscribe-input::placeholder {
  color: var(--text-muted);
  opacity: .7;
}
.subscribe-input:focus {
  border-color: var(--accent-cyan);
  outline: none;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: 12px;
  background: rgba(15, 26, 48, .5);
  border: 1px solid rgba(138, 180, 255, .15);
  overflow: hidden;
  transition: all .2s ease;
}
.faq-item:hover {
  border-color: rgba(126, 204, 255, .25);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  transition: color .2s ease;
}
.faq-question:hover {
  color: var(--accent-cyan);
}
.faq-question .icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 16px;
}
.footer {
  background: rgba(6, 10, 20, .92);
  border-top: 1px solid rgba(138, 180, 255, .12);
  padding: 48px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
}
.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 12px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s ease;
}
.footer-col ul li a:hover {
  color: var(--accent-cyan);
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(138, 180, 255, .1);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom a {
  color: var(--text-muted);
  transition: color .2s ease;
}
.footer-bottom a:hover {
  color: var(--accent-cyan);
}
.cover-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}
@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 0 16px;
  }
  .drawer {
    width: 100%;
    padding: 20px 16px 24px;
  }
  .drawer-link .main {
    font-size: 20px;
  }
  .match-score {
    font-size: 26px;
    min-width: 70px;
  }
  .match-team .team-name {
    font-size: 14px;
  }
  .page-header h1 {
    font-size: 28px;
  }
  .filter-grid {
    gap: 10px;
  }
  .league-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* roulang page: category3 */
:root {
            --bg-base: #0a0f1e;
            --bg-secondary: #0b1120;
            --glass-bg: rgba(15, 26, 48, 0.75);
            --glass-border: rgba(138, 180, 255, .18);
            --primary: #2f81f7;
            --primary-bright: #5ea2ff;
            --accent-cyan: #7cd6ff;
            --amber: #f5a623;
            --neon-cyan: #2de2c5;
            --danger: #ff5c5c;
            --success: #4cc38a;
            --text-base: #dce6f2;
            --text-strong: #f3f7ff;
            --text-muted: #93a8c8;
            --radius-card: 16px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, .35);
            --inner-glow: rgba(87, 149, 255, .12);
            --font-num: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
            background: var(--bg-base);
            color: var(--text-base);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }
        body.drawer-open {
            overflow: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }
        a:hover {
            color: var(--accent-cyan);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            color: inherit;
        }
        button:focus,
        a:focus,
        input:focus {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }
        section {
            padding: 64px 0;
            position: relative;
        }
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }
        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 0 var(--inner-glow);
            pointer-events: none;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #fff;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(47, 129, 247, .45), 0 8px 24px rgba(0, 0, 0, .3);
            transition: all .25s ease;
            font-size: 15px;
            letter-spacing: .02em;
            border: 1px solid rgba(126, 204, 255, .3);
        }
        .btn-primary:hover {
            box-shadow: 0 0 32px rgba(47, 129, 247, .7), 0 12px 32px rgba(0, 0, 0, .4);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #3b8cfa, #6aaaff);
        }
        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 0 16px rgba(47, 129, 247, .4);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: rgba(15, 26, 48, .6);
            color: var(--text-base);
            font-weight: 500;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all .25s ease;
            font-size: 15px;
        }
        .btn-secondary:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
            transform: translateX(2px);
        }
        .btn-secondary:active {
            transform: translateY(1px);
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            letter-spacing: .03em;
            white-space: nowrap;
        }
        .badge-live {
            background: rgba(245, 166, 35, .18);
            color: var(--amber);
            border: 1px solid rgba(245, 166, 35, .35);
        }
        .badge-upcoming {
            background: rgba(147, 168, 200, .15);
            color: var(--text-muted);
            border: 1px solid rgba(147, 168, 200, .25);
        }
        .badge-finished {
            background: rgba(76, 195, 138, .15);
            color: var(--success);
            border: 1px solid rgba(76, 195, 138, .3);
        }
        .badge-cyan {
            background: rgba(45, 226, 197, .12);
            color: var(--neon-cyan);
            border: 1px solid rgba(45, 226, 197, .3);
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            z-index: 100;
            background: rgba(10, 15, 30, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }
        .header-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .02em;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .logo .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--neon-cyan);
            box-shadow: 0 0 12px var(--neon-cyan);
            display: inline-block;
            flex-shrink: 0;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .header-cta {
            padding: 10px 20px;
            font-size: 14px;
        }
        .hamburger {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .2);
            background: rgba(15, 26, 48, .6);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: all .25s ease;
        }
        .hamburger:hover {
            border-color: rgba(126, 204, 255, .5);
            box-shadow: 0 0 16px rgba(47, 129, 247, .3);
        }
        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text-base);
            border-radius: 2px;
            transition: all .25s ease;
        }
        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            z-index: 150;
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
        }
        .drawer-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 360px;
            max-width: 100%;
            background: rgba(11, 17, 32, .95);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-left: 1px solid rgba(138, 180, 255, .18);
            z-index: 160;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            display: flex;
            flex-direction: column;
            padding: 24px;
            overflow-y: auto;
        }
        .drawer.open {
            transform: translateX(0);
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            margin-bottom: 20px;
        }
        .drawer-logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .drawer-close {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid rgba(138, 180, 255, .2);
            background: rgba(15, 26, 48, .6);
            color: var(--text-base);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all .25s ease;
        }
        .drawer-close:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .drawer-link {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid transparent;
            transition: all .25s ease;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-base);
        }
        .drawer-link .sub {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-muted);
        }
        .drawer-link:hover {
            background: rgba(15, 26, 48, .6);
            border-color: rgba(126, 204, 255, .3);
            color: var(--accent-cyan);
        }
        .drawer-cta {
            padding-top: 16px;
            border-top: 1px solid rgba(138, 180, 255, .12);
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }
        .breadcrumb .sep {
            color: rgba(147, 168, 200, .5);
        }
        .breadcrumb .current {
            color: var(--text-base);
        }
        .page-hero {
            padding: 140px 0 60px;
            background: linear-gradient(180deg, rgba(10, 15, 30, .9) 0%, rgba(11, 17, 32, .95) 100%);
            position: relative;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(47, 129, 247, .08) 0%, transparent 60%);
            pointer-events: none;
        }
        .page-hero h1 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-strong);
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: .01em;
        }
        .page-hero .lead {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 640px;
            line-height: 1.7;
        }
        .league-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }
        .league-card {
            padding: 20px;
            transition: all .3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .league-card:hover {
            transform: translateY(-3px);
            border-color: rgba(126, 204, 255, .4);
            box-shadow: 0 12px 40px rgba(0, 0, 0, .45), 0 0 24px rgba(47, 129, 247, .15);
        }
        .league-card .league-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .league-card .league-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .league-card .league-stat {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .league-card .league-stat span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .league-card .league-stat strong {
            color: var(--text-strong);
            font-family: var(--font-num);
            font-size: 15px;
        }
        .trophy-list {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .trophy-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border-radius: 12px;
            background: rgba(15, 26, 48, .5);
            border: 1px solid rgba(138, 180, 255, .15);
            transition: all .25s ease;
        }
        .trophy-item:hover {
            border-color: rgba(245, 166, 35, .4);
            background: rgba(15, 26, 48, .8);
        }
        .trophy-item .trophy-icon {
            font-size: 24px;
            color: var(--amber);
        }
        .trophy-item .trophy-text span {
            font-size: 13px;
            color: var(--text-muted);
            display: block;
        }
        .trophy-item .trophy-text strong {
            font-size: 15px;
            color: var(--text-strong);
            font-weight: 600;
        }
        .compare-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .compare-card {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .compare-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-strong);
        }
        .compare-card .compare-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-muted);
            padding: 6px 0;
            border-bottom: 1px solid rgba(138, 180, 255, .08);
        }
        .compare-card .compare-row strong {
            color: var(--text-base);
            font-family: var(--font-num);
        }
        .standings-preview {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .standings-table {
            width: 100%;
            min-width: 560px;
            border-collapse: collapse;
            font-size: 13px;
        }
        .standings-table th {
            text-align: left;
            padding: 10px 12px;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 12px;
            border-bottom: 1px solid rgba(138, 180, 255, .15);
            white-space: nowrap;
        }
        .standings-table td {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(138, 180, 255, .08);
            color: var(--text-base);
            white-space: nowrap;
        }
        .standings-table tr:hover td {
            background: rgba(47, 129, 247, .05);
        }
        .standings-table .pos {
            font-family: var(--font-num);
            color: var(--accent-cyan);
            font-weight: 600;
        }
        .standings-table .team {
            font-weight: 500;
            color: var(--text-strong);
        }
        .standings-table .pts {
            font-family: var(--font-num);
            color: var(--amber);
            font-weight: 700;
        }
        .fixture-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .fixture-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
            border-radius: 10px;
            background: rgba(15, 26, 48, .5);
            border: 1px solid rgba(138, 180, 255, .12);
            transition: all .25s ease;
            gap: 12px;
            flex-wrap: wrap;
        }
        .fixture-item:hover {
            border-color: rgba(126, 204, 255, .35);
            background: rgba(15, 26, 48, .8);
        }
        .fixture-item .fixture-teams {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: var(--text-strong);
            font-size: 14px;
        }
        .fixture-item .fixture-time {
            font-size: 12px;
            color: var(--text-muted);
        }
        .fixture-item .fixture-league {
            font-size: 12px;
            color: var(--text-muted);
            background: rgba(147, 168, 200, .1);
            padding: 4px 10px;
            border-radius: 12px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
            letter-spacing: .01em;
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.7;
            max-width: 640px;
        }
        .footer {
            background: rgba(10, 15, 30, .95);
            border-top: 1px solid rgba(138, 180, 255, .12);
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 12px;
        }
        .footer-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 300px;
        }
        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-strong);
            margin-bottom: 12px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-muted);
            transition: color .2s ease;
        }
        .footer-col ul li a:hover {
            color: var(--accent-cyan);
        }
        .footer-bottom {
            padding-top: 16px;
            border-top: 1px solid rgba(138, 180, 255, .1);
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }
        @media (max-width: 768px) {
            section {
                padding: 48px 0;
            }
            .page-hero {
                padding: 120px 0 48px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .header-cta {
                display: none;
            }
            .league-grid {
                grid-template-columns: 1fr;
            }
            .compare-grid {
                grid-template-columns: 1fr;
            }
            .trophy-list {
                flex-direction: column;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .drawer {
                padding: 16px;
            }
            .page-hero h1 {
                font-size: 24px;
            }
            .btn-primary,
            .btn-secondary {
                padding: 12px 20px;
                font-size: 14px;
                width: 100%;
            }
            .fixture-item {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category4 */
:root {
            --bg-base: #0a0f1e;
            --bg-secondary: #0b1120;
            --glass-bg: rgba(15, 26, 48, 0.75);
            --glass-border: rgba(138, 180, 255, .18);
            --primary: #2f81f7;
            --primary-bright: #5ea2ff;
            --accent-cyan: #7cd6ff;
            --amber: #f5a623;
            --neon-cyan: #2de2c5;
            --danger: #ff5c5c;
            --success: #4cc38a;
            --text-base: #dce6f2;
            --text-strong: #f3f7ff;
            --text-muted: #93a8c8;
            --radius-card: 16px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, .35);
            --inner-glow: rgba(87, 149, 255, .12);
            --font-num: 'SF Mono', 'Roboto Mono', 'Consolas', monospace;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Segoe UI', sans-serif;
            background: var(--bg-base);
            color: var(--text-base);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        body.drawer-open {
            overflow: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease;
        }

        a:hover {
            color: var(--accent-cyan);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
            color: inherit;
        }

        button:focus,
        a:focus,
        input:focus {
            outline: 2px solid var(--accent-cyan);
            outline-offset: 2px;
        }

        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            box-shadow: inset 0 1px 0 var(--inner-glow);
            pointer-events: none;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary), var(--primary-bright));
            color: #fff;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(47, 129, 247, .45), 0 8px 24px rgba(0, 0, 0, .3);
            transition: all .25s ease;
            font-size: 15px;
            letter-spacing: .02em;
            border: 1px solid rgba(126, 204, 255, .3);
        }

        .btn-primary:hover {
            box-shadow: 0 0 32px rgba(47, 129, 247, .7), 0 12px 32px rgba(0, 0, 0, .4);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #3b8cfa, #6aaaff);
        }

        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: 0 0 16px rgba(47, 129, 247, .4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            background: rgba(15, 26, 48, .6);
            color: var(--text-base);
            font-weight: 500;
            border-radius: 12px;
            border: 1px solid rgba(138, 180, 255, .25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all .25s ease;
            font-size: 14px;
        }

        .btn-secondary:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
            transform: translateX(2px);
        }

        .btn-secondary:active {
            transform: translateY(1px);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 20px;
            letter-spacing: .03em;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(245, 166, 35, .18);
            color: var(--amber);
            border: 1px solid rgba(245, 166, 35, .35);
        }

        .badge-upcoming {
            background: rgba(147, 168, 200, .15);
            color: var(--text-muted);
            border: 1px solid rgba(147, 168, 200, .25);
        }

        .badge-finished {
            background: rgba(76, 195, 138, .15);
            color: var(--success);
            border: 1px solid rgba(76, 195, 138, .3);
        }

        .badge-cyan {
            background: rgba(45, 226, 197, .12);
            color: var(--neon-cyan);
            border: 1px solid rgba(45, 226, 197, .3);
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 68px;
            z-index: 100;
            background: rgba(10, 15, 30, .88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(138, 180, 255, .12);
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }

        .header-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .04em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #fff;
            font-weight: 700;
        }

        .hamburger {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: rgba(15, 26, 48, .6);
            border: 1px solid rgba(138, 180, 255, .2);
            color: var(--text-base);
            transition: all .25s ease;
        }

        .hamburger:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
        }

        .hamburger svg {
            width: 22px;
            height: 22px;
        }

        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, .7);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all .35s ease;
        }

        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 360px;
            max-width: 100%;
            background: rgba(11, 17, 32, .96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-left: 1px solid rgba(138, 180, 255, .18);
            z-index: 210;
            transform: translateX(100%);
            transition: transform .4s cubic-bezier(.22, .61, .36, 1);
            display: flex;
            flex-direction: column;
            padding: 24px 28px 32px;
        }

        .drawer.active {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(138, 180, 255, .15);
            margin-bottom: 20px;
        }

        .drawer-logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
        }

        .drawer-close {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(15, 26, 48, .6);
            border: 1px solid rgba(138, 180, 255, .2);
            color: var(--text-muted);
            font-size: 16px;
            transition: all .25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .drawer-close:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 6px;
            flex: 1;
            overflow-y: auto;
        }

        .drawer-link {
            display: flex;
            flex-direction: column;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid transparent;
            transition: all .25s ease;
        }

        .drawer-link .sub {
            font-size: 12px;
            color: rgba(147, 168, 200, .7);
            margin-top: 2px;
        }

        .drawer-link:hover,
        .drawer-link.active {
            color: var(--accent-cyan);
            border-color: rgba(126, 204, 255, .3);
            background: rgba(15, 26, 48, .6);
        }

        .drawer-cta {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(138, 180, 255, .15);
        }

        .page-hero {
            padding: 140px 0 60px;
            position: relative;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(147, 168, 200, .7);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: rgba(147, 168, 200, .8);
            transition: color .2s;
        }

        .breadcrumb a:hover {
            color: var(--accent-cyan);
        }

        .breadcrumb .sep {
            color: rgba(147, 168, 200, .4);
        }

        .page-h1 {
            font-size: 40px;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: .02em;
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .page-h1 .accent {
            color: var(--accent-cyan);
        }

        .page-intro {
            font-size: 17px;
            color: rgba(220, 230, 242, .75);
            max-width: 720px;
            line-height: 1.7;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
            letter-spacing: .01em;
        }

        .section-desc {
            font-size: 15px;
            color: rgba(147, 168, 200, .8);
            max-width: 680px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .article-card {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 20px;
            transition: all .3s ease;
        }

        .article-card:hover {
            transform: translateY(-3px);
            border-color: rgba(126, 204, 255, .4);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .45), 0 0 24px rgba(47, 129, 247, .15);
        }

        .article-card .article-img {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
            background: rgba(15, 26, 48, .8);
            border: 1px solid rgba(138, 180, 255, .15);
        }

        .article-card .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 16px;
            background: rgba(47, 129, 247, .15);
            color: var(--primary-bright);
            border: 1px solid rgba(47, 129, 247, .3);
        }

        .article-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-strong);
            line-height: 1.5;
            transition: color .2s;
        }

        .article-card:hover .article-title {
            color: var(--accent-cyan);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(147, 168, 200, .6);
            flex-wrap: wrap;
        }

        .article-excerpt {
            font-size: 13px;
            color: rgba(147, 168, 200, .75);
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            padding: 8px 16px;
            font-size: 13px;
            border-radius: 20px;
            background: rgba(15, 26, 48, .6);
            border: 1px solid rgba(138, 180, 255, .2);
            color: rgba(220, 230, 242, .75);
            transition: all .25s ease;
            cursor: default;
        }

        .tag-item:hover {
            border-color: rgba(126, 204, 255, .5);
            color: var(--accent-cyan);
            background: rgba(15, 26, 48, .8);
        }

        .expert-card {
            display: flex;
            gap: 20px;
            padding: 24px;
            align-items: flex-start;
        }

        .expert-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            font-weight: 700;
            flex-shrink: 0;
        }

        .expert-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-strong);
        }

        .expert-role {
            font-size: 12px;
            color: rgba(147, 168, 200, .7);
            margin-bottom: 8px;
        }

        .expert-text {
            font-size: 14px;
            color: rgba(220, 230, 242, .75);
            line-height: 1.7;
        }

        .compliance-box {
            padding: 24px 28px;
            border-radius: 16px;
            background: rgba(15, 26, 48, .5);
            border: 1px solid rgba(138, 180, 255, .15);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .compliance-icon {
            font-size: 28px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .compliance-text {
            font-size: 14px;
            color: rgba(147, 168, 200, .85);
            line-height: 1.75;
        }

        .footer {
            background: rgba(11, 17, 32, .92);
            border-top: 1px solid rgba(138, 180, 255, .12);
            padding: 56px 0 32px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
        }

        .footer-desc {
            font-size: 13px;
            color: rgba(147, 168, 200, .7);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-strong);
            margin-bottom: 14px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col li {
            margin-bottom: 8px;
        }

        .footer-col a {
            font-size: 13px;
            color: rgba(147, 168, 200, .7);
            transition: color .2s;
        }

        .footer-col a:hover {
            color: var(--accent-cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(138, 180, 255, .1);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: rgba(147, 168, 200, .5);
        }

        .footer-bottom a {
            color: rgba(147, 168, 200, .6);
        }

        .footer-bottom a:hover {
            color: var(--accent-cyan);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .page-h1 {
                font-size: 32px;
            }
            .section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .drawer {
                width: 100%;
                padding: 20px;
            }
            .page-hero {
                padding: 110px 0 40px;
            }
            .page-h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 20px;
            }
            .expert-card {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .header-inner {
                padding: 0 16px;
            }
            .container {
                padding: 0 16px;
            }
        }

        @media (max-width: 520px) {
            .page-h1 {
                font-size: 22px;
            }
            .article-card {
                padding: 14px;
            }
            .compliance-box {
                flex-direction: column;
                padding: 18px;
            }
            .tag-item {
                font-size: 12px;
                padding: 6px 12px;
            }
            .header .btn-primary {
                padding: 10px 16px;
                font-size: 13px;
            }
        }
