/* roulang page: index */
:root {
            --bg: #0A0F1E;
            --bg-soft: #0F1629;
            --card: #111827;
            --card-hover: #151F36;
            --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #06B6D4 100%);
            --gradient-hero: linear-gradient(160deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.78) 40%, rgba(6, 182, 212, 0.72) 100%);
            --text: #F1F5F9;
            --text-strong: #FFFFFF;
            --text-weak: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.16);
            --radius: 22px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 32px rgba(99, 102, 241, 0.35);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: #22D3EE;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 30, 0.86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition), background var(--transition);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(10, 15, 30, 0.95);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #FFFFFF;
            white-space: nowrap;
            transition: opacity var(--transition);
        }

        .nav-logo:hover {
            color: #FFFFFF;
            opacity: 0.85;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.3px;
            transition: all var(--transition);
            position: relative;
        }

        .nav-menu li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .lang-toggle {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all var(--transition);
        }

        .lang-toggle span {
            padding: 5px 10px;
            border-radius: 999px;
            color: var(--text-weak);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .lang-toggle span.active {
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.45);
        }

        .lang-toggle span:not(.active):hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-cta:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }

        .nav-cta:focus-visible,
        .btn:focus-visible,
        .card-link:focus-visible,
        input:focus-visible {
            outline: 3px solid #22D3EE;
            outline-offset: 2px;
        }

        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Mobile drawer */
        .mobile-menu {
            display: none;
            background: rgba(15, 22, 41, 0.97);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            animation: fadeSlideDown 0.28s ease;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 0 16px;
        }

        .mobile-menu ul li a {
            display: block;
            padding: 12px 16px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition);
        }

        .mobile-menu ul li a:hover,
        .mobile-menu ul li a.active {
            background: rgba(99, 102, 241, 0.18);
            color: #FFFFFF;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-cta {
                padding: 9px 16px;
                font-size: 0.82rem;
            }
        }

        @media (max-width: 640px) {
            .nav-logo {
                font-size: 1.05rem;
            }
            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
                border-radius: 8px;
            }
            .nav-inner {
                height: 62px;
                gap: 10px;
            }
            .lang-toggle span {
                padding: 4px 7px;
                font-size: 0.72rem;
            }
            .nav-cta {
                padding: 8px 12px;
                font-size: 0.75rem;
                gap: 4px;
            }
            .nav-cta .cta-text {
                display: none;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            padding: 90px 0 70px;
            background: var(--bg);
            overflow: hidden;
        }

        .hero-clip-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-hero);
            clip-path: polygon(0 0, 100% 0, 100% 78%, 52% 92%, 0 82%);
            z-index: 1;
            opacity: 0.92;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.28;
            clip-path: polygon(0 0, 100% 0, 100% 78%, 52% 92%, 0 82%);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 15, 30, 0.3) 0%, rgba(10, 15, 30, 0.65) 60%, var(--bg) 100%);
            z-index: 2;
        }

        .hero-inner {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 56px;
            align-items: center;
        }

        .hero-text {
            color: #FFFFFF;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            backdrop-filter: blur(8px);
            margin-bottom: 20px;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #34D399;
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.4);
            }
        }

        .hero-text h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.18;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
            color: #FFFFFF;
            text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
        }

        .hero-text h1 .gradient-text {
            background: linear-gradient(135deg, #22D3EE, #A78BFA, #FBBF24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.7;
            max-width: 520px;
            margin-bottom: 26px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-cta-row {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #FFFFFF;
            color: #0A0F1E;
            font-weight: 800;
            font-size: 0.95rem;
            padding: 14px 28px;
            border-radius: 999px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
            transition: all var(--transition);
            letter-spacing: 0.3px;
        }

        .btn-primary:hover {
            color: #0A0F1E;
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 13px 24px;
            border-radius: 999px;
            backdrop-filter: blur(8px);
            transition: all var(--transition);
        }

        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #FFFFFF;
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Hero score card */
        .hero-score-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
            transition: all var(--transition);
        }

        .hero-score-card:hover {
            box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
            transform: translateY(-4px);
        }

        .score-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 10px;
        }

        .score-live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(248, 113, 113, 0.25);
            color: #FCA5A5;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 999px;
            letter-spacing: 0.5px;
            border: 1px solid rgba(248, 113, 113, 0.4);
        }

        .score-live-badge .pulse-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #F87171;
            animation: pulse 1.4s ease-in-out infinite;
        }

        .score-match-title {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        .score-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 20px;
        }

        .score-team {
            flex: 1;
            text-align: center;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 16px 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition);
        }

        .score-team:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .score-team-name {
            font-weight: 700;
            font-size: 1rem;
            color: #FFFFFF;
            margin-bottom: 8px;
        }

        .score-team-value {
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1;
        }

        .score-team-value.win {
            color: #34D399;
        }

        .score-divider {
            font-size: 1.4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.5);
            padding: 0 4px;
        }

        .score-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .score-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.68);
            font-weight: 500;
        }

        .score-meta-item .icon {
            font-size: 0.95rem;
        }

        /* Floated badges on hero card */
        .score-float-badge {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            padding: 10px 14px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #FFFFFF;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            animation: floatBadge 3.2s ease-in-out infinite;
            z-index: 4;
        }

        .score-float-badge.badge-top {
            top: -16px;
            right: -8px;
            color: #FBBF24;
        }

        .score-float-badge.badge-bottom {
            bottom: -14px;
            left: -10px;
            color: #34D399;
            animation-delay: 1.2s;
        }

        @keyframes floatBadge {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 1280px) {
            .hero-text h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-text {
                text-align: left;
            }
            .hero-subtitle {
                max-width: 100%;
            }
            .hero-score-card {
                max-width: 480px;
            }
            .hero-section {
                padding: 60px 0 50px;
            }
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-section {
                padding: 50px 0 40px;
            }
            .hero-score-card {
                padding: 20px;
                border-radius: 20px;
            }
            .score-team-value {
                font-size: 1.7rem;
            }
            .btn-primary,
            .btn-outline-light {
                padding: 11px 20px;
                font-size: 0.85rem;
            }
            .score-float-badge {
                font-size: 0.68rem;
                padding: 7px 10px;
            }
        }

        /* Section base */
        .section {
            padding: 70px 0;
        }

        .section-alt {
            background: var(--bg-soft);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #22D3EE;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-tag::before {
            content: '';
            width: 18px;
            height: 2px;
            background: #22D3EE;
            border-radius: 2px;
        }

        .section-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.3px;
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 0.98rem;
            color: var(--text-weak);
            line-height: 1.7;
            max-width: 680px;
        }

        @media (max-width: 768px) {
            .section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .section-desc {
                font-size: 0.9rem;
            }
            .section-header {
                margin-bottom: 28px;
            }
        }

        /* Generic card */
        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        /* Grid layouts */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        @media (max-width: 1024px) {
            .grid-3,
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .grid-2,
            .grid-3,
            .grid-4 {
                grid-template-columns: 1fr;
            }
        }

        /* Data badge */
        .data-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            transition: all var(--transition);
        }

        .data-badge.cyan {
            background: rgba(34, 211, 238, 0.15);
            color: #22D3EE;
            border: 1px solid rgba(34, 211, 238, 0.3);
        }

        .data-badge.green {
            background: rgba(52, 211, 153, 0.15);
            color: #34D399;
            border: 1px solid rgba(52, 211, 153, 0.3);
        }

        .data-badge.gold {
            background: rgba(251, 191, 36, 0.15);
            color: #FBBF24;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        .data-badge.purple {
            background: rgba(167, 139, 250, 0.15);
            color: #A78BFA;
            border: 1px solid rgba(167, 139, 250, 0.3);
        }

        .data-badge.red {
            background: rgba(248, 113, 113, 0.15);
            color: #F87171;
            border: 1px solid rgba(248, 113, 113, 0.3);
        }

        /* Stat card */
        .stat-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            text-align: center;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .stat-card:hover {
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .stat-value {
            font-size: 2.3rem;
            font-weight: 900;
            color: #FFFFFF;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .stat-value .accent {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-weak);
            font-weight: 500;
            margin-top: 6px;
        }

        /* News item */
        .news-card {
            display: flex;
            gap: 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 18px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
        }

        .news-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        .news-cover {
            width: 140px;
            height: 100px;
            flex-shrink: 0;
            border-radius: 14px;
            overflow: hidden;
            background: linear-gradient(135deg, #1E293B, #312E81);
        }

        .news-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-date {
            font-size: 0.75rem;
            color: #22D3EE;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }

        .news-title {
            font-size: 1rem;
            font-weight: 700;
            color: #FFFFFF;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-excerpt {
            font-size: 0.85rem;
            color: var(--text-weak);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #22D3EE;
            transition: all var(--transition);
        }

        .news-read-more:hover {
            color: #A78BFA;
            gap: 8px;
        }

        @media (max-width: 640px) {
            .news-card {
                flex-direction: column;
            }
            .news-cover {
                width: 100%;
                height: 160px;
            }
        }

        /* Hot rank card */
        .hot-rank-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 14px 16px;
            transition: all var(--transition);
            cursor: pointer;
        }

        .hot-rank-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateX(4px);
        }

        .hot-rank-num {
            font-size: 1.6rem;
            font-weight: 900;
            color: transparent;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            min-width: 42px;
            text-align: center;
        }

        .hot-rank-info {
            flex: 1;
            min-width: 0;
        }

        .hot-rank-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hot-rank-meta {
            font-size: 0.75rem;
            color: var(--text-weak);
        }

        /* Steps */
        .step-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 20px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all var(--transition);
        }

        .step-item:hover {
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .step-num {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        }

        .step-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 6px;
        }

        .step-content p {
            font-size: 0.88rem;
            color: var(--text-weak);
            line-height: 1.6;
        }

        /* Testimonial */
        .testimonial-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card:hover {
            border-color: var(--border-strong);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .testimonial-quote {
            font-size: 0.92rem;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 16px;
            position: relative;
            padding-left: 18px;
            border-left: 3px solid #22D3EE;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: #FFFFFF;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-size: 0.88rem;
            font-weight: 700;
            color: #FFFFFF;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: var(--text-weak);
        }

        /* Topic tag */
        .topic-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            background: var(--card);
            border: 1px solid var(--border);
            transition: all var(--transition);
            cursor: pointer;
        }

        .topic-tag:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.4);
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .topic-tag.highlight {
            background: var(--gradient);
            color: #FFFFFF;
            border: none;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.45);
        }

        /* Media partner */
        .media-partner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 18px 22px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-weak);
            transition: all var(--transition);
            cursor: default;
            text-align: center;
        }

        .media-partner:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            color: #FFFFFF;
        }

        /* Subscribe / CTA */
        .cta-section {
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 24px 56px rgba(99, 102, 241, 0.3);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cta-text h3 {
            font-size: 1.7rem;
            font-weight: 900;
            color: #FFFFFF;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .cta-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 480px;
            line-height: 1.6;
        }

        .cta-form {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        .cta-input {
            padding: 13px 18px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            font-size: 0.9rem;
            min-width: 240px;
            transition: all var(--transition);
            backdrop-filter: blur(6px);
        }

        .cta-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-input:focus {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
            background: rgba(255, 255, 255, 0.2);
        }

        .cta-btn {
            padding: 13px 26px;
            border-radius: 999px;
            background: #FFFFFF;
            color: #0A0F1E;
            font-weight: 800;
            font-size: 0.9rem;
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 32px 22px;
                border-radius: 20px;
            }
            .cta-inner {
                flex-direction: column;
                text-align: center;
            }
            .cta-text h3 {
                font-size: 1.35rem;
            }
            .cta-form {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }
            .cta-input {
                min-width: 100%;
                text-align: center;
            }
        }

        /* Footer */
        .site-footer {
            background: #070B16;
            border-top: 1px solid var(--border);
            padding: 50px 0 30px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }

        .footer-brand-text {
            font-size: 0.88rem;
            color: var(--text-weak);
            line-height: 1.7;
            margin-top: 12px;
            max-width: 300px;
        }

        .footer-col h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul a {
            font-size: 0.85rem;
            color: var(--text-weak);
            transition: all var(--transition);
        }

        .footer-col ul a:hover {
            color: #22D3EE;
            transform: translateX(3px);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-weak);
            transition: all var(--transition);
        }

        .footer-bottom a:hover {
            color: #22D3EE;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .site-footer {
                padding: 36px 0 20px;
            }
        }

        /* Misc */
        .divider {
            width: 100%;
            height: 1px;
            background: var(--border);
            margin: 0;
        }

        .icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .icon-circle.cyan-bg {
            background: rgba(34, 211, 238, 0.12);
            border: 1px solid rgba(34, 211, 238, 0.25);
        }

        .icon-circle.purple-bg {
            background: rgba(167, 139, 250, 0.12);
            border: 1px solid rgba(167, 139, 250, 0.25);
        }

        .icon-circle.gold-bg {
            background: rgba(251, 191, 36, 0.12);
            border: 1px solid rgba(251, 191, 36, 0.25);
        }

        .icon-circle.green-bg {
            background: rgba(52, 211, 153, 0.12);
            border: 1px solid rgba(52, 211, 153, 0.25);
        }

        .text-gradient {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            font-weight: 700;
            color: #22D3EE;
            transition: all var(--transition);
        }

        .card-link:hover {
            gap: 10px;
            color: #A78BFA;
        }

        /* Two column layout for news + hot */
        .news-hot-layout {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 28px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .news-hot-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Brand intro */
        .brand-intro {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px;
            position: relative;
            overflow: hidden;
        }

        .brand-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
        }

        .brand-intro-text {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.8;
            max-width: 900px;
        }

        /* Table-like data */
        .data-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 10px;
            transition: all var(--transition);
        }

        .data-row:hover {
            border-color: var(--border-strong);
            background: var(--card-hover);
            transform: translateX(4px);
        }

        .data-row-label {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text);
        }

        .data-row-value {
            font-size: 0.9rem;
            font-weight: 800;
            color: #22D3EE;
        }

        @media (max-width: 640px) {
            .brand-intro {
                padding: 24px;
            }
            .brand-intro-text {
                font-size: 0.85rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg: #0A0F1E;
            --bg-soft: #0F1629;
            --card: #111827;
            --card-hover: #151F36;
            --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #06B6D4 100%);
            --gradient-hero: linear-gradient(160deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.78) 40%, rgba(6, 182, 212, 0.72) 100%);
            --text: #F1F5F9;
            --text-strong: #FFFFFF;
            --text-weak: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.16);
            --radius: 22px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 32px rgba(99, 102, 241, 0.35);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: #22D3EE;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 30, 0.86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition), background var(--transition);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(10, 15, 30, 0.95);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #FFFFFF;
            white-space: nowrap;
            transition: opacity var(--transition);
        }

        .nav-logo:hover {
            color: #FFFFFF;
            opacity: 0.85;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.3px;
            transition: all var(--transition);
            position: relative;
        }

        .nav-menu li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-cta:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            flex-shrink: 0;
        }

        .lang-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-weak);
            transition: all var(--transition);
            letter-spacing: 0.5px;
        }

        .lang-btn:hover {
            color: #FFFFFF;
        }

        .lang-btn.active {
            background: var(--gradient);
            color: #FFFFFF;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
        }

        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            padding: 16px 0;
            letter-spacing: 0.3px;
        }

        .breadcrumb a {
            color: var(--text-weak);
            transition: color var(--transition);
        }

        .breadcrumb a:hover {
            color: #22D3EE;
        }

        .breadcrumb .sep {
            color: var(--text-muted);
            user-select: none;
        }

        .breadcrumb .current {
            color: #22D3EE;
            font-weight: 600;
        }

        /* Page Hero */
        .page-hero {
            padding: 48px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -140px;
            left: -60px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 32px;
        }

        .page-hero-text {
            flex: 1 1 520px;
            min-width: 0;
        }

        .page-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(99, 102, 241, 0.18);
            border: 1px solid rgba(99, 102, 241, 0.35);
            color: #A5B4FC;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 999px;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .page-hero h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--text-strong);
            line-height: 1.25;
            letter-spacing: 0.5px;
            margin: 0 0 16px;
        }

        .page-hero h1 .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .page-hero-desc {
            font-size: 1rem;
            color: var(--text-weak);
            line-height: 1.8;
            max-width: 620px;
        }

        .page-hero-stats {
            flex: 0 0 260px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: rgba(17, 24, 39, 0.75);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            backdrop-filter: blur(8px);
        }

        .hero-stat-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }

        .hero-stat-row:last-child {
            border-bottom: none;
        }

        .hero-stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        .hero-stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #22D3EE;
            letter-spacing: 0.5px;
        }

        /* Section Common */
        .section {
            padding: 44px 0;
            position: relative;
        }

        .section-alt {
            background: var(--bg-soft);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 28px;
        }

        .section-header h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1.3;
        }

        .section-header .section-sub {
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
            max-width: 480px;
        }

        /* Ranking Strip */
        .ranking-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .rank-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 10px 18px;
            font-size: 0.88rem;
            color: var(--text-weak);
            transition: all var(--transition);
        }

        .rank-chip:hover {
            border-color: rgba(34, 211, 238, 0.4);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .rank-chip .rank-num {
            font-weight: 800;
            font-size: 1.1rem;
            color: #22D3EE;
            width: 28px;
            text-align: center;
        }

        .rank-chip .chip-sep {
            width: 1px;
            height: 20px;
            background: var(--border);
        }

        .rank-chip .chip-winrate {
            color: #34D399;
            font-weight: 600;
        }

        /* Team Cards Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .team-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .team-card:hover {
            border-color: rgba(34, 211, 238, 0.35);
            background: var(--card-hover);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .team-card-media {
            position: relative;
            height: 160px;
            overflow: hidden;
            background: var(--bg-soft);
        }

        .team-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition);
        }

        .team-card:hover .team-card-media img {
            transform: scale(1.06);
        }

        .team-card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 30, 0.7) 100%);
            pointer-events: none;
        }

        .team-card-rank {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(10, 15, 30, 0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #FFFFFF;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 999px;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .team-card-region {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(99, 102, 241, 0.6);
            backdrop-filter: blur(6px);
            color: #FFFFFF;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 999px;
            z-index: 2;
            letter-spacing: 0.5px;
        }

        .team-card-body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .team-card-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 4px;
            letter-spacing: 0.5px;
        }

        .team-card-tag {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }

        .team-card-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 14px;
        }

        .team-stat-mini {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 10px;
            padding: 8px 10px;
            text-align: center;
        }

        .team-stat-mini .tsm-value {
            font-size: 1rem;
            font-weight: 700;
            color: #22D3EE;
            display: block;
            line-height: 1.3;
        }

        .team-stat-mini .tsm-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        .team-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }

        .team-form-badge {
            font-size: 0.75rem;
            font-weight: 600;
            color: #34D399;
            letter-spacing: 0.5px;
        }

        /* Player Compare */
        .player-compare {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .player-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all var(--transition);
        }

        .player-card:hover {
            border-color: rgba(34, 211, 238, 0.3);
            background: rgba(255, 255, 255, 0.06);
        }

        .player-card-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 6px;
        }

        .player-card-role {
            display: inline-block;
            background: rgba(139, 92, 246, 0.25);
            color: #C4B5FD;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .player-data-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--text-weak);
            padding: 5px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .player-data-row:last-child {
            border-bottom: none;
        }

        .player-data-row .pd-value {
            font-weight: 700;
            color: #22D3EE;
        }

        /* Trend Section */
        .trend-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
        }

        .trend-visual {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            min-height: 280px;
        }

        .trend-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 280px;
        }

        .trend-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 15, 30, 0.5) 0%, rgba(10, 15, 30, 0.2) 60%);
            pointer-events: none;
        }

        .trend-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            margin-bottom: 16px;
        }

        .trend-tag {
            background: rgba(34, 211, 238, 0.15);
            color: #22D3EE;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.3px;
        }

        .trend-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .trend-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            border-left: 3px solid #22D3EE;
            font-size: 0.9rem;
            color: var(--text-weak);
            transition: all var(--transition);
        }

        .trend-list li:hover {
            background: rgba(255, 255, 255, 0.08);
            color: var(--text);
        }

        .trend-list li .trend-date {
            flex-shrink: 0;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-muted);
            min-width: 72px;
        }

        /* Match Results */
        .match-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .match-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 14px 18px;
            transition: all var(--transition);
        }

        .match-row:hover {
            border-color: rgba(34, 211, 238, 0.3);
            background: var(--card-hover);
            transform: translateX(4px);
        }

        .match-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            min-width: 70px;
            letter-spacing: 0.3px;
        }

        .match-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 200px;
            font-weight: 600;
            font-size: 0.92rem;
            color: var(--text-strong);
        }

        .match-score {
            font-weight: 800;
            font-size: 1rem;
            color: #22D3EE;
            letter-spacing: 0.5px;
            padding: 4px 12px;
            background: rgba(34, 211, 238, 0.12);
            border-radius: 8px;
        }

        .match-league {
            font-size: 0.75rem;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.3px;
        }

        /* Stats Overview */
        .stats-overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 14px;
        }

        .stat-big-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition);
        }

        .stat-big-card:hover {
            border-color: rgba(99, 102, 241, 0.35);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .stat-big-value {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .stat-big-label {
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        /* CTA Panel */
        .cta-panel {
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-panel-left {
            position: relative;
            z-index: 1;
        }

        .cta-panel h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            margin: 0 0 8px;
            letter-spacing: 0.5px;
        }

        .cta-panel p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            max-width: 520px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 12px 26px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .btn:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 28px rgba(99, 102, 241, 0.65);
            transform: translateY(-2px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            color: #FFFFFF;
            font-weight: 600;
            font-size: 0.88rem;
            padding: 11px 22px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(8px);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.22);
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #070B16;
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }

        .footer-brand-text {
            font-size: 0.86rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 280px;
            margin-top: 4px;
        }

        .footer-col h5 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 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 li a {
            font-size: 0.84rem;
            color: var(--text-muted);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #22D3EE;
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 0.78rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        .footer-bottom a {
            color: var(--text-weak);
        }

        .footer-bottom a:hover {
            color: #22D3EE;
        }

        /* Mobile Nav */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 2px;
            }

            .nav-menu li a {
                padding: 8px 12px;
                font-size: 0.85rem;
            }

            .nav-cta {
                font-size: 0.82rem;
                padding: 8px 16px;
            }
        }

        @media (max-width: 768px) {
            .nav-inner {
                height: 62px;
                gap: 12px;
            }

            .nav-logo {
                font-size: 1.05rem;
            }

            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.95rem;
                border-radius: 8px;
            }

            .nav-menu {
                position: fixed;
                top: 62px;
                left: 0;
                right: 0;
                background: rgba(10, 15, 30, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 16px 20px;
                gap: 6px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-lg);
                display: none;
                z-index: 99;
            }

            .nav-menu.open {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu li a {
                display: block;
                width: 100%;
                padding: 12px 16px;
                font-size: 0.95rem;
                text-align: left;
                border-radius: 10px;
            }

            .nav-hamburger {
                display: flex;
            }

            .nav-right {
                gap: 8px;
            }

            .nav-cta {
                font-size: 0.75rem;
                padding: 7px 12px;
                gap: 4px;
            }

            .lang-switch {
                padding: 3px;
                gap: 2px;
            }

            .lang-btn {
                padding: 3px 8px;
                font-size: 0.7rem;
            }

            .page-hero {
                padding: 32px 0 28px;
            }

            .page-hero h1 {
                font-size: 1.6rem;
            }

            .page-hero-stats {
                flex: 1 1 100%;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .hero-stat-row {
                flex: 1 1 40%;
            }

            .section {
                padding: 32px 0;
            }

            .section-header h2 {
                font-size: 1.35rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .player-compare {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .trend-panel {
                grid-template-columns: 1fr;
            }

            .trend-visual {
                min-height: 200px;
            }

            .trend-visual img {
                min-height: 200px;
            }

            .cta-panel {
                padding: 28px 22px;
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }

            .nav-inner {
                gap: 8px;
            }

            .nav-cta {
                display: none;
            }

            .page-hero h1 {
                font-size: 1.35rem;
            }

            .page-hero-desc {
                font-size: 0.88rem;
            }

            .hero-stat-row {
                flex: 1 1 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .match-row {
                flex-wrap: wrap;
                gap: 8px;
            }

            .match-teams {
                min-width: 100%;
            }

            .stats-overview-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .rank-chip {
                font-size: 0.78rem;
                padding: 8px 12px;
            }
        }

/* roulang page: category1 */
:root {
            --bg: #0A0F1E;
            --bg-soft: #0F1629;
            --card: #111827;
            --card-hover: #151F36;
            --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #06B6D4 100%);
            --gradient-hero: linear-gradient(160deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.78) 40%, rgba(6, 182, 212, 0.72) 100%);
            --text: #F1F5F9;
            --text-strong: #FFFFFF;
            --text-weak: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.16);
            --radius: 22px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 32px rgba(99, 102, 241, 0.35);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        a:hover {
            color: #22D3EE;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }

        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 30, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition), background var(--transition);
        }

        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(10, 15, 30, 0.96);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #FFFFFF;
            white-space: nowrap;
            transition: opacity var(--transition);
        }

        .nav-logo:hover {
            color: #FFFFFF;
            opacity: 0.85;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
            flex-shrink: 0;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.3px;
            transition: all var(--transition);
            position: relative;
        }

        .nav-menu li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
            font-weight: 600;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }

        .nav-lang-switch {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 0.82rem;
            color: var(--text-weak);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .nav-lang-switch:hover {
            border-color: var(--border-strong);
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.09);
        }

        .nav-lang-switch i {
            font-size: 0.75rem;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .nav-cta:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }

        .nav-cta:focus-visible,
        .btn:focus-visible,
        .card-link:focus-visible,
        input:focus-visible {
            outline: 3px solid #22D3EE;
            outline-offset: 2px;
        }

        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            transition: all var(--transition);
            flex-shrink: 0;
        }

        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 4px;
            padding: 12px 16px 20px;
            background: rgba(10, 15, 30, 0.97);
            border-top: 1px solid var(--border);
        }

        .mobile-menu a {
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition);
            display: block;
        }

        .mobile-menu a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }

        .mobile-menu a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
        }

        .mobile-menu.open {
            display: flex;
        }

        section {
            padding: 56px 0;
            position: relative;
        }

        .section-alt {
            background: var(--bg-soft);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #22D3EE;
            margin-bottom: 14px;
            background: rgba(34, 211, 238, 0.09);
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(34, 211, 238, 0.25);
        }

        .section-label i {
            font-size: 0.7rem;
        }

        h1 {
            font-size: 2.35rem;
            line-height: 1.25;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: -0.5px;
        }

        h2 {
            font-size: 1.65rem;
            line-height: 1.35;
            font-weight: 700;
            color: var(--text-strong);
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }

        h3 {
            font-size: 1.2rem;
            line-height: 1.4;
            font-weight: 600;
            color: var(--text-strong);
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-weak);
            max-width: 680px;
            line-height: 1.7;
            margin-top: 6px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.92rem;
            letter-spacing: 0.3px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            line-height: 1.5;
        }

        .btn-primary {
            background: var(--gradient);
            color: #FFFFFF;
            box-shadow: 0 4px 18px rgba(99, 102, 241, 0.45);
        }

        .btn-primary:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 28px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.07);
            color: var(--text);
            border: 1px solid var(--border-strong);
        }

        .btn-secondary:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--border-strong);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: #22D3EE;
            border: 1.5px solid #22D3EE;
        }

        .btn-outline:hover {
            background: rgba(34, 211, 238, 0.1);
            color: #22D3EE;
            box-shadow: 0 0 24px rgba(34, 211, 238, 0.3);
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            overflow: hidden;
        }

        .card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .card-padding {
            padding: 24px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.74rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 999px;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .badge-live {
            background: rgba(239, 68, 68, 0.15);
            color: #F87171;
            border: 1px solid rgba(239, 68, 68, 0.4);
        }

        .badge-upcoming {
            background: rgba(34, 211, 238, 0.12);
            color: #22D3EE;
            border: 1px solid rgba(34, 211, 238, 0.35);
        }

        .badge-finished {
            background: rgba(148, 163, 184, 0.12);
            color: var(--text-weak);
            border: 1px solid rgba(148, 163, 184, 0.3);
        }

        .badge-highlight {
            background: rgba(251, 191, 36, 0.15);
            color: #FBBF24;
            border: 1px solid rgba(251, 191, 36, 0.4);
        }

        .data-stat {
            text-align: center;
            padding: 20px 16px;
        }

        .data-stat .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-strong);
            line-height: 1.2;
        }

        .data-stat .stat-label {
            font-size: 0.82rem;
            color: var(--text-weak);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        .data-stat .stat-trend {
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 6px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .stat-up {
            color: #34D399;
        }

        .stat-down {
            color: #F87171;
        }

        .match-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all var(--transition);
            cursor: pointer;
        }

        .match-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .team-side {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }

        .team-side.right {
            justify-content: flex-end;
        }

        .team-avatar {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
        }

        .team-avatar.blue {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
        }

        .team-avatar.purple {
            background: linear-gradient(135deg, #8B5CF6, #6D28D9);
        }

        .team-avatar.red {
            background: linear-gradient(135deg, #EF4444, #B91C1C);
        }

        .team-avatar.cyan {
            background: linear-gradient(135deg, #06B6D4, #0E7490);
        }

        .team-avatar.amber {
            background: linear-gradient(135deg, #F59E0B, #B45309);
        }

        .team-avatar.green {
            background: linear-gradient(135deg, #10B981, #047857);
        }

        .team-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-strong);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .match-score {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: 1px;
            min-width: 70px;
            text-align: center;
        }

        .match-meta {
            text-align: center;
            min-width: 90px;
        }

        .match-meta .match-time {
            font-size: 0.78rem;
            color: var(--text-weak);
        }

        .news-card {
            display: flex;
            gap: 18px;
            padding: 16px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all var(--transition);
            cursor: pointer;
        }

        .news-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .news-thumb {
            width: 84px;
            height: 64px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            background: linear-gradient(135deg, #6366F1, #06B6D4);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.3px;
        }

        .news-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-strong);
            margin: 4px 0 6px;
            line-height: 1.4;
        }

        .news-summary {
            font-size: 0.85rem;
            color: var(--text-weak);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-readmore {
            font-size: 0.8rem;
            font-weight: 600;
            color: #22D3EE;
            margin-top: 6px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .news-readmore:hover {
            color: #06B6D4;
        }

        .hero-flashbar {
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            padding: 32px 36px;
            position: relative;
            overflow: hidden;
            margin-bottom: 32px;
            box-shadow: var(--shadow-lg);
        }

        .hero-flashbar::after {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .hero-flashbar::before {
            content: '';
            position: absolute;
            bottom: -40%;
            left: 10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(34, 211, 238, 0.15);
            pointer-events: none;
        }

        .flashbar-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 14px;
            position: relative;
            z-index: 2;
        }

        .flashbar-badge i {
            color: #FBBF24;
        }

        .countdown {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            border-radius: 14px;
            padding: 10px 18px;
            text-align: center;
            min-width: 62px;
        }

        .countdown-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .countdown-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .flashbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }

        .flashbar-left h1 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }

        .flashbar-left .flashbar-sub {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            max-width: 420px;
            position: relative;
            z-index: 2;
        }

        .flashbar-right {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 22px 26px;
            min-width: 280px;
            max-width: 400px;
            position: relative;
            z-index: 2;
        }

        .flashbar-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #6366F1;
            font-weight: 800;
            font-size: 0.88rem;
            padding: 12px 24px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: all var(--transition);
            position: relative;
            z-index: 2;
            white-space: nowrap;
        }

        .flashbar-cta:hover {
            color: #4F46E5;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
            transform: translateY(-2px);
        }

        .filter-bar {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .filter-chip {
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-weak);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }

        .filter-chip:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--border-strong);
        }

        .filter-chip.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.25);
            border-color: rgba(99, 102, 241, 0.5);
            font-weight: 600;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .data-grid .data-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 18px;
            text-align: center;
            transition: all var(--transition);
        }

        .data-grid .data-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .data-grid .data-card .data-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.2rem;
            color: #fff;
            background: var(--gradient);
        }

        .data-grid .data-card .data-value {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--text-strong);
            line-height: 1.2;
        }

        .data-grid .data-card .data-label {
            font-size: 0.8rem;
            color: var(--text-weak);
            margin-top: 4px;
        }

        .comparison-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: all var(--transition);
        }

        .comparison-card:hover {
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
        }

        .compare-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }

        .compare-row:last-child {
            border-bottom: none;
        }

        .compare-label {
            font-size: 0.82rem;
            color: var(--text-weak);
            white-space: nowrap;
        }

        .compare-value {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-strong);
        }

        .compare-bar {
            flex: 1;
            height: 6px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
            max-width: 180px;
        }

        .compare-bar-fill {
            height: 100%;
            border-radius: 999px;
            background: var(--gradient);
            transition: width 0.6s ease;
        }

        .site-footer {
            background: #080C18;
            border-top: 1px solid var(--border);
            padding: 48px 0 28px;
            margin-top: 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand-text {
            font-size: 0.88rem;
            color: var(--text-weak);
            line-height: 1.7;
            margin-top: 8px;
            max-width: 320px;
        }

        .footer-col h5 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-weak);
            transition: color var(--transition);
        }

        .footer-col ul li a:hover {
            color: #22D3EE;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-weak);
        }

        .footer-bottom a:hover {
            color: #22D3EE;
        }

        .subscribe-box {
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .subscribe-box::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
            margin-top: 16px;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 220px;
            padding: 13px 20px;
            border-radius: 999px;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 0.9rem;
            transition: all var(--transition);
        }

        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .subscribe-form input:focus {
            outline: none;
            border-color: #22D3EE;
            box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25);
            background: rgba(0, 0, 0, 0.45);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-weak);
        }

        .breadcrumb a:hover {
            color: #22D3EE;
        }

        .breadcrumb .separator {
            color: var(--text-muted);
        }

        .breadcrumb .current {
            color: #22D3EE;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .data-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .flashbar-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .flashbar-right {
                min-width: 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-right .nav-lang-switch {
                display: none;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            section {
                padding: 40px 0;
            }
            .container {
                padding: 0 16px;
            }
            .flashbar-content {
                gap: 18px;
            }
            .flashbar-left h1 {
                font-size: 1.55rem;
            }
            .hero-flashbar {
                padding: 24px 20px;
            }
            .countdown-value {
                font-size: 1.4rem;
            }
            .countdown-item {
                min-width: 50px;
                padding: 8px 12px;
            }
            .match-card {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
                padding: 16px;
            }
            .team-side.right {
                justify-content: flex-start;
            }
            .match-score {
                text-align: center;
                min-width: auto;
            }
            .match-meta {
                min-width: auto;
                text-align: center;
            }
            .news-card {
                flex-direction: column;
                gap: 12px;
            }
            .news-thumb {
                width: 100%;
                height: 140px;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .subscribe-box {
                padding: 24px 18px;
            }
            .subscribe-form input {
                min-width: 100%;
            }
            .comparison-card {
                padding: 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .nav-inner {
                height: 62px;
            }
            .nav-logo {
                font-size: 1.05rem;
            }
            .nav-logo-icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
            .nav-cta {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
            .hero-flashbar {
                padding: 18px 14px;
                border-radius: var(--radius);
            }
            .flashbar-left h1 {
                font-size: 1.35rem;
            }
            .flashbar-left .flashbar-sub {
                font-size: 0.85rem;
            }
            .flashbar-right {
                padding: 16px;
                border-radius: 14px;
            }
            .countdown-value {
                font-size: 1.2rem;
            }
            .countdown-item {
                min-width: 42px;
                padding: 6px 10px;
                border-radius: 10px;
            }
            .countdown-label {
                font-size: 0.6rem;
            }
            .match-score {
                font-size: 1.2rem;
            }
            .data-grid .data-card .data-value {
                font-size: 1.4rem;
            }
            .filter-bar {
                gap: 6px;
            }
            .filter-chip {
                padding: 5px 12px;
                font-size: 0.75rem;
            }
            section {
                padding: 32px 0;
            }
        }

/* roulang page: category2 */
:root {
            --bg: #0A0F1E;
            --bg-soft: #0F1629;
            --card: #111827;
            --card-hover: #151F36;
            --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #06B6D4 100%);
            --gradient-hero: linear-gradient(160deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.78) 40%, rgba(6, 182, 212, 0.72) 100%);
            --text: #F1F5F9;
            --text-strong: #FFFFFF;
            --text-weak: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.16);
            --radius: 22px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 32px rgba(99, 102, 241, 0.35);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
            margin: 0;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #22D3EE;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }
        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header / Nav */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 30, 0.86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition), background var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(10, 15, 30, 0.95);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #FFFFFF;
            white-space: nowrap;
            transition: opacity var(--transition);
        }
        .nav-logo:hover {
            color: #FFFFFF;
            opacity: 0.85;
        }
        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
            flex-shrink: 0;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.3px;
            transition: all var(--transition);
            position: relative;
        }
        .nav-menu li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
            font-weight: 600;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-cta:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }
        .nav-cta:focus-visible,
        .btn:focus-visible,
        .card-link:focus-visible,
        input:focus-visible,
        button:focus-visible {
            outline: 3px solid #22D3EE;
            outline-offset: 2px;
        }
        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .lang-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border-strong);
            border-radius: 999px;
            padding: 6px 14px;
            font-size: 0.82rem;
            color: var(--text-weak);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.04);
        }
        .lang-pill:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-weak);
        }
        .breadcrumb a:hover {
            color: #22D3EE;
        }
        .breadcrumb .sep {
            color: var(--text-muted);
            opacity: 0.6;
        }
        .breadcrumb .current {
            color: #22D3EE;
            font-weight: 500;
        }

        /* Sections */
        .page-section {
            padding: 48px 0;
        }
        .page-section-alt {
            background: var(--bg-soft);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .section-header h2 {
            font-size: 1.55rem;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: 0.5px;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-header .h2-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--gradient);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #fff;
            flex-shrink: 0;
        }
        .section-sub {
            font-size: 0.95rem;
            color: var(--text-weak);
            margin: -16px 0 24px;
            max-width: 720px;
        }

        /* Cards */
        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }
        .card-glow {
            position: relative;
            overflow: hidden;
        }
        .card-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient);
            border-radius: var(--radius) var(--radius) 0 0;
        }

        /* Badges */
        .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;
        }
        .badge-live {
            background: rgba(239, 68, 68, 0.18);
            color: #F87171;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        .badge-upcoming {
            background: rgba(6, 182, 212, 0.14);
            color: #22D3EE;
            border: 1px solid rgba(6, 182, 212, 0.25);
        }
        .badge-done {
            background: rgba(148, 163, 184, 0.12);
            color: var(--text-weak);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }
        .badge-score {
            background: rgba(99, 102, 241, 0.2);
            color: #A5B4FC;
            border: 1px solid rgba(99, 102, 241, 0.35);
        }
        .badge-region {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-weak);
            border: 1px solid var(--border);
        }
        .badge-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: currentColor;
            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); }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 22px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
        }
        .btn-primary:hover {
            color: #fff;
            box-shadow: 0 8px 28px rgba(99, 102, 241, 0.55);
            transform: translateY(-2px);
        }
        .btn-ghost {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            border: 1px solid var(--border-strong);
        }
        .btn-ghost:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
        }

        /* Schedule Hero */
        .schedule-hero {
            background: linear-gradient(155deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.1) 35%, rgba(6, 182, 212, 0.08) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            margin-top: 20px;
        }
        .schedule-hero h1 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--text-strong);
            letter-spacing: 0.5px;
            margin: 0 0 14px;
            line-height: 1.3;
        }
        .schedule-hero .hero-desc {
            font-size: 1rem;
            color: var(--text-weak);
            max-width: 780px;
            margin: 0 0 22px;
        }
        .hero-stats-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .hero-stat {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 12px 18px;
        }
        .hero-stat .stat-num {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stat .stat-label {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 20px;
        }
        .filter-pill {
            padding: 7px 16px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-weak);
            cursor: pointer;
            transition: all var(--transition);
            border: 1px solid transparent;
            background: transparent;
        }
        .filter-pill:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .filter-pill.active {
            color: #fff;
            background: rgba(99, 102, 241, 0.25);
            border-color: rgba(99, 102, 241, 0.4);
            font-weight: 600;
        }
        .filter-date-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
        }
        .date-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-weak);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }
        .date-nav-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--border-strong);
        }
        .date-nav-current {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text);
            padding: 0 8px;
            white-space: nowrap;
        }

        /* Match list card */
        .match-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 18px 22px;
            transition: all var(--transition);
            flex-wrap: wrap;
        }
        .match-card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
        .match-time {
            min-width: 110px;
            text-align: center;
        }
        .match-time .date {
            font-size: 0.78rem;
            color: var(--text-muted);
            display: block;
        }
        .match-time .time {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-strong);
            display: block;
        }
        .match-teams {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 200px;
        }
        .match-team {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
        }
        .match-team .team-logo {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 900;
            color: #fff;
            flex-shrink: 0;
        }
        .match-versus {
            font-weight: 800;
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        .match-score {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text-strong);
        }
        .match-score .score-dash {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
        }
        .match-status {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        /* Calendar grid */
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 6px;
        }
        .calendar-day {
            min-height: 92px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 8px;
            transition: all var(--transition);
        }
        .calendar-day:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
        }
        .calendar-day .day-num {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .calendar-day.has-match {
            border-color: rgba(99, 102, 241, 0.4);
            background: rgba(99, 102, 241, 0.08);
        }
        .calendar-day.has-match .day-num {
            color: #A5B4FC;
        }
        .calendar-day .day-match-tag {
            font-size: 0.65rem;
            padding: 3px 6px;
            border-radius: 6px;
            background: rgba(99, 102, 241, 0.2);
            color: #A5B4FC;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .calendar-weekday {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            padding: 6px 0;
        }

        /* Result row */
        .result-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 16px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            transition: all var(--transition);
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .result-row:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--border-strong);
        }

        /* Team query */
        .team-query-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .team-query-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-strong);
            color: var(--text);
            font-size: 0.92rem;
            transition: all var(--transition);
        }
        .team-query-form input::placeholder {
            color: var(--text-muted);
        }
        .team-query-form input:focus {
            border-color: #22D3EE;
            outline: none;
            box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
        }

        /* Subscribe CTA */
        .subscribe-banner {
            position: relative;
            background: var(--gradient-hero);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            overflow: hidden;
        }
        .subscribe-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/6aba50749f47923e.png') center/cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }
        .subscribe-banner h2 {
            font-size: 1.7rem;
            font-weight: 900;
            color: #fff;
            margin: 0 0 12px;
            position: relative;
            z-index: 1;
        }
        .subscribe-banner p {
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 22px;
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        .subscribe-banner .btn {
            position: relative;
            z-index: 1;
        }
        .btn-light {
            background: #fff;
            color: #1E293B;
            box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
        }
        .btn-light:hover {
            color: #1E293B;
            box-shadow: 0 8px 28px rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Topic cards */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .topic-card {
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--card);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }
        .topic-card:hover {
            background: var(--card-hover);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            border-color: var(--border-strong);
        }
        .topic-card .topic-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .topic-card .topic-img .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(10, 15, 30, 0.85) 100%);
        }
        .topic-card .topic-body {
            padding: 18px 20px 20px;
        }
        .topic-card .topic-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 8px;
        }
        .topic-card .topic-body p {
            font-size: 0.88rem;
            color: var(--text-weak);
            margin: 0;
        }

        /* Footer */
        .site-footer {
            background: #070C18;
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand-text {
            font-size: 0.88rem;
            color: var(--text-weak);
            margin: 8px 0 0;
            max-width: 320px;
        }
        .footer-col h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-strong);
            margin: 0 0 14px;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #22D3EE;
        }
        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-weak);
        }
        .footer-bottom a:hover {
            color: #22D3EE;
        }

        /* Mobile nav */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(10, 15, 30, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-strong);
            padding: 16px 20px 24px;
            z-index: 99;
            flex-direction: column;
            gap: 6px;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            display: block;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition);
        }
        .mobile-menu a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }
        .mobile-menu a.active {
            color: #fff;
            background: rgba(99, 102, 241, 0.25);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
            .nav-hamburger {
                display: flex;
            }
            .nav-right .lang-pill {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }
            .calendar-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            .schedule-hero {
                padding: 24px 18px;
            }
            .schedule-hero h1 {
                font-size: 1.45rem;
            }
            .page-section {
                padding: 32px 0;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .filter-bar {
                padding: 12px 14px;
                gap: 6px;
            }
            .match-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }
            .match-status {
                align-items: flex-start;
            }
            .match-time {
                text-align: left;
                min-width: auto;
            }
            .match-time .date,
            .match-time .time {
                display: inline;
                margin-right: 8px;
            }
            .calendar-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4px;
            }
            .calendar-day {
                min-height: 72px;
            }
            .subscribe-banner {
                padding: 28px 20px;
            }
            .subscribe-banner h2 {
                font-size: 1.3rem;
            }
            .topic-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-stats-row {
                gap: 10px;
            }
            .hero-stat {
                padding: 10px 14px;
            }
            .team-query-form {
                flex-direction: column;
                align-items: stretch;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding: 0 10px;
            }
            .nav-inner {
                height: 60px;
                gap: 10px;
            }
            .nav-logo {
                font-size: 1.05rem;
            }
            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .nav-cta {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .schedule-hero h1 {
                font-size: 1.2rem;
            }
            .schedule-hero .hero-desc {
                font-size: 0.88rem;
            }
            .section-header h2 {
                font-size: 1.25rem;
            }
            .match-team {
                font-size: 0.85rem;
                gap: 6px;
            }
            .match-team .team-logo {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
            }
            .calendar-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .filter-date-nav {
                margin-left: 0;
                width: 100%;
                justify-content: space-between;
            }
        }

/* roulang page: category4 */
:root {
            --bg: #0A0F1E;
            --bg-soft: #0F1629;
            --card: #111827;
            --card-hover: #151F36;
            --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 45%, #06B6D4 100%);
            --gradient-hero: linear-gradient(160deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.78) 40%, rgba(6, 182, 212, 0.72) 100%);
            --text: #F1F5F9;
            --text-strong: #FFFFFF;
            --text-weak: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 255, 255, 0.16);
            --radius: 22px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 32px rgba(99, 102, 241, 0.35);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, 'Segoe UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: #22D3EE;
        }
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
            color: inherit;
        }
        input {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
        }
        @media (max-width: 380px) {
            .container {
                padding: 0 12px;
            }
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 15, 30, 0.86);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition), background var(--transition);
        }
        .site-header.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
            background: rgba(10, 15, 30, 0.95);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            color: #FFFFFF;
            white-space: nowrap;
            transition: opacity var(--transition);
            flex-shrink: 0;
        }
        .nav-logo:hover {
            color: #FFFFFF;
            opacity: 0.85;
        }
        .nav-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.5);
            flex-shrink: 0;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-weak);
            letter-spacing: 0.3px;
            transition: all var(--transition);
            position: relative;
            white-space: nowrap;
        }
        .nav-menu li a:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-menu li a.active {
            color: #FFFFFF;
            background: rgba(99, 102, 241, 0.22);
            font-weight: 600;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-lang {
            display: flex;
            align-items: center;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            background: rgba(255, 255, 255, 0.04);
        }
        .nav-lang span {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-weak);
            cursor: pointer;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-lang span.active {
            background: var(--gradient);
            color: #FFFFFF;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
        }
        .nav-lang span:hover:not(.active) {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient);
            color: #FFFFFF;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 999px;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-cta:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }
        .nav-cta:focus-visible,
        .btn:focus-visible,
        .card-link:focus-visible,
        input:focus-visible {
            outline: 3px solid #22D3EE;
            outline-offset: 2px;
        }
        .nav-hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.04);
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #fff;
            transition: all var(--transition);
            flex-shrink: 0;
        }
        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--border-strong);
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 12px 26px;
            transition: all var(--transition);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--gradient);
            color: #FFFFFF;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
        }
        .btn-primary:hover {
            color: #FFFFFF;
            box-shadow: 0 8px 28px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: #FFFFFF;
            border: 1px solid var(--border-strong);
        }
        .btn-secondary:hover {
            color: #FFFFFF;
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }
        .section {
            padding: 60px 0;
        }
        .section-alt {
            background: var(--bg-soft);
        }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #22D3EE;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: 0.5px;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .section-sub {
            font-size: 1.05rem;
            color: var(--text-weak);
            max-width: 720px;
            line-height: 1.7;
        }
        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            overflow: hidden;
        }
        .card:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .badge-blue {
            background: rgba(99, 102, 241, 0.2);
            color: #818CF8;
            border: 1px solid rgba(99, 102, 241, 0.3);
        }
        .badge-cyan {
            background: rgba(6, 182, 212, 0.15);
            color: #22D3EE;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }
        .badge-purple {
            background: rgba(139, 92, 246, 0.2);
            color: #A78BFA;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        .badge-green {
            background: rgba(34, 197, 94, 0.15);
            color: #4ADE80;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }
        .badge-amber {
            background: rgba(245, 158, 11, 0.15);
            color: #FBBF24;
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .badge-rose {
            background: rgba(244, 63, 94, 0.15);
            color: #FB7185;
            border: 1px solid rgba(244, 63, 94, 0.3);
        }
        .footer {
            background: #080C17;
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-brand-text {
            color: var(--text-weak);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 10px;
            max-width: 320px;
        }
        .footer-col h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-weak);
            transition: color var(--transition);
        }
        .footer-col ul li a:hover {
            color: #22D3EE;
        }
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-weak);
            transition: color var(--transition);
        }
        .footer-bottom a:hover {
            color: #22D3EE;
        }
        .hero-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 24px;
            transition: all var(--transition);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .hero-item:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .hero-item .news-cover {
            flex-shrink: 0;
            width: 148px;
            height: 96px;
            border-radius: 14px;
            object-fit: cover;
            box-shadow: var(--shadow-sm);
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2px;
            flex-shrink: 0;
        }
        .stat-box {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 22px;
            text-align: center;
            transition: all var(--transition);
        }
        .stat-box:hover {
            background: var(--card-hover);
            border-color: var(--border-strong);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .stat-value {
            font-size: 2.1rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .stat-value .small-unit {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-weak);
            margin-left: 2px;
        }
        .stat-label {
            font-size: 0.82rem;
            color: var(--text-weak);
            margin-top: 6px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 1024px) {
            .nav-menu li a {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .section-title {
                font-size: 1.75rem;
            }
        }
        @media (max-width: 768px) {
            .nav-hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: rgba(10, 15, 30, 0.98);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px;
                gap: 4px;
                z-index: 99;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 16px;
                font-size: 0.95rem;
                text-align: center;
                border-radius: 12px;
            }
            .nav-right {
                gap: 8px;
            }
            .nav-lang span {
                padding: 3px 8px;
                font-size: 0.72rem;
            }
            .nav-cta {
                padding: 8px 14px;
                font-size: 0.78rem;
            }
            .hero-item {
                flex-direction: column;
                gap: 14px;
            }
            .hero-item .news-cover {
                width: 100%;
                height: 180px;
                border-radius: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .stat-box {
                padding: 16px;
            }
            .stat-value {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 520px) {
            .nav-inner {
                height: 64px;
                gap: 8px;
            }
            .nav-logo {
                font-size: 1rem;
                gap: 6px;
            }
            .nav-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
                border-radius: 8px;
            }
            .nav-cta {
                padding: 6px 10px;
                font-size: 0.68rem;
                gap: 4px;
            }
            .nav-cta .cta-icon {
                display: none;
            }
            .nav-lang span {
                padding: 2px 6px;
                font-size: 0.65rem;
            }
            .nav-hamburger {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
