/* roulang page: index */
:root {
            --bg-base: #080C14;
            --bg-panel: #0D1626;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.09);
            --primary: #1B6DFF;
            --cyan: #00D4FF;
            --accent: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --ended: #64748B;
            --text-primary: #E6F1FF;
            --text-secondary: #9FB3C8;
            --text-muted: #64748B;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
            --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
            --container-width: 1200px;
            --section-gap: 80px;
            --card-gap: 24px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: var(--font-stack);
            font-size: 1rem;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(8, 12, 20, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(8, 12, 20, 0.88);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
        }

        .nav-logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo-text span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color 0.25s ease, background 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 28px);
        }

        .nav-menu a.active {
            color: var(--text-primary);
        }

        .nav-menu a.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            background: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.25s ease;
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 212, 255, 0.4);
        }

        .nav-drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 998;
            background: rgba(8, 12, 20, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .nav-drawer-overlay.open {
            display: block;
        }

        .nav-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            z-index: 999;
            background: rgba(13, 22, 38, 0.96);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 28px 32px;
            transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .nav-drawer.open {
            right: 0;
        }

        .nav-drawer a {
            display: block;
            padding: 14px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 10px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }

        .nav-drawer a:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 212, 255, 0.2);
            color: var(--text-primary);
        }

        .nav-drawer a.active {
            background: rgba(27, 109, 255, 0.12);
            border-color: rgba(0, 212, 255, 0.3);
            color: var(--cyan);
        }

        .nav-drawer .nav-cta {
            margin-top: 12px;
            text-align: center;
            padding: 14px 20px;
            font-size: 0.95rem;
        }

        .nav-drawer-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            color: var(--text-secondary);
            font-size: 1.6rem;
            line-height: 1;
            padding: 4px;
            border-radius: 8px;
            transition: color 0.25s ease;
        }

        .nav-drawer-close:hover {
            color: var(--text-primary);
        }

        /* ===== Ticker Bar ===== */
        .ticker-bar {
            position: fixed;
            top: 68px;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(13, 22, 38, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.15);
            padding: 7px 0;
            overflow: hidden;
        }

        .ticker-track {
            display: flex;
            gap: 40px;
            white-space: nowrap;
            animation: ticker-scroll 32s linear infinite;
            width: max-content;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-secondary);
            letter-spacing: 0.3px;
        }

        .ticker-item .ticker-status {
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .ticker-status.live {
            background: rgba(16, 185, 129, 0.18);
            color: var(--success);
        }

        .ticker-status.upcoming {
            background: rgba(245, 158, 11, 0.18);
            color: var(--warning);
        }

        .ticker-score {
            color: var(--cyan);
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            background-image: url('/assets/images/8aff46582dc93b55.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: radial-gradient(ellipse at 30% 40%, rgba(27, 109, 255, 0.28) 0%, transparent 55%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 212, 255, 0.18) 0%, transparent 50%),
                linear-gradient(180deg, rgba(8, 12, 20, 0.82) 0%, rgba(8, 12, 20, 0.65) 50%, rgba(8, 12, 20, 0.9) 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: url('/assets/images/8aff46582dc93b55.webp') center / cover no-repeat;
            filter: blur(1px) brightness(0.65);
        }

        .hero-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            width: 100%;
        }

        .hero-copy {
            flex: 1 1 55%;
            max-width: 620px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
        }

        .hero-badge i {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.5);
            }
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .hero h1 .highlight {
            color: var(--cyan);
            text-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
        }

        .hero-subtitle {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-secondary);
            margin-bottom: 28px;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.45), 0 0 36px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.65), 0 0 48px rgba(0, 212, 255, 0.35);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.5);
            color: var(--cyan);
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: rgba(0, 212, 255, 0.8);
            color: var(--cyan);
            transform: translateY(-2px);
        }

        .btn-secondary:active {
            transform: scale(0.98);
        }

        .hero-card {
            flex: 0 0 auto;
            width: 360px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.55) 30%, rgba(27, 109, 255, 0.55) 70%, transparent 100%);
        }

        .hero-card-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .hero-card-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .hero-card-team {
            text-align: center;
            flex: 1;
        }

        .hero-card-team .team-abbr {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            display: block;
        }

        .hero-card-team .team-name {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .hero-card-vs {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-muted);
            padding: 0 12px;
        }

        .hero-card-score {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--cyan);
            font-variant-numeric: tabular-nums;
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
            margin-bottom: 12px;
        }

        .hero-card-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            color: var(--text-muted);
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        .hero-card-progress {
            height: 3px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 14px;
        }

        .hero-card-progress-fill {
            height: 100%;
            width: 68%;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 3px;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
        }

        /* ===== Section Common ===== */
        section {
            padding: var(--section-gap) 0;
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 1.75rem;
            font-weight: 650;
            line-height: 1.3;
            color: #F0F6FF;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .section-header p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 640px;
            line-height: 1.7;
        }

        /* ===== Glass Card ===== */
        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.35) 40%, rgba(27, 109, 255, 0.35) 60%, transparent 100%);
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: var(--shadow-card-hover);
        }

        /* ===== Services Matrix ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }

        .service-card {
            padding: 28px 24px;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.2), rgba(0, 212, 255, 0.12));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.3rem;
            color: var(--cyan);
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== Stats Row ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }

        .stat-block {
            text-align: center;
            padding: 28px 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.35s ease;
        }

        .stat-block:hover {
            border-color: rgba(0, 212, 255, 0.35);
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 14px rgba(0, 212, 255, 0.4);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        /* ===== Match Cards ===== */
        .match-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--card-gap);
        }

        .match-card {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .match-card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        .match-card-tag.live {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }

        .match-card-tag.upcoming {
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning);
        }

        .match-card-tag.ended {
            background: rgba(100, 116, 139, 0.2);
            color: var(--ended);
        }

        .match-card-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .match-card-team {
            flex: 1;
            text-align: center;
        }

        .match-card-team .abbr {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            display: block;
        }

        .match-card-team .full {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .match-card-score {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
            font-variant-numeric: tabular-nums;
            min-width: 60px;
            text-align: center;
        }

        .match-card-footer {
            display: flex;
            justify-content: space-between;
            font-size: 0.76rem;
            color: var(--text-muted);
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }

        /* ===== Process Steps ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 0 8px;
        }

        .process-step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 0 20px rgba(27, 109, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(50% + 28px);
            right: calc(-50% + 28px);
            height: 2px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), rgba(27, 109, 255, 0.3));
            z-index: 1;
        }

        .process-step h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .process-step p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ===== Case Wall ===== */
        .case-wall-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--card-gap);
        }

        .case-card {
            overflow: hidden;
        }

        .case-card-img {
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .case-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .case-card:hover .case-card-img img {
            transform: scale(1.06);
        }

        .case-card-body {
            padding: 18px 20px 20px;
        }

        .case-card-body h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .case-card-body p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===== News List ===== */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 18px 20px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .news-item:hover {
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateX(4px);
        }

        .news-item-date {
            flex: 0 0 60px;
            text-align: center;
            padding: 8px 6px;
            background: rgba(27, 109, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(27, 109, 255, 0.2);
        }

        .news-item-date .day {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--cyan);
            display: block;
            line-height: 1.2;
        }

        .news-item-date .month {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .news-item-content {
            flex: 1;
        }

        .news-item-content h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .news-item-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .news-item .btn-outline-sm {
            padding: 6px 16px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 212, 255, 0.4);
            border-radius: 8px;
            color: var(--cyan);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .news-item .btn-outline-sm:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: rgba(0, 212, 255, 0.7);
            color: var(--cyan);
        }

        /* ===== Brand Intro ===== */
        .brand-intro {
            background: var(--bg-panel);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-card);
            padding: 40px 36px;
            position: relative;
            overflow: hidden;
        }

        .brand-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
        }

        .brand-intro h2 {
            font-size: 1.5rem;
            font-weight: 650;
            color: #F0F6FF;
            margin-bottom: 16px;
        }

        .brand-intro p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 900px;
        }

        /* ===== Subscribe CTA ===== */
        .subscribe-banner {
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.12), rgba(0, 212, 255, 0.06));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: var(--radius-card);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .subscribe-banner::before {
            content: '';
            position: absolute;
            top: -60%;
            left: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(27, 109, 255, 0.15), transparent 60%);
            pointer-events: none;
        }

        .subscribe-banner h2 {
            font-size: 1.6rem;
            font-weight: 650;
            color: #F0F6FF;
            margin-bottom: 12px;
        }

        .subscribe-banner p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }

        .subscribe-form input[type="email"] {
            flex: 1;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-btn);
            color: var(--text-primary);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .subscribe-form input[type="email"]::placeholder {
            color: var(--text-muted);
        }

        .subscribe-form input[type="email"]:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        /* ===== Partners ===== */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .partner-logo {
            height: 64px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 1px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            padding: 0 12px;
        }

        .partner-logo:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-secondary);
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(0, 212, 255, 0.25);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            user-select: none;
            gap: 16px;
        }

        .faq-question h3 {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.5;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid rgba(0, 212, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan);
            font-size: 0.9rem;
            transition: transform 0.35s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .faq-answer-inner {
            padding: 0 22px 18px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            border-left: 2px solid var(--cyan);
            margin-left: 22px;
            padding-left: 16px;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        /* ===== Guarantee Strip ===== */
        .guarantee-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 20px 22px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .guarantee-item:hover {
            border-color: rgba(0, 212, 255, 0.35);
            box-shadow: var(--shadow-card);
        }

        .guarantee-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.18), rgba(0, 212, 255, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan);
            font-size: 1rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .guarantee-item h3 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .guarantee-item p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.55;
        }

        /* ===== Bottom CTA ===== */
        .bottom-cta {
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.18), rgba(0, 212, 255, 0.08));
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: var(--radius-card);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bottom-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12), transparent 60%);
            pointer-events: none;
        }

        .bottom-cta h2 {
            font-size: 1.75rem;
            font-weight: 650;
            color: #F0F6FF;
            margin-bottom: 14px;
        }

        .bottom-cta p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }

        .bottom-cta-actions {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #060A12;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 56px 0 24px;
            margin-top: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .footer-brand h3 span {
            color: var(--cyan);
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-muted);
            max-width: 300px;
            line-height: 1.6;
        }

        .footer-col h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-col a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-bottom-links a {
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom-copyright {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .case-wall-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-inner {
                flex-direction: column;
                text-align: center;
            }
            .hero-copy {
                max-width: 100%;
            }
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-card {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .process-step:not(:last-child)::after {
                display: none;
            }
            .match-cards-grid {
                grid-template-columns: 1fr;
            }
            .guarantee-strip {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-gap: 60px;
                --card-gap: 16px;
            }
            .nav-menu {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
            .ticker-bar {
                top: 68px;
            }
            .hero {
                min-height: auto;
                padding: 130px 0 60px;
            }
            .hero h1 {
                font-size: 1.75rem;
            }
            .hero-card-score {
                font-size: 1.8rem;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .case-wall-grid {
                grid-template-columns: 1fr;
            }
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .subscribe-form {
                flex-direction: column;
            }
            .guarantee-strip {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .news-item {
                flex-direction: column;
                gap: 12px;
            }
            .news-item-date {
                flex: 0 0 auto;
                display: inline-flex;
                gap: 6px;
                padding: 6px 12px;
            }
            .news-item-date .day {
                font-size: 1rem;
            }
            .section-header h2 {
                font-size: 1.4rem;
            }
            .bottom-cta {
                padding: 40px 24px;
            }
            .subscribe-banner {
                padding: 32px 20px;
            }
            .brand-intro {
                padding: 28px 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 12px 18px;
                font-size: 0.88rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .match-card-score {
                font-size: 1.5rem;
                min-width: 48px;
            }
            .process-steps {
                grid-template-columns: 1fr;
            }
            .process-step-num {
                margin-bottom: 10px;
            }
            .partners-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category3 */
:root {
        --bg-base: #080C14;
        --bg-panel: #0D1626;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.09);
        --primary: #1B6DFF;
        --cyan: #00D4FF;
        --accent: #22D3EE;
        --success: #10B981;
        --warning: #F59E0B;
        --ended: #64748B;
        --text-primary: #E6F1FF;
        --text-secondary: #9FB3C8;
        --text-muted: #64748B;
        --radius-card: 16px;
        --radius-btn: 10px;
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
        --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
        --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
        --container-width: 1200px;
        --section-gap: 80px;
        --card-gap: 24px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-stack);
        background: var(--bg-base);
        color: var(--text-primary);
        line-height: 1.7;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        min-height: 100vh;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }

    a:hover {
        color: var(--cyan);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    button,
    input {
        font-family: var(--font-stack);
        font-size: 1rem;
        border: none;
        outline: none;
    }

    button {
        cursor: pointer;
        background: none;
    }

    ul,
    ol {
        list-style: none;
    }

    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ===== Header / Nav ===== */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(8, 12, 20, 0.72);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .site-header.scrolled {
        background: rgba(8, 12, 20, 0.9);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 68px;
        gap: 24px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--primary), var(--cyan));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.5px;
        box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
    }

    .nav-logo-text {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-primary);
        white-space: nowrap;
        letter-spacing: 0.3px;
    }

    .nav-logo-text span {
        color: var(--cyan);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        display: block;
        padding: 8px 14px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-radius: 6px;
        transition: color 0.25s ease, background 0.25s ease;
        position: relative;
        white-space: nowrap;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--cyan));
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: calc(100% - 28px);
    }

    .nav-menu a.active {
        color: var(--text-primary);
    }

    .nav-menu a.active::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
    }

    .nav-cta {
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--primary), var(--cyan));
        color: #fff;
        padding: 9px 20px;
        border-radius: var(--radius-btn);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .nav-cta:hover {
        box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
        color: #fff;
        transform: translateY(-1px);
    }

    .nav-cta:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 3px;
    }

    .nav-toggle {
        display: none;
        background: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        line-height: 1;
        padding: 6px;
        border-radius: 8px;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--cyan);
    }

    /* ===== Breadcrumb ===== */
    .breadcrumb-wrap {
        padding-top: 110px;
        padding-bottom: 12px;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.875rem;
        color: var(--text-muted);
    }

    .breadcrumb a {
        color: var(--text-secondary);
        transition: color 0.25s ease;
    }

    .breadcrumb a:hover {
        color: var(--cyan);
    }

    .breadcrumb .sep {
        color: var(--text-muted);
        margin: 0 4px;
    }

    .breadcrumb .current {
        color: var(--cyan);
        font-weight: 500;
    }

    /* ===== Page H1 Section ===== */
    .page-h1-section {
        padding: 24px 0 40px;
    }

    .page-h1-inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    .page-h1-group h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--text-primary);
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .page-h1-group h1 .hl {
        background: linear-gradient(135deg, var(--primary), var(--cyan));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    .page-h1-group .sub-desc {
        font-size: 1.05rem;
        color: var(--text-secondary);
        max-width: 720px;
        line-height: 1.7;
    }

    .page-h1-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.25);
        color: var(--cyan);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .page-h1-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--success);
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0%,
        100% {
            opacity: 1;
        }
        50% {
            opacity: 0.4;
        }
    }

    /* ===== General Section ===== */
    .page-section {
        padding: 24px 0 56px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        font-weight: 650;
        line-height: 1.3;
        color: var(--text-primary);
        letter-spacing: 0.3px;
        margin-bottom: 8px;
    }

    .section-header .section-sub {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* ===== Glass Card Base ===== */
    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(0, 212, 255, 0.05));
        opacity: 0.35;
    }

    .glass-card:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 212, 255, 0.45);
        box-shadow: var(--shadow-card-hover);
    }

    /* ===== Team Rank Section ===== */
    .team-rank-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--card-gap);
    }

    .team-rank-card {
        padding: 28px 22px 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .team-rank-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .team-rank-position {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--cyan);
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
        line-height: 1;
        min-width: 40px;
    }

    .team-rank-position.top1 {
        color: #F0F6FF;
        text-shadow: 0 0 16px rgba(240, 246, 255, 0.6);
    }

    .team-rank-name {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-primary);
        text-align: right;
    }

    .team-rank-region {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-align: right;
    }

    .team-rank-stats {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .stat-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.875rem;
    }

    .stat-row .label {
        color: var(--text-secondary);
    }

    .stat-row .value {
        font-weight: 600;
        color: var(--text-primary);
        font-variant-numeric: tabular-nums;
    }

    .stat-row .value.cyan {
        color: var(--cyan);
    }

    .stat-row .value.success {
        color: var(--success);
    }

    .team-rank-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 4px;
        overflow: hidden;
        margin-top: 4px;
    }

    .team-rank-bar .fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary), var(--cyan));
        border-radius: 4px;
        transition: width 0.8s ease;
    }

    .team-rank-bar .fill.high {
        background: linear-gradient(90deg, var(--success), var(--cyan));
    }

    .team-rank-bar .fill.mid {
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .team-rank-bar .fill.low {
        background: linear-gradient(90deg, var(--text-muted), var(--text-secondary));
    }

    /* ===== Focus Team Analysis ===== */
    .focus-team-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 32px;
        align-items: stretch;
    }

    .focus-team-visual {
        border-radius: var(--radius-card);
        overflow: hidden;
        position: relative;
        min-height: 320px;
    }

    .focus-team-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .focus-team-visual .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 12, 20, 0.2) 0%, rgba(8, 12, 20, 0.85) 100%);
        display: flex;
        align-items: flex-end;
        padding: 24px;
    }

    .focus-team-overlay-info h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
        letter-spacing: 1px;
    }

    .focus-team-overlay-info .tag {
        display: inline-block;
        background: rgba(0, 212, 255, 0.2);
        border: 1px solid rgba(0, 212, 255, 0.4);
        color: var(--cyan);
        padding: 4px 12px;
        border-radius: 14px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .focus-team-data {
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .focus-team-data h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .focus-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .focus-stat-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 16px;
        text-align: center;
    }

    .focus-stat-item .num {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--cyan);
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.45);
        font-variant-numeric: tabular-nums;
        line-height: 1.2;
    }

    .focus-stat-item .unit {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 4px;
    }

    .focus-team-desc {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* ===== Data Dimension Explanation ===== */
    .dimension-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--card-gap);
    }

    .dimension-card {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dimension-card .icon-box {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--cyan);
    }

    .dimension-card h3 {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .dimension-card p {
        font-size: 0.875rem;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* ===== Ranking Change Table ===== */
    .rank-change-card {
        padding: 28px;
    }

    .rank-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
    }

    .rank-table thead th {
        text-align: left;
        padding: 10px 14px;
        color: var(--text-muted);
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .rank-table tbody td {
        padding: 12px 14px;
        color: var(--text-secondary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        font-variant-numeric: tabular-nums;
    }

    .rank-table tbody tr:last-child td {
        border-bottom: none;
    }

    .rank-table .team-cell {
        font-weight: 600;
        color: var(--text-primary);
    }

    .rank-table .up {
        color: var(--success);
        font-weight: 600;
    }

    .rank-table .down {
        color: #EF4444;
        font-weight: 600;
    }

    .rank-table .same {
        color: var(--text-muted);
    }

    /* ===== Update + Subscribe CTA Combined Banner ===== */
    .update-subscribe-banner {
        padding: 36px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
        background: linear-gradient(135deg, rgba(27, 109, 255, 0.08), rgba(0, 212, 255, 0.04));
        border: 1px solid rgba(0, 212, 255, 0.18);
    }

    .update-subscribe-banner .banner-left h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 6px;
    }

    .update-subscribe-banner .banner-left p {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .banner-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--cyan));
        color: #fff;
        padding: 12px 24px;
        border-radius: var(--radius-btn);
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        box-shadow: 0 0 18px rgba(27, 109, 255, 0.45), 0 0 36px rgba(0, 212, 255, 0.2);
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .btn-primary:hover {
        box-shadow: 0 0 24px rgba(27, 109, 255, 0.65), 0 0 48px rgba(0, 212, 255, 0.35);
        color: #fff;
        transform: translateY(-1px);
    }

    .btn-primary:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 3px;
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

    .btn-secondary {
        background: transparent;
        border: 1px solid rgba(0, 212, 255, 0.5);
        color: var(--cyan);
        padding: 12px 24px;
        border-radius: var(--radius-btn);
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .btn-secondary:hover {
        background: rgba(0, 212, 255, 0.08);
        border-color: var(--cyan);
        color: var(--cyan);
    }

    .btn-secondary:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 3px;
    }

    .btn-secondary:active {
        transform: scale(0.98);
    }

    /* ===== Related News ===== */
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .news-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 20px 24px;
        transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .news-item:hover {
        border-color: rgba(0, 212, 255, 0.35);
        transform: translateY(-2px);
    }

    .news-date {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: rgba(0, 212, 255, 0.06);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    .news-date .day {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--cyan);
        font-variant-numeric: tabular-nums;
    }

    .news-date .month {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .news-info {
        flex: 1;
    }

    .news-info h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 4px;
        line-height: 1.4;
    }

    .news-info p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .btn-read-more {
        flex-shrink: 0;
        background: transparent;
        border: 1px solid rgba(0, 212, 255, 0.4);
        color: var(--cyan);
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 500;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .btn-read-more:hover {
        background: rgba(0, 212, 255, 0.1);
        border-color: var(--cyan);
        color: var(--cyan);
    }

    .btn-read-more:focus-visible {
        outline: 2px solid var(--cyan);
        outline-offset: 2px;
    }

    /* ===== Footer ===== */
    .site-footer {
        background: #060A12;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 60px 0 28px;
        margin-top: 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 40px;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .footer-brand h3 span {
        color: var(--cyan);
    }

    .footer-brand p {
        font-size: 0.875rem;
        color: var(--text-secondary);
        line-height: 1.6;
        max-width: 320px;
    }

    .footer-col h4 {
        font-size: 0.875rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: 0.5px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-col ul a {
        font-size: 0.875rem;
        color: var(--text-secondary);
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

    .footer-col ul a:hover {
        color: var(--cyan);
        padding-left: 4px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .footer-bottom-links a {
        color: var(--text-secondary);
        transition: color 0.25s ease;
    }

    .footer-bottom-links a:hover {
        color: var(--cyan);
    }

    .footer-bottom-links span {
        color: var(--text-muted);
    }

    .footer-bottom-copyright {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    /* ===== Mobile Nav Drawer ===== */
    .nav-drawer-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 12, 20, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 999;
    }

    .nav-drawer {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: #0D1626;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 1001;
        padding: 24px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-drawer.open {
        transform: translateX(0);
    }

    .nav-drawer-overlay.open {
        display: block;
    }

    .nav-drawer .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .nav-drawer .drawer-close {
        background: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        line-height: 1;
        padding: 4px 8px;
        border-radius: 8px;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .nav-drawer .drawer-close:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--cyan);
    }

    .nav-drawer ul {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .nav-drawer ul a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-radius: 8px;
        transition: all 0.25s ease;
    }

    .nav-drawer ul a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-primary);
    }

    .nav-drawer ul a.active {
        background: rgba(0, 212, 255, 0.08);
        color: var(--cyan);
        border-left: 3px solid var(--cyan);
    }

    .nav-drawer .drawer-cta {
        margin-top: 20px;
        display: block;
        text-align: center;
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
        .team-rank-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .focus-team-grid {
            grid-template-columns: 1fr;
        }
        .focus-team-visual {
            min-height: 240px;
        }
        .dimension-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .footer-brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }
        .nav-cta {
            display: none;
        }
        .nav-toggle {
            display: block;
        }
        .nav-drawer {
            display: block;
        }
        :root {
            --section-gap: 60px;
            --card-gap: 16px;
        }
        .page-h1-group h1 {
            font-size: 1.8rem;
        }
        .page-h1-inner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .page-h1-badge {
            align-self: flex-start;
        }
        .team-rank-grid {
            grid-template-columns: 1fr;
        }
        .focus-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .dimension-grid {
            grid-template-columns: 1fr;
        }
        .update-subscribe-banner {
            flex-direction: column;
            align-items: flex-start;
        }
        .banner-actions {
            width: 100%;
            flex-direction: column;
        }
        .banner-actions .btn-primary,
        .banner-actions .btn-secondary {
            width: 100%;
        }
        .news-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .news-date {
            width: 50px;
            height: 50px;
        }
        .news-date .day {
            font-size: 1.2rem;
        }
        .btn-read-more {
            align-self: flex-start;
        }
        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
        .rank-table {
            font-size: 0.8rem;
        }
        .rank-table thead th,
        .rank-table tbody td {
            padding: 8px 8px;
        }
        .focus-team-data {
            padding: 20px;
        }
    }

    @media (max-width: 520px) {
        .container {
            padding: 0 16px;
        }
        .page-h1-group h1 {
            font-size: 1.5rem;
        }
        .focus-stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .focus-stat-item .num {
            font-size: 1.3rem;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .news-info p {
            font-size: 0.8rem;
        }
    }

/* roulang page: category1 */
:root {
            --bg-base: #080C14;
            --bg-panel: #0D1626;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.09);
            --primary: #1B6DFF;
            --cyan: #00D4FF;
            --accent: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --ended: #64748B;
            --text-primary: #E6F1FF;
            --text-secondary: #9FB3C8;
            --text-muted: #64748B;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
            --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
            --container-width: 1200px;
            --section-gap: 80px;
            --card-gap: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: var(--font-stack);
            font-size: 1rem;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(8, 12, 20, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(8, 12, 20, 0.88);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
        }

        .nav-logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo-text span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color 0.25s ease, background 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 28px);
        }

        .nav-menu a.active {
            color: var(--text-primary);
        }

        .nav-menu a.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            background: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--cyan);
            border-color: rgba(0, 212, 255, 0.3);
        }

        /* Mobile Drawer */
        .mobile-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: -320px;
            width: 280px;
            height: 100vh;
            background: rgba(8, 12, 20, 0.95);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1001;
            padding: 24px 20px;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }

        .mobile-drawer.open {
            right: 0;
        }

        .mobile-drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-drawer-overlay.show {
            opacity: 1;
        }

        .mobile-drawer-nav {
            list-style: none;
            margin: 24px 0;
            padding: 0;
        }

        .mobile-drawer-nav li {
            margin-bottom: 8px;
        }

        .mobile-drawer-nav a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-drawer-nav a:hover,
        .mobile-drawer-nav a.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
            border-left: 2px solid var(--cyan);
        }

        .mobile-drawer-cta {
            display: block;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            text-align: center;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4);
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .mobile-drawer-cta:hover {
            color: #fff;
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6);
        }

        .drawer-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .drawer-close:hover {
            color: var(--cyan);
            background: rgba(255, 255, 255, 0.06);
        }

        /* ===== Page Hero / Breadcrumb Area ===== */
        .page-hero {
            padding: 140px 0 60px;
            position: relative;
            background-image: url('/assets/images/8aff46582dc93b55.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(8, 12, 20, 0.75) 0%, rgba(8, 12, 20, 0.55) 50%, rgba(8, 12, 20, 0.9) 100%);
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(27, 109, 255, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }

        .breadcrumb-custom .sep {
            color: rgba(255, 255, 255, 0.25);
            font-size: 0.7rem;
        }

        .breadcrumb-custom .current {
            color: var(--cyan);
        }

        .page-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .page-hero .page-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
        }

        /* ===== Glass Card Base ===== */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.5) 0%, rgba(27, 109, 255, 0.2) 50%, transparent 100%);
            opacity: 0.35;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: var(--shadow-card-hover);
        }

        /* ===== Buttons ===== */
        .btn-primary-glow {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 11px 24px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            letter-spacing: 0.3px;
            border: none;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.45), 0 0 36px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
        }

        .btn-primary-glow:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.65), 0 0 48px rgba(0, 212, 255, 0.35);
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .btn-primary-glow:active {
            transform: scale(0.98);
            box-shadow: 0 0 12px rgba(27, 109, 255, 0.4);
        }

        .btn-secondary-outline {
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.5);
            color: var(--cyan);
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-weight: 600;
            letter-spacing: 0.2px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
        }

        .btn-secondary-outline:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: rgba(0, 212, 255, 0.8);
            color: var(--cyan);
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
        }

        .btn-secondary-outline:active {
            transform: scale(0.98);
        }

        /* ===== Section Styling ===== */
        .page-section {
            padding: var(--section-gap) 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 10px;
            background: rgba(0, 212, 255, 0.08);
            padding: 5px 14px;
            border-radius: 4px;
            border-left: 2px solid var(--cyan);
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 650;
            line-height: 1.3;
            color: #F0F6FF;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 650px;
            line-height: 1.8;
        }

        /* ===== Status Badge ===== */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .status-badge.live {
            background: rgba(16, 185, 129, 0.12);
            color: var(--success);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .status-badge.live::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.7);
            }
        }

        .status-badge.upcoming {
            background: rgba(245, 158, 11, 0.12);
            color: var(--warning);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .status-badge.finished {
            background: rgba(100, 116, 139, 0.12);
            color: var(--ended);
            border: 1px solid rgba(100, 116, 139, 0.3);
        }

        /* ===== Focus Score Card ===== */
        .focus-score-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: var(--radius-card);
            box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.08);
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .focus-score-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary), var(--cyan), transparent);
            pointer-events: none;
        }

        .focus-score-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            flex-wrap: wrap;
            gap: 12px;
        }

        .focus-score-header .match-tag {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .focus-score-body {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            padding: 28px;
            gap: 24px;
            flex-wrap: wrap;
        }

        .focus-score-team {
            flex: 1;
            min-width: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .focus-score-team .team-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.15), rgba(0, 212, 255, 0.08));
            border: 1px solid rgba(0, 212, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cyan);
            letter-spacing: 0.5px;
        }

        .focus-score-team .team-name {
            font-size: 1.1rem;
            font-weight: 650;
            color: var(--text-primary);
            text-align: center;
        }

        .focus-score-team .team-region {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .focus-score-center {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-width: 160px;
        }

        .focus-score-center .big-score {
            font-size: 3rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.55), 0 0 40px rgba(0, 212, 255, 0.25);
            letter-spacing: 4px;
            font-variant-numeric: tabular-nums;
            line-height: 1;
        }

        .focus-score-center .score-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        .focus-score-progress {
            padding: 0 28px 24px;
        }

        .focus-score-progress .progress-label {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .focus-score-progress .progress-track {
            height: 6px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 3px;
            overflow: hidden;
        }

        .focus-score-progress .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 3px;
            transition: width 0.6s ease;
            box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
        }

        .focus-score-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .focus-score-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .focus-score-meta i {
            color: var(--cyan);
            font-size: 0.75rem;
        }

        /* ===== Score Item Card ===== */
        .score-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            gap: 16px;
            flex-wrap: wrap;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            box-shadow: var(--shadow-card);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .score-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(27, 109, 255, 0.15), transparent);
            opacity: 0.3;
            pointer-events: none;
        }

        .score-item:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
        }

        .score-item .match-info {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .score-item .team-pair {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .score-item .team-pair .abbr {
            padding: 4px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.09);
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        .score-item .vs {
            color: var(--text-muted);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .score-item .item-score {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
            letter-spacing: 2px;
            font-variant-numeric: tabular-nums;
        }

        .score-item .item-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .score-item .item-progress {
            width: 120px;
            height: 4px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 2px;
            overflow: hidden;
        }

        .score-item .item-progress .fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
        }

        /* ===== Filter Bar ===== */
        .filter-bar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
            padding: 4px 0;
        }

        .filter-btn {
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-secondary);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.09);
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .filter-btn:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .filter-btn.active {
            color: var(--cyan);
            background: rgba(0, 212, 255, 0.08);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
        }

        /* ===== Stats Summary ===== */
        .stat-block {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            box-shadow: var(--shadow-card);
            transition: all 0.35s ease;
        }

        .stat-block:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 212, 255, 0.35);
            box-shadow: var(--shadow-card-hover);
        }

        .stat-block .stat-num {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0 16px rgba(27, 109, 255, 0.5), 0 0 32px rgba(0, 212, 255, 0.25);
            font-variant-numeric: tabular-nums;
            line-height: 1.1;
        }

        .stat-block .stat-num.cyan {
            color: var(--cyan);
            text-shadow: 0 0 16px rgba(0, 212, 255, 0.55);
        }

        .stat-block .stat-label {
            font-size: 0.82rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* ===== Subscribe CTA Banner ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.12), rgba(0, 212, 255, 0.06));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: var(--radius-card);
            padding: 36px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-banner h3 {
            font-size: 1.35rem;
            font-weight: 650;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .cta-banner p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* ===== News Item ===== */
        .news-item-compact {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        .news-item-compact:last-child {
            border-bottom: none;
        }

        .news-item-compact:hover {
            padding-left: 8px;
        }

        .news-date-badge {
            flex: 0 0 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            line-height: 1.2;
        }

        .news-date-badge .day {
            font-size: 1.2rem;
            color: var(--cyan);
        }

        .news-date-badge .month {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        .news-item-compact .news-body {
            flex: 1;
        }

        .news-item-compact .news-body h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .news-item-compact .news-body p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
            line-height: 1.7;
        }

        .news-item-compact .read-more {
            font-size: 0.8rem;
            color: var(--cyan);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s ease;
        }

        .news-item-compact .read-more:hover {
            gap: 8px;
            color: var(--accent);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #060A12;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .footer-brand h3 span {
            color: var(--cyan);
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-col ul a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom-links a {
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom-links span {
            color: rgba(255, 255, 255, 0.2);
        }

        .footer-bottom-copyright {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 0;
            }

            .nav-menu a {
                padding: 8px 10px;
                font-size: 0.85rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .focus-score-center .big-score {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .mobile-drawer {
                display: block;
            }

            .mobile-drawer-overlay {
                display: block;
            }

            .page-hero {
                padding: 110px 0 40px;
            }

            .page-hero h1 {
                font-size: 1.8rem;
            }

            .page-hero .page-desc {
                font-size: 0.92rem;
            }

            .focus-score-body {
                flex-direction: column;
                gap: 16px;
                padding: 20px;
            }

            .focus-score-team {
                min-width: auto;
                flex-direction: row;
                gap: 12px;
            }

            .focus-score-center {
                min-width: auto;
                order: 2;
            }

            .focus-score-center .big-score {
                font-size: 2rem;
            }

            .focus-score-header {
                padding: 14px 20px;
            }

            .focus-score-progress {
                padding: 0 20px 20px;
            }

            .score-item {
                padding: 16px 18px;
                gap: 10px;
            }

            .score-item .item-score {
                font-size: 1.2rem;
            }

            .score-item .item-progress {
                width: 80px;
            }

            .cta-banner {
                padding: 24px 20px;
                flex-direction: column;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
            }

            .stat-block {
                padding: 18px 20px;
            }

            .stat-block .stat-num {
                font-size: 1.6rem;
            }

            .news-item-compact {
                flex-direction: column;
                gap: 12px;
            }

            .news-date-badge {
                flex: 0 0 auto;
                flex-direction: row;
                gap: 4px;
                height: auto;
                padding: 6px 14px;
                width: auto;
            }

            .news-date-badge .day {
                font-size: 1rem;
            }

            .news-date-badge .month {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .page-hero h1 {
                font-size: 1.5rem;
            }

            .focus-score-body {
                padding: 16px;
                gap: 10px;
            }

            .focus-score-team .team-icon {
                width: 48px;
                height: 48px;
                font-size: 1.1rem;
                border-radius: 8px;
            }

            .focus-score-team .team-name {
                font-size: 0.95rem;
            }

            .focus-score-center .big-score {
                font-size: 1.7rem;
                letter-spacing: 2px;
            }

            .focus-score-header {
                padding: 10px 14px;
                gap: 8px;
            }

            .focus-score-meta {
                gap: 10px;
                font-size: 0.72rem;
            }

            .focus-score-progress {
                padding: 0 14px 16px;
            }

            .score-item {
                padding: 12px 14px;
                border-radius: 10px;
            }

            .score-item .team-pair {
                font-size: 0.82rem;
                gap: 4px;
            }

            .score-item .team-pair .abbr {
                padding: 2px 7px;
                font-size: 0.7rem;
            }

            .score-item .item-score {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .score-item .item-meta {
                font-size: 0.68rem;
                gap: 6px;
            }

            .score-item .item-progress {
                width: 60px;
                height: 3px;
            }

            .filter-btn {
                padding: 6px 13px;
                font-size: 0.72rem;
                border-radius: 16px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .cta-banner h3 {
                font-size: 1.1rem;
            }

            .stat-block {
                padding: 14px 16px;
                gap: 12px;
            }

            .stat-block .stat-num {
                font-size: 1.4rem;
            }
        }

/* roulang page: category2 */
:root {
            --bg-base: #080C14;
            --bg-panel: #0D1626;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.09);
            --primary: #1B6DFF;
            --cyan: #00D4FF;
            --accent: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --ended: #64748B;
            --text-primary: #E6F1FF;
            --text-secondary: #9FB3C8;
            --text-muted: #64748B;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
            --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
            --container-width: 1200px;
            --section-gap: 80px;
            --card-gap: 24px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 68px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: var(--font-stack);
            font-size: 1rem;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Bootstrap Overrides ===== */
        .row {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 1.5rem;
        }

        .btn {
            font-family: var(--font-stack);
            border-radius: var(--radius-btn);
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .btn:focus {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        .btn-primary-glow {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            border: none;
            padding: 10px 24px;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: var(--radius-btn);
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
            white-space: nowrap;
            display: inline-block;
        }

        .btn-primary-glow:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #2a7dff, #1ad8ff);
        }

        .btn-primary-glow:active {
            transform: scale(0.98);
            box-shadow: 0 0 12px rgba(27, 109, 255, 0.5), 0 0 24px rgba(0, 212, 255, 0.2);
        }

        .btn-outline-cyan {
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.5);
            color: var(--cyan);
            padding: 9px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: var(--radius-btn);
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .btn-outline-cyan:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: rgba(0, 212, 255, 0.8);
            color: var(--cyan);
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
        }

        .btn-outline-cyan:active {
            transform: scale(0.98);
        }

        .btn-outline-muted {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
            padding: 8px 18px;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: var(--radius-btn);
            transition: all 0.3s ease;
        }

        .btn-outline-muted:hover {
            border-color: rgba(0, 212, 255, 0.45);
            color: var(--cyan);
            background: rgba(0, 212, 255, 0.05);
        }

        .btn-outline-muted:active {
            transform: scale(0.98);
        }

        /* ===== Header / Nav ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(8, 12, 20, 0.78);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(8, 12, 20, 0.9);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
            flex-shrink: 0;
        }

        .nav-logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo-text span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color 0.25s ease, background 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 28px);
        }

        .nav-menu a.active {
            color: var(--text-primary);
        }

        .nav-menu a.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
        }

        .nav-cta:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
            background: linear-gradient(135deg, #2a7dff, #1ad8ff);
        }

        .nav-toggle {
            display: none;
            background: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }

        .nav-toggle:hover {
            border-color: var(--glass-border);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Mobile nav drawer */
        .nav-drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(8, 12, 20, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-drawer-overlay.open {
            opacity: 1;
        }

        .nav-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 280px;
            max-width: 85vw;
            height: 100vh;
            background: rgba(13, 22, 38, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1001;
            padding: 24px 20px;
            transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            gap: 20px;
            border-left: 1px solid var(--glass-border);
            box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
        }

        .nav-drawer.open {
            right: 0;
        }

        .nav-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--glass-border);
        }

        .nav-drawer-header .nav-logo-text {
            font-size: 1rem;
        }

        .nav-drawer-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            padding: 4px;
            transition: color 0.25s;
        }

        .nav-drawer-close:hover {
            color: var(--text-primary);
        }

        .nav-drawer-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .nav-drawer-menu a {
            display: block;
            padding: 12px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 10px;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-drawer-menu a:hover,
        .nav-drawer-menu a.active {
            color: var(--text-primary);
            background: rgba(0, 212, 255, 0.06);
        }

        .nav-drawer-menu a.active {
            border-left: 2px solid var(--cyan);
            padding-left: 14px;
        }

        .nav-drawer-cta {
            margin-top: auto;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4);
            transition: all 0.3s ease;
            border: none;
            letter-spacing: 0.3px;
        }

        .nav-drawer-cta:hover {
            box-shadow: 0 0 28px rgba(27, 109, 255, 0.6);
            color: #fff;
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb-area {
            padding: 50px 0 20px;
            background: var(--bg-base);
            position: relative;
        }

        .breadcrumb-area::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), rgba(27, 109, 255, 0.2), transparent);
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.25s;
        }

        .breadcrumb-nav a:hover {
            color: var(--cyan);
        }

        .breadcrumb-sep {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        .breadcrumb-current {
            color: var(--cyan);
            font-weight: 500;
        }

        /* ===== Page H1 Area ===== */
        .page-heading-area {
            padding: 40px 0 50px;
            background: var(--bg-base);
        }

        .page-heading-area h1 {
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .page-heading-area h1 .accent-cyan {
            color: var(--cyan);
        }

        .page-heading-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 780px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ===== Section common ===== */
        .section-block {
            padding: 56px 0;
            position: relative;
        }

        .section-block-alt {
            padding: 56px 0;
            background: var(--bg-panel);
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--cyan);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 12px;
        }

        .section-label::before {
            content: '';
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 650;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .section-subtitle {
            font-size: 0.98rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 680px;
            line-height: 1.75;
        }

        /* ===== Glass Card ===== */
        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(27, 109, 255, 0.15), transparent);
            opacity: 0.35;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: var(--shadow-card-hover);
        }

        /* ===== Focus Match Card ===== */
        .focus-match-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: rgba(13, 22, 38, 0.85);
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
        }

        .focus-match-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 0;
        }

        .focus-match-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.85) 60%, rgba(8, 12, 20, 0.95) 100%);
            z-index: 1;
        }

        .focus-match-content {
            position: relative;
            z-index: 2;
            padding: 40px 36px 36px;
        }

        .focus-match-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 212, 255, 0.12);
            border: 1px solid rgba(0, 212, 255, 0.35);
            color: var(--cyan);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
        }

        .focus-match-tag.warning {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.4);
            color: var(--warning);
        }

        .focus-match-league {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .focus-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .focus-match-team {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .focus-match-team-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }

        .focus-match-team-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }

        .focus-match-vs {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
            letter-spacing: 2px;
        }

        .focus-match-time {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .focus-match-time span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .focus-match-time .icon-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
        }

        /* ===== Match Schedule Cards ===== */
        .schedule-card {
            display: flex;
            align-items: stretch;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.35s ease;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            margin-bottom: 16px;
            position: relative;
        }

        .schedule-card:hover {
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
            transform: translateY(-2px);
        }

        .schedule-card-date {
            flex-shrink: 0;
            width: 90px;
            background: rgba(0, 212, 255, 0.04);
            border-right: 1px solid var(--glass-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 16px 10px;
        }

        .schedule-card-date .day {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }

        .schedule-card-date .month {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .schedule-card-date .time {
            font-size: 0.78rem;
            color: var(--cyan);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .schedule-card-body {
            flex: 1;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .schedule-card-matchup {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .schedule-card-team {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }

        .schedule-card-vs {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .schedule-card-stage {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
            font-size: 0.75rem;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 14px;
            letter-spacing: 0.3px;
        }

        .schedule-card-stage.live {
            background: rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.4);
            color: var(--success);
        }

        .schedule-card-stage.upcoming {
            background: rgba(245, 158, 11, 0.1);
            border-color: rgba(245, 158, 11, 0.35);
            color: var(--warning);
        }

        .schedule-card-stage.finished {
            background: rgba(100, 116, 139, 0.12);
            border-color: rgba(100, 116, 139, 0.3);
            color: var(--ended);
        }

        /* ===== Timeline ===== */
        .timeline-section {
            position: relative;
        }

        .timeline-group {
            margin-bottom: 28px;
        }

        .timeline-group-date {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }

        .timeline-group-date .date-badge {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 16px rgba(27, 109, 255, 0.35);
            white-space: nowrap;
        }

        .timeline-group-date .date-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
        }

        .timeline-item {
            position: relative;
            padding-left: 28px;
            padding-bottom: 20px;
            border-left: 2px dashed rgba(0, 212, 255, 0.2);
            margin-left: 16px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
            border-left-color: transparent;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--bg-base);
            border: 2px solid var(--cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .timeline-item .timeline-time {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }

        .timeline-item .timeline-matchup {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }

        .timeline-item .timeline-stage-tag {
            display: inline-block;
            margin-top: 6px;
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ===== Stage Explanation ===== */
        .stage-explanation-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 28px;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            transition: all 0.35s ease;
        }

        .stage-explanation-card:hover {
            border-color: rgba(0, 212, 255, 0.35);
            box-shadow: var(--shadow-card);
        }

        .stage-explanation-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .stage-explanation-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--cyan);
            flex-shrink: 0;
        }

        .stage-explanation-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0;
        }

        .stage-explanation-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ===== CTA Banner ===== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.1), rgba(0, 212, 255, 0.08));
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: var(--radius-card);
            padding: 36px 32px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(27, 109, 255, 0.3), transparent);
            opacity: 0.6;
        }

        .cta-banner-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }

        .cta-banner-content p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            margin-bottom: 0;
            max-width: 520px;
        }

        /* ===== News List ===== */
        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .news-list-item:first-child {
            padding-top: 0;
        }

        .news-list-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .news-list-item:hover .news-list-title {
            color: var(--cyan);
        }

        .news-list-date {
            flex-shrink: 0;
            width: 56px;
            text-align: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 8px 6px;
        }

        .news-list-date .d {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .news-list-date .m {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .news-list-content {
            flex: 1;
            min-width: 0;
        }

        .news-list-title {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            transition: color 0.25s;
            display: block;
        }

        .news-list-summary {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-list-read {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 0.3px;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .news-list-read::after {
            content: '→';
            transition: transform 0.25s;
        }

        .news-list-read:hover {
            color: var(--accent);
        }

        .news-list-read:hover::after {
            transform: translateX(4px);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: rgba(4, 8, 16, 0.98);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 60px 0 24px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .footer-brand h3 span {
            color: var(--cyan);
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 320px;
            margin-bottom: 0;
        }

        .footer-col h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul a {
            font-size: 0.88rem;
            color: var(--text-secondary);
            transition: color 0.25s;
        }

        .footer-col ul a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-bottom-links a {
            color: var(--text-secondary);
            transition: color 0.25s;
        }

        .footer-bottom-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom-copyright {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            :root {
                --section-gap: 60px;
                --card-gap: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .nav-inner {
                height: 60px;
                gap: 14px;
            }

            .nav-menu {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .nav-drawer-overlay.open {
                display: block;
            }

            .page-heading-area h1 {
                font-size: 1.8rem;
            }

            .page-heading-desc {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.45rem;
            }

            .section-block,
            .section-block-alt {
                padding: 40px 0;
            }

            .focus-match-content {
                padding: 28px 20px 24px;
            }

            .focus-match-team-name {
                font-size: 1rem;
            }

            .focus-match-team-logo {
                width: 36px;
                height: 36px;
                font-size: 0.6rem;
            }

            .schedule-card {
                flex-direction: column;
            }

            .schedule-card-date {
                width: 100%;
                flex-direction: row;
                gap: 10px;
                padding: 10px 16px;
                border-right: none;
                border-bottom: 1px solid var(--glass-border);
                justify-content: flex-start;
            }

            .schedule-card-date .day {
                font-size: 1.2rem;
            }

            .schedule-card-body {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 14px 16px;
            }

            .cta-banner {
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 20px;
            }

            .news-list-item {
                flex-direction: column;
                gap: 12px;
            }

            .news-list-date {
                width: auto;
                display: inline-flex;
                gap: 8px;
                align-items: center;
                flex-direction: row;
                padding: 6px 12px;
            }

            .news-list-date .d {
                font-size: 1rem;
            }

            .news-list-date .m {
                font-size: 0.7rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .timeline-item {
                margin-left: 8px;
                padding-left: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .page-heading-area h1 {
                font-size: 1.5rem;
            }

            .focus-match-teams {
                gap: 8px;
            }

            .focus-match-team {
                gap: 8px;
            }

            .focus-match-team-name {
                font-size: 0.85rem;
            }

            .focus-match-vs {
                font-size: 0.85rem;
            }

            .btn-primary-glow,
            .btn-outline-cyan {
                width: 100%;
                text-align: center;
            }

            .stage-explanation-card {
                padding: 20px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-base: #080C14;
            --bg-panel: #0D1626;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.09);
            --primary: #1B6DFF;
            --cyan: #00D4FF;
            --accent: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --ended: #64748B;
            --text-primary: #E6F1FF;
            --text-secondary: #9FB3C8;
            --text-muted: #64748B;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
            --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
            --container-width: 1200px;
            --section-gap: 80px;
            --card-gap: 24px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            padding-top: 68px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

        a:hover {
            color: var(--cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: var(--font-stack);
            font-size: 1rem;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header / Nav */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(8, 12, 20, 0.82);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(8, 12, 20, 0.94);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
        }

        .nav-logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo-text span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color 0.25s ease, background 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 28px);
        }

        .nav-menu a.active {
            color: var(--text-primary);
        }

        .nav-menu a.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 9px 18px;
            border-radius: var(--radius-btn);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            background: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 8px;
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            transition: all 0.3s ease;
        }

        .nav-toggle:hover {
            border-color: var(--cyan);
            color: var(--cyan);
        }

        /* Mobile Nav Drawer */
        .nav-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .nav-drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .nav-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: rgba(13, 22, 38, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid var(--glass-border);
            z-index: 1001;
            padding: 24px 20px;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 24px;
            overflow-y: auto;
        }

        .nav-drawer.active {
            right: 0;
        }

        .nav-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--glass-border);
        }

        .nav-drawer-close {
            background: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            line-height: 1;
            transition: color 0.25s ease;
        }

        .nav-drawer-close:hover {
            color: var(--cyan);
        }

        .nav-drawer-menu {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nav-drawer-menu a {
            display: block;
            padding: 12px 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all 0.25s ease;
            border-left: 2px solid transparent;
        }

        .nav-drawer-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            border-left-color: var(--cyan);
        }

        .nav-drawer-menu a.active {
            color: var(--text-primary);
            background: rgba(0, 212, 255, 0.08);
            border-left-color: var(--cyan);
        }

        .nav-drawer .nav-cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            padding-top: 40px;
            padding-bottom: 16px;
            margin-bottom: 0;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
            padding: 0;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-custom a {
            color: var(--text-muted);
            transition: color 0.25s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--cyan);
        }

        .breadcrumb-custom li:not(:last-child)::after {
            content: '›';
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-left: 4px;
        }

        .breadcrumb-custom .current {
            color: var(--cyan);
            font-weight: 500;
        }

        /* Page Header */
        .page-header {
            padding: 24px 0 40px;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .page-header .page-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.8;
        }

        /* Glass Card */
        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(27, 109, 255, 0.15), transparent);
            opacity: 0.35;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: var(--shadow-card-hover);
        }

        /* Buttons */
        .btn-glow-primary {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            border-radius: var(--radius-btn);
            font-weight: 600;
            padding: 10px 24px;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.45), 0 0 36px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            text-align: center;
        }

        .btn-glow-primary:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.65), 0 0 48px rgba(0, 212, 255, 0.35);
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .btn-glow-primary:active {
            transform: scale(0.98);
            box-shadow: 0 0 12px rgba(27, 109, 255, 0.4);
        }

        .btn-glow-outline {
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.5);
            color: var(--cyan);
            border-radius: var(--radius-btn);
            font-weight: 600;
            padding: 10px 20px;
            font-size: 0.88rem;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-glow-outline:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 18px rgba(0, 212, 255, 0.2);
        }

        .btn-glow-outline:active {
            transform: scale(0.98);
        }

        /* Section */
        .section-block {
            padding: 56px 0;
        }

        .section-block + .section-block {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* Focus News Card */
        .focus-news-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 360px;
            background: var(--bg-panel);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
            position: relative;
        }

        .focus-news-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
        }

        .focus-news-img {
            position: relative;
            overflow: hidden;
            min-height: 280px;
        }

        .focus-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .focus-news-card:hover .focus-news-img img {
            transform: scale(1.04);
        }

        .focus-news-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(8, 12, 20, 0.1) 0%, rgba(8, 12, 20, 0.5) 60%, rgba(8, 12, 20, 0.85) 100%);
        }

        .focus-news-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
        }

        .focus-news-body {
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }

        .focus-news-date {
            font-size: 0.82rem;
            color: var(--cyan);
            font-weight: 500;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .focus-news-title {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
        }

        .focus-news-summary {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* News List */
        .news-list-item {
            display: flex;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.25s ease;
            position: relative;
        }

        .news-list-item:last-child {
            border-bottom: none;
        }

        .news-list-item:hover {
            background: rgba(255, 255, 255, 0.02);
            padding-left: 12px;
        }

        .news-date-box {
            flex-shrink: 0;
            width: 60px;
            height: 64px;
            background: rgba(0, 212, 255, 0.06);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
        }

        .news-date-day {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--cyan);
            line-height: 1.1;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
        }

        .news-date-month {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .news-list-content {
            flex: 1;
            min-width: 0;
        }

        .news-list-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
            transition: color 0.25s ease;
        }

        .news-list-content:hover .news-list-title {
            color: var(--cyan);
        }

        .news-list-summary {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-list-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .news-list-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            color: var(--cyan);
            background: rgba(0, 212, 255, 0.05);
        }

        .btn-read-more {
            flex-shrink: 0;
            align-self: center;
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.4);
            color: var(--cyan);
            border-radius: var(--radius-btn);
            padding: 8px 18px;
            font-size: 0.82rem;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-read-more:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: var(--cyan);
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.2);
            color: var(--cyan);
        }

        /* Tag / Category Section */
        .tag-filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-filter-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            border: 1px solid var(--glass-border);
            background: var(--glass-bg);
            transition: all 0.3s ease;
        }

        .tag-filter-link:hover {
            color: var(--cyan);
            border-color: rgba(0, 212, 255, 0.4);
            background: rgba(0, 212, 255, 0.05);
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.12);
        }

        .tag-filter-link.active {
            color: var(--cyan);
            border-color: rgba(0, 212, 255, 0.5);
            background: rgba(0, 212, 255, 0.08);
        }

        /* Data Ticker */
        .data-ticker-bar {
            background: var(--bg-panel);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .data-ticker-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan), transparent);
            opacity: 0.6;
        }

        .data-ticker-label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .data-ticker-items {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            flex: 1;
        }

        .data-ticker-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .data-ticker-item .ticker-score {
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
            font-family: "SF Mono", "Consolas", monospace;
        }

        .data-ticker-item .ticker-status {
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 500;
        }

        .ticker-status.live {
            color: var(--success);
            background: rgba(16, 185, 129, 0.1);
        }

        .ticker-status.upcoming {
            color: var(--warning);
            background: rgba(245, 158, 11, 0.1);
        }

        /* Subscribe CTA Compact */
        .subscribe-cta-compact {
            background: var(--bg-panel);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 28px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .subscribe-cta-compact::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 70%);
            pointer-events: none;
        }

        .subscribe-cta-compact h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .subscribe-cta-compact p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .subscribe-cta-compact .btn-glow-primary {
            flex-shrink: 0;
        }

        /* Related Data Entry */
        .related-data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--card-gap);
        }

        .related-data-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 20px 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .related-data-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), transparent);
            opacity: 0.35;
        }

        .related-data-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 212, 255, 0.4);
            box-shadow: var(--shadow-card-hover);
        }

        .related-data-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.2), rgba(0, 212, 255, 0.15));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan);
            font-size: 1.3rem;
            border: 1px solid rgba(0, 212, 255, 0.25);
        }

        .related-data-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .related-data-info p {
            font-size: 0.83rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Footer */
        .site-footer {
            background: #060B12;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 56px 0 32px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .footer-brand h3 span {
            color: var(--cyan);
        }

        .footer-brand p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 320px;
            margin: 0;
        }

        .footer-col h4 {
            font-size: 0.88rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-col ul a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-bottom-links a {
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom-links span {
            color: var(--text-muted);
        }

        .footer-bottom-copyright {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1023px) {
            .focus-news-card {
                grid-template-columns: 1fr;
            }

            .focus-news-img {
                min-height: 220px;
                max-height: 280px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .related-data-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body {
                padding-top: 60px;
                font-size: 15px;
            }

            .nav-inner {
                height: 60px;
                gap: 12px;
            }

            .nav-menu {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .nav-logo-text {
                font-size: 1rem;
            }

            .logo-mark {
                width: 32px;
                height: 32px;
                font-size: 0.7rem;
            }

            .breadcrumb-section {
                padding-top: 24px;
                padding-bottom: 8px;
            }

            .page-header {
                padding: 16px 0 28px;
            }

            .page-header h1 {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .page-header .page-desc {
                font-size: 0.92rem;
                line-height: 1.7;
            }

            .section-block {
                padding: 40px 0;
            }

            .focus-news-card {
                min-height: auto;
            }

            .focus-news-img {
                min-height: 180px;
            }

            .focus-news-body {
                padding: 22px 18px;
                gap: 10px;
            }

            .focus-news-title {
                font-size: 1.2rem;
            }

            .focus-news-summary {
                font-size: 0.88rem;
            }

            .news-list-item {
                flex-direction: column;
                gap: 12px;
                padding: 18px 0;
            }

            .news-list-item:hover {
                padding-left: 0;
            }

            .news-date-box {
                width: 50px;
                height: 54px;
            }

            .news-date-day {
                font-size: 1.2rem;
            }

            .btn-read-more {
                align-self: flex-start;
                padding: 7px 14px;
                font-size: 0.78rem;
            }

            .news-list-title {
                font-size: 1rem;
            }

            .news-list-summary {
                font-size: 0.84rem;
            }

            .subscribe-cta-compact {
                padding: 22px 20px;
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .subscribe-cta-compact h3 {
                font-size: 1.05rem;
            }

            .subscribe-cta-compact .btn-glow-primary {
                width: 100%;
            }

            .data-ticker-bar {
                padding: 14px 16px;
                gap: 10px;
            }

            .data-ticker-items {
                gap: 12px;
            }

            .data-ticker-item {
                font-size: 0.78rem;
            }

            .tag-filter-bar {
                gap: 8px;
            }

            .tag-filter-link {
                padding: 6px 14px;
                font-size: 0.78rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                margin-bottom: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .related-data-card {
                padding: 16px 18px;
                gap: 12px;
            }

            .related-data-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 16px;
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .focus-news-badge {
                top: 12px;
                left: 12px;
                font-size: 0.7rem;
                padding: 4px 10px;
            }

            .news-date-box {
                width: 44px;
                height: 48px;
            }

            .news-date-day {
                font-size: 1.1rem;
            }

            .section-block {
                padding: 32px 0;
            }
        }

/* roulang page: category4 */
:root {
            --bg-base: #080C14;
            --bg-panel: #0D1626;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.09);
            --primary: #1B6DFF;
            --cyan: #00D4FF;
            --accent: #22D3EE;
            --success: #10B981;
            --warning: #F59E0B;
            --ended: #64748B;
            --text-primary: #E6F1FF;
            --text-secondary: #9FB3C8;
            --text-muted: #64748B;
            --radius-card: 16px;
            --radius-btn: 10px;
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
            --shadow-card-hover: 0 16px 40px rgba(0, 0, 0, 0.5);
            --font-stack: "Inter", "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
            --container-width: 1200px;
            --section-gap: 80px;
            --card-gap: 24px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 1rem;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--cyan);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: var(--font-stack);
            font-size: 1rem;
            border: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== Header / Nav ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(8, 12, 20, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(8, 12, 20, 0.88);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            box-shadow: 0 0 14px rgba(0, 212, 255, 0.35);
        }

        .nav-logo-text {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-logo-text span {
            color: var(--cyan);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 8px 14px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: color 0.25s ease, background 0.25s ease;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.04);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: calc(100% - 28px);
        }

        .nav-menu a.active {
            color: var(--text-primary);
        }

        .nav-menu a.active::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
        }

        .nav-cta {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 9px 20px;
            border-radius: var(--radius-btn);
            font-size: 0.88rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.4), 0 0 36px rgba(0, 212, 255, 0.15);
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
        }

        .nav-cta:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.6), 0 0 48px rgba(0, 212, 255, 0.3);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav-toggle {
            display: none;
            background: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
            padding: 6px;
            border-radius: 6px;
            border: none;
        }

        /* ========== Breadcrumb & H1 ========== */
        .page-header {
            padding: 140px 0 50px;
            background: linear-gradient(180deg, rgba(13, 22, 38, 0.95) 0%, rgba(8, 12, 20, 0.98) 100%);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(27, 109, 255, 0.12), transparent 55%), radial-gradient(ellipse at 70% 60%, rgba(0, 212, 255, 0.08), transparent 50%);
            pointer-events: none;
        }

        .page-header .container {
            position: relative;
            z-index: 1;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            list-style: none;
            padding: 0;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--cyan);
        }

        .breadcrumb-nav .separator {
            color: var(--text-muted);
            user-select: none;
        }

        .breadcrumb-nav .current {
            color: var(--cyan);
            font-weight: 500;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .page-header .header-desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 720px;
            line-height: 1.75;
        }

        /* ========== Section Base ========== */
        .content-section {
            padding: var(--section-gap) 0;
        }

        .content-section .section-heading {
            margin-bottom: 36px;
        }

        .content-section .section-heading h2 {
            font-size: 1.75rem;
            font-weight: 650;
            line-height: 1.3;
            color: #F0F6FF;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }

        .content-section .section-heading p {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 680px;
            line-height: 1.7;
            margin: 0;
        }

        /* ========== Glass Card ========== */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(27, 109, 255, 0.15), transparent);
            opacity: 0.35;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 212, 255, 0.45);
            box-shadow: var(--shadow-card-hover);
        }

        /* ========== Badge ========== */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .status-badge.live {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
            border: 1px solid rgba(16, 185, 129, 0.35);
        }

        .status-badge.upcoming {
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning);
            border: 1px solid rgba(245, 158, 11, 0.35);
        }

        .status-badge.ended {
            background: rgba(100, 116, 139, 0.15);
            color: var(--ended);
            border: 1px solid rgba(100, 116, 139, 0.3);
        }

        /* ========== Stat Number ========== */
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.55);
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.5px;
        }

        .stat-number.blue-glow {
            color: var(--primary);
            text-shadow: 0 0 16px rgba(27, 109, 255, 0.6);
        }

        /* ========== Buttons ========== */
        .btn-glow {
            background: linear-gradient(135deg, var(--primary), var(--cyan));
            color: #fff;
            padding: 12px 26px;
            border-radius: var(--radius-btn);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 0 18px rgba(27, 109, 255, 0.45), 0 0 36px rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }

        .btn-glow:hover {
            box-shadow: 0 0 24px rgba(27, 109, 255, 0.65), 0 0 48px rgba(0, 212, 255, 0.35);
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        .btn-glow:active {
            transform: scale(0.98);
        }

        .btn-glow:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        .btn-outline-glow {
            background: transparent;
            border: 1px solid rgba(0, 212, 255, 0.5);
            color: var(--cyan);
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-outline-glow:hover {
            background: rgba(0, 212, 255, 0.08);
            border-color: var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
        }

        .btn-outline-glow:active {
            transform: scale(0.98);
        }

        .btn-outline-glow:focus-visible {
            outline: 2px solid var(--cyan);
            outline-offset: 2px;
        }

        /* ========== Player Cards ========== */
        .player-card {
            padding: 20px 22px;
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .player-card .player-rank {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-muted);
            min-width: 40px;
            text-align: center;
            flex-shrink: 0;
        }

        .player-card .player-rank.rank-1 {
            color: var(--cyan);
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .player-card .player-rank.rank-2 {
            color: var(--accent);
            text-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
        }

        .player-card .player-rank.rank-3 {
            color: var(--primary);
            text-shadow: 0 0 8px rgba(27, 109, 255, 0.5);
        }

        .player-card .player-info {
            flex: 1;
            min-width: 160px;
        }

        .player-card .player-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
        }

        .player-card .player-role {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .player-card .player-team {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 2px;
        }

        .player-card .player-stats-grid {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .player-card .mini-stat {
            text-align: center;
        }

        .player-card .mini-stat .label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-bottom: 3px;
        }

        .player-card .mini-stat .value {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
        }

        .player-card .mini-stat .value.highlight {
            color: var(--cyan);
            text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
        }

        /* ========== Focus Player Card ========== */
        .focus-player-card {
            padding: 28px 30px;
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 26px;
            align-items: start;
        }

        .focus-player-card .focus-avatar {
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1/1;
            background: var(--bg-panel);
            border: 1px solid var(--glass-border);
        }

        .focus-player-card .focus-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .focus-player-card .focus-name-area h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.3px;
            margin-bottom: 4px;
        }

        .focus-player-card .focus-role-area {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .focus-player-card .focus-stats-row {
            display: flex;
            gap: 26px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .focus-player-card .focus-stat {
            text-align: center;
            min-width: 80px;
        }

        .focus-player-card .focus-stat .label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.4px;
            margin-bottom: 3px;
        }

        .focus-player-card .focus-stat .value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--cyan);
            text-shadow: 0 0 12px rgba(0, 212, 255, 0.45);
            font-variant-numeric: tabular-nums;
        }

        .focus-player-card .focus-stat .value.text-primary {
            color: var(--text-primary);
            text-shadow: none;
        }

        .focus-player-card .focus-bars {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .focus-player-card .bar-item {
            display: grid;
            grid-template-columns: 90px 1fr 40px;
            align-items: center;
            gap: 12px;
            font-size: 0.8rem;
        }

        .focus-player-card .bar-item .bar-label {
            color: var(--text-secondary);
            text-align: right;
        }

        .focus-player-card .bar-item .bar-track {
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
        }

        .focus-player-card .bar-item .bar-fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--cyan));
            transition: width 1.2s ease;
        }

        .focus-player-card .bar-item .bar-value {
            color: var(--text-primary);
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        /* ========== Dimension Cards ========== */
        .dimension-card {
            padding: 22px 24px;
            height: 100%;
        }

        .dimension-card .dim-icon {
            font-size: 1.6rem;
            color: var(--cyan);
            margin-bottom: 12px;
            display: inline-block;
        }

        .dimension-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .dimension-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.65;
            margin: 0;
        }

        /* ========== Comparison Simple List ========== */
        .comparison-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .comparison-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            transition: all 0.25s ease;
        }

        .comparison-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(0, 212, 255, 0.25);
        }

        .comparison-item .change-arrow {
            font-size: 1.1rem;
            flex-shrink: 0;
            min-width: 28px;
            text-align: center;
        }

        .comparison-item .change-arrow.up {
            color: var(--success);
        }

        .comparison-item .change-arrow.down {
            color: #F87171;
        }

        .comparison-item .change-arrow.flat {
            color: var(--text-muted);
        }

        .comparison-item .cmp-player {
            font-weight: 600;
            color: var(--text-primary);
            min-width: 90px;
        }

        .comparison-item .cmp-detail {
            flex: 1;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .comparison-item .cmp-diff {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            white-space: nowrap;
        }

        /* ========== News List ========== */
        .news-item-horizontal {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            flex-wrap: wrap;
        }

        .news-item-horizontal:last-child {
            border-bottom: none;
        }

        .news-item-horizontal .news-date-card {
            width: 56px;
            height: 56px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .news-item-horizontal .news-date-card .day {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--cyan);
            line-height: 1.2;
        }

        .news-item-horizontal .news-date-card .month {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.4px;
        }

        .news-item-horizontal .news-body {
            flex: 1;
            min-width: 220px;
        }

        .news-item-horizontal .news-body h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
            line-height: 1.4;
        }

        .news-item-horizontal .news-body p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item-horizontal .btn-outline-glow {
            flex-shrink: 0;
            padding: 8px 16px;
            font-size: 0.82rem;
        }

        /* ========== Subscribe Banner ========== */
        .subscribe-banner {
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 26px;
            flex-wrap: wrap;
            background: linear-gradient(135deg, rgba(27, 109, 255, 0.1), rgba(0, 212, 255, 0.06));
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: var(--radius-card);
        }

        .subscribe-banner .subscribe-text h3 {
            font-size: 1.3rem;
            font-weight: 650;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .subscribe-banner .subscribe-text p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .subscribe-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .subscribe-form input[type="email"] {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-btn);
            padding: 11px 18px;
            font-size: 0.9rem;
            color: var(--text-primary);
            min-width: 260px;
            transition: all 0.3s ease;
        }

        .subscribe-form input[type="email"]::placeholder {
            color: var(--text-muted);
        }

        .subscribe-form input[type="email"]:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
            outline: none;
        }

        .subscribe-form .btn-glow {
            padding: 11px 22px;
            font-size: 0.88rem;
        }

        /* ========== Mobile Drawer ========== */
        .drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1100;
            transition: opacity 0.3s ease;
        }

        .drawer-overlay.show {
            display: block;
            opacity: 1;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100vh;
            background: #0B1220;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1200;
            padding: 24px 20px;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 16px;
            overflow-y: auto;
        }

        .mobile-drawer.open {
            right: 0;
        }

        .mobile-drawer .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-drawer .drawer-header h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }

        .mobile-drawer .drawer-close {
            background: none;
            color: var(--text-secondary);
            font-size: 1.3rem;
            line-height: 1;
            padding: 4px;
            border: none;
            transition: color 0.25s ease;
        }

        .mobile-drawer .drawer-close:hover {
            color: var(--cyan);
        }

        .mobile-drawer .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-drawer .drawer-nav a {
            display: block;
            padding: 13px 14px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }

        .mobile-drawer .drawer-nav a:hover,
        .mobile-drawer .drawer-nav a.active {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 212, 255, 0.2);
        }

        .mobile-drawer .drawer-nav a.active {
            color: var(--cyan);
        }

        .mobile-drawer .drawer-cta {
            margin-top: auto;
        }

        .mobile-drawer .drawer-cta .btn-glow {
            width: 100%;
            justify-content: center;
        }

        /* ========== Footer ========== */
        .site-footer {
            background: #050810;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 56px 0 28px;
            margin-top: var(--section-gap);
        }

        .site-footer h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .site-footer h3 span {
            color: var(--cyan);
        }

        .site-footer p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            max-width: 300px;
            line-height: 1.6;
            margin: 0;
        }

        .site-footer h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 8px;
        }

        .site-footer ul a {
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: color 0.25s ease;
        }

        .site-footer ul a:hover {
            color: var(--cyan);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 36px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--cyan);
        }

        .footer-bottom-links span {
            color: var(--text-muted);
        }

        .footer-bottom-copyright {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ========== Responsive ========== */
        @media (max-width: 1023px) {
            :root {
                --section-gap: 60px;
                --card-gap: 16px;
            }

            .page-header h1 {
                font-size: 2.1rem;
            }

            .focus-player-card {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .focus-player-card .focus-avatar {
                max-width: 160px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 26px;
            }
        }

        @media (max-width: 767px) {
            :root {
                --section-gap: 48px;
                --card-gap: 12px;
            }

            .nav-menu {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .page-header {
                padding: 110px 0 36px;
            }

            .page-header h1 {
                font-size: 1.8rem;
            }

            .page-header .header-desc {
                font-size: 0.92rem;
            }

            .player-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
                padding: 16px 18px;
            }

            .player-card .player-stats-grid {
                gap: 14px;
                width: 100%;
                justify-content: flex-start;
            }

            .player-card .mini-stat .value {
                font-size: 1rem;
            }

            .focus-player-card {
                padding: 20px;
            }

            .focus-player-card .focus-stats-row {
                gap: 14px;
            }

            .focus-player-card .focus-stat .value {
                font-size: 1.3rem;
            }

            .focus-player-card .bar-item {
                grid-template-columns: 70px 1fr 32px;
                gap: 8px;
                font-size: 0.75rem;
            }

            .subscribe-banner {
                padding: 24px 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .subscribe-form {
                width: 100%;
            }

            .subscribe-form input[type="email"] {
                min-width: 0;
                flex: 1;
            }

            .news-item-horizontal {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 14px 0;
            }

            .news-item-horizontal .news-date-card {
                width: 46px;
                height: 46px;
            }

            .news-item-horizontal .btn-outline-glow {
                align-self: flex-start;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .page-header h1 {
                font-size: 1.6rem;
            }

            .content-section .section-heading h2 {
                font-size: 1.4rem;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form input[type="email"] {
                width: 100%;
            }

            .subscribe-form .btn-glow {
                width: 100%;
                justify-content: center;
            }

            .comparison-item {
                flex-wrap: wrap;
                gap: 8px;
            }

            .comparison-item .cmp-detail {
                flex-basis: 100%;
                order: 3;
            }
        }

        /* ========== Animations ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-delay-1 {
            animation-delay: 0.1s;
        }

        .animate-delay-2 {
            animation-delay: 0.2s;
        }

        .animate-delay-3 {
            animation-delay: 0.3s;
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
