/* roulang page: index */
:root {
            --green-deep: #0E7A3B;
            --green-dark: #0A5E2D;
            --green-light: #E8F5EE;
            --blue-night: #1A2A44;
            --blue-dark: #111D30;
            --orange-accent: #FF6B2B;
            --orange-hover: #E55D1F;
            --white-cloud: #F8F9FA;
            --grey-green: #EDF3EF;
            --text-dark: #1a1a1a;
            --text-mid: #555;
            --text-light: #888;
            --text-white: #ffffff;
            --border-light: #E8ECEA;
            --border-card: #e0e5e2;
            --radius-xs: 6px;
            --radius-sm: 8px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
            --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.04);
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 14px 44px rgba(0, 0, 0, 0.15);
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', 'Segoe UI', sans-serif;
            --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-smooth: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1280px;
            --header-height: 64px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-dark);
            background-color: var(--white-cloud);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-width: 320px;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast), text-decoration var(--transition-fast);
        }
        a:hover {
            color: var(--green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--orange-accent);
            outline-offset: 3px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all var(--transition-smooth);
        }
        button:focus-visible {
            outline: 2px solid var(--orange-accent);
            outline-offset: 2px;
        }
        input {
            font-family: inherit;
            transition: border var(--transition-fast), box-shadow var(--transition-fast);
        }
        input:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.18);
            border-color: var(--green-deep);
        }

        .container-custom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .container-custom {
                padding: 0 16px;
            }
        }

        /* ========== 导航栏 ========== */
        .navbar-main {
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            height: var(--header-height);
            box-shadow: var(--shadow-xs);
            transition: box-shadow var(--transition-smooth);
        }
        .navbar-main.scrolled {
            box-shadow: var(--shadow-md);
        }
        .navbar-main .navbar-brand-custom {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--green-deep) !important;
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .navbar-main .navbar-brand-custom .brand-icon {
            width: 36px;
            height: 36px;
            background: var(--green-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .navbar-main .nav-link-custom {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark) !important;
            padding: 8px 16px !important;
            position: relative;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-main .nav-link-custom:hover,
        .navbar-main .nav-link-custom.active {
            color: var(--green-deep) !important;
        }
        .navbar-main .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 3px 3px 0 0;
        }
        .navbar-main .nav-mega-trigger {
            position: relative;
        }
        .navbar-main .mega-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            width: 620px;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 20px 24px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 18px;
            z-index: 1060;
            border: 1px solid var(--border-light);
            backdrop-filter: blur(8px);
        }
        .nav-mega-trigger:hover .mega-panel,
        .mega-panel:hover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(2px);
        }
        .mega-panel .mega-col h6 {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-mid);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
            padding-bottom: 6px;
            border-bottom: 2px solid var(--green-deep);
        }
        .mega-panel .mega-col a {
            display: block;
            padding: 5px 0;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: color var(--transition-fast), padding-left var(--transition-fast);
        }
        .mega-panel .mega-col a:hover {
            color: var(--green-deep);
            padding-left: 6px;
        }
        .mega-panel .mega-mini-score {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 0;
            font-size: 0.85rem;
            color: var(--text-dark);
        }
        .mega-panel .mega-mini-score .mini-score-num {
            font-weight: 700;
            color: var(--orange-accent);
        }
        .navbar-main .navbar-toggler-custom {
            border: none;
            background: transparent;
            padding: 6px 10px;
            color: var(--text-dark);
            font-size: 1.4rem;
        }
        .navbar-main .search-icon-btn {
            background: none;
            border: none;
            color: var(--text-mid);
            font-size: 1.2rem;
            padding: 6px 10px;
            transition: color var(--transition-fast);
        }
        .navbar-main .search-icon-btn:hover {
            color: var(--green-deep);
        }
        .navbar-main .user-avatar-placeholder {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--grey-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green-deep);
            font-size: 1rem;
        }
        @media (max-width: 991px) {
            .navbar-main .mega-panel {
                position: static;
                transform: none;
                width: 100%;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                box-shadow: none;
                border: none;
                border-top: 1px solid var(--border-light);
                border-radius: 0;
                padding: 12px 0;
                grid-template-columns: 1fr;
                gap: 10px;
                display: none;
            }
            .navbar-main .nav-mega-trigger.active-mobile .mega-panel {
                display: grid;
            }
            .navbar-main .nav-link-custom.active::after {
                left: 8px;
                right: 8px;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            background: linear-gradient(135deg, var(--blue-night) 0%, #15304a 40%, var(--green-deep) 100%);
            color: var(--text-white);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }
        .hero-section .hero-inner {
            display: flex;
            align-items: center;
            gap: 40px;
            min-height: 440px;
        }
        .hero-section .hero-text {
            flex: 0 0 46%;
            z-index: 2;
        }
        .hero-section .hero-text h1 {
            font-size: 2.65rem;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 0.6em;
            letter-spacing: 0.01em;
        }
        .hero-section .hero-text .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.65;
            opacity: 0.9;
            margin-bottom: 1.4em;
            max-width: 460px;
        }
        .hero-section .hero-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 1.6em;
        }
        .hero-section .hero-badge-item {
            text-align: center;
            min-width: 70px;
        }
        .hero-section .hero-badge-item .badge-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--orange-accent);
            line-height: 1.1;
            font-variant-numeric: tabular-nums;
        }
        .hero-section .hero-badge-item .badge-label {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-top: 2px;
        }
        .hero-section .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-section .hero-image-area {
            flex: 1;
            position: relative;
            z-index: 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 340px;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            box-shadow: var(--shadow-xl);
        }
        .hero-section .hero-image-area::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 42, 68, 0.25) 0%, rgba(14, 122, 59, 0.35) 100%);
            pointer-events: none;
        }
        .hero-section .hero-image-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        @media (max-width: 991px) {
            .hero-section .hero-inner {
                flex-direction: column;
                gap: 30px;
                min-height: auto;
            }
            .hero-section .hero-text {
                flex: 1;
                text-align: center;
            }
            .hero-section .hero-text .hero-subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-section .hero-badges {
                justify-content: center;
            }
            .hero-section .hero-btns {
                justify-content: center;
            }
            .hero-section .hero-image-area {
                width: 100%;
                min-height: 240px;
                aspect-ratio: 16/9;
            }
            .hero-section .hero-text h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 520px) {
            .hero-section {
                padding: 40px 0 30px;
            }
            .hero-section .hero-text h1 {
                font-size: 1.65rem;
            }
            .hero-section .hero-text .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-section .hero-badge-item .badge-num {
                font-size: 1.4rem;
            }
            .hero-section .hero-image-area {
                min-height: 180px;
            }
        }

        /* ========== 按钮系统 ========== */
        .btn-primary-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--orange-accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            padding: 10px 24px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background: var(--orange-hover);
            color: #fff;
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(255, 107, 43, 0.35);
        }
        .btn-primary-custom:active {
            transform: scale(0.97);
        }
        .btn-outline-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--green-deep);
            border: 2px solid var(--green-deep);
            border-radius: var(--radius-sm);
            padding: 9px 22px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline-custom:hover {
            background: var(--green-light);
            border-color: var(--green-dark);
            color: var(--green-dark);
        }
        .btn-outline-light-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.65);
            border-radius: var(--radius-sm);
            padding: 9px 22px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline-light-custom:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }
        .btn-sm-custom {
            padding: 6px 14px;
            font-size: 0.85rem;
            border-radius: var(--radius-xs);
        }
        .btn-xs-custom {
            padding: 4px 10px;
            font-size: 0.78rem;
            border-radius: 4px;
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 50px 0;
        }
        .section-block.bg-alt {
            background: var(--grey-green);
        }
        .section-block .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.3em;
            position: relative;
            display: inline-block;
        }
        .section-block .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--orange-accent);
            margin-top: 6px;
            border-radius: 2px;
        }
        .section-block .section-subtitle {
            color: var(--text-mid);
            font-size: 0.95rem;
            margin-bottom: 1.8em;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 36px 0;
            }
            .section-block .section-title {
                font-size: 1.35rem;
            }
        }

        /* ========== 卡片系统 ========== */
        .card-custom {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            border: 1px solid transparent;
            overflow: hidden;
        }
        .card-custom:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border-card);
        }
        .card-custom .card-body-custom {
            padding: 20px;
        }
        .card-custom .card-img-top-custom {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        /* ========== 实时赛事快报 ========== */
        .live-matches-scroll {
            display: flex;
            gap: 14px;
            overflow-x: auto;
            padding: 8px 4px 16px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
        }
        .live-matches-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .live-matches-scroll::-webkit-scrollbar-track {
            background: transparent;
        }
        .live-matches-scroll::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 10px;
        }
        .match-card-mini {
            flex: 0 0 auto;
            width: 190px;
            background: #fff;
            border-radius: var(--radius-md);
            padding: 16px 14px;
            box-shadow: var(--shadow-xs);
            text-align: center;
            scroll-snap-align: start;
            transition: all var(--transition-smooth);
            position: relative;
            border: 1px solid var(--border-light);
            cursor: pointer;
        }
        .match-card-mini:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--green-deep);
        }
        .match-card-mini .match-league-tag {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--text-mid);
            background: var(--grey-green);
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .match-card-mini .match-teams {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 6px;
            color: var(--text-dark);
        }
        .match-card-mini .match-score {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--orange-accent);
            letter-spacing: 0.03em;
            font-variant-numeric: tabular-nums;
        }
        .match-card-mini .match-status {
            font-size: 0.78rem;
            color: var(--text-mid);
            margin-top: 4px;
        }
        .match-card-mini .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #e74c3c;
            border-radius: 50%;
            margin-right: 4px;
            animation: pulse-live 1.2s infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
            }
        }
        .match-card-mini .live-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: #fff;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            letter-spacing: 0.04em;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        @media (max-width: 520px) {
            .match-card-mini {
                width: 150px;
                padding: 12px 10px;
            }
            .match-card-mini .match-score {
                font-size: 1.35rem;
            }
            .match-card-mini .match-teams {
                font-size: 0.82rem;
            }
        }

        /* ========== 新闻卡片 ========== */
        .news-card-horiz {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            padding: 16px;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            cursor: pointer;
            margin-bottom: 12px;
        }
        .news-card-horiz:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--green-deep);
        }
        .news-card-horiz .news-thumb {
            flex: 0 0 100px;
            height: 70px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .news-card-horiz:hover .news-thumb {
            transform: scale(1.06);
        }
        .news-card-horiz .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-card-horiz .news-info h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.4;
            color: var(--text-dark);
        }
        .news-card-horiz .news-info .news-summary {
            font-size: 0.85rem;
            color: var(--text-mid);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .news-card-horiz .news-meta {
            font-size: 0.78rem;
            color: var(--text-light);
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .news-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 10px;
            letter-spacing: 0.03em;
        }
        .news-tag.hot {
            background: #fff0eb;
            color: var(--orange-accent);
        }
        .news-tag.new {
            background: #e8f5ee;
            color: var(--green-deep);
        }
        .news-tag.exclusive {
            background: #fef3e0;
            color: #c77d20;
        }

        /* ========== 积分榜卡片 ========== */
        .standings-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px 18px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
        }
        .standings-card:hover {
            box-shadow: var(--shadow-md);
        }
        .standings-card .league-header {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--green-deep);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .standings-row {
            display: flex;
            align-items: center;
            padding: 7px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 0.9rem;
            gap: 8px;
        }
        .standings-row:last-child {
            border-bottom: none;
        }
        .standings-row .rank {
            font-weight: 700;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }
        .standings-row .rank.top3 {
            color: var(--orange-accent);
        }
        .standings-row .team-name {
            flex: 1;
            font-weight: 500;
            min-width: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .standings-row .pts {
            font-weight: 700;
            color: var(--green-deep);
            flex-shrink: 0;
        }
        .trend-dots {
            display: flex;
            gap: 3px;
            flex-shrink: 0;
        }
        .trend-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .trend-dots .win {
            background: #27ae60;
        }
        .trend-dots .draw {
            background: #f39c12;
        }
        .trend-dots .loss {
            background: #e74c3c;
        }

        /* ========== 视频卡片 ========== */
        .video-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            cursor: pointer;
            border: 1px solid var(--border-light);
        }
        .video-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .video-card .video-thumb-wrap {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #000;
        }
        .video-card .video-thumb-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-smooth);
        }
        .video-card:hover .video-thumb-wrap img {
            transform: scale(1.04);
        }
        .video-card .play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: background var(--transition-smooth);
        }
        .video-card:hover .play-overlay {
            background: rgba(0, 0, 0, 0.2);
        }
        .video-card .play-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--green-deep);
            transition: all var(--transition-smooth);
        }
        .video-card:hover .play-circle {
            background: var(--orange-accent);
            color: #fff;
            transform: scale(1.1);
        }
        .video-card .video-info {
            padding: 14px;
        }
        .video-card .video-info h6 {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            line-height: 1.4;
            color: var(--text-dark);
        }
        .video-card .video-meta {
            font-size: 0.78rem;
            color: var(--text-light);
            display: flex;
            gap: 12px;
        }
        .video-duration-tag {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* ========== 转会卡片 ========== */
        .transfer-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            margin-bottom: 10px;
            transition: all var(--transition-smooth);
            cursor: pointer;
        }
        .transfer-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--green-deep);
        }
        .transfer-item .transfer-player {
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .transfer-item .transfer-arrow {
            color: var(--orange-accent);
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .transfer-item .transfer-fee {
            font-weight: 700;
            color: var(--green-deep);
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .transfer-item .transfer-date {
            font-size: 0.78rem;
            color: var(--text-light);
            white-space: nowrap;
        }
        .stars-5 {
            color: #f0c040;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        /* ========== FAQ手风琴 ========== */
        .faq-accordion .faq-item {
            border-bottom: 1px solid var(--border-light);
            overflow: hidden;
        }
        .faq-accordion .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 16px 0;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            cursor: pointer;
            transition: color var(--transition-fast);
        }
        .faq-accordion .faq-question:hover {
            color: var(--green-deep);
        }
        .faq-accordion .faq-question .faq-icon {
            font-size: 1.3rem;
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
            color: var(--text-mid);
        }
        .faq-accordion .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--orange-accent);
        }
        .faq-accordion .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .faq-accordion .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-accordion .faq-answer-inner {
            padding: 0 0 18px 0;
            font-size: 0.95rem;
            color: var(--text-mid);
            line-height: 1.75;
        }

        /* ========== 用户评价 ========== */
        .review-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-smooth);
            height: 100%;
        }
        .review-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .review-card .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-card .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--grey-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--green-deep);
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        .review-card .review-name {
            font-weight: 600;
            font-size: 0.9rem;
        }
        .review-card .review-stars {
            color: #f0c040;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: var(--text-mid);
            line-height: 1.6;
        }

        /* ========== 页脚 ========== */
        .footer-site {
            background: var(--blue-night);
            color: #d0d5dc;
            padding: 48px 0 0;
            font-size: 0.9rem;
        }
        .footer-site .footer-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 20px;
            margin-bottom: 36px;
        }
        .footer-site .footer-col h6 {
            font-weight: 700;
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-site .footer-col a {
            display: block;
            color: #b0b8c2;
            padding: 4px 0;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-site .footer-col a:hover {
            color: #fff;
        }
        .footer-site .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            text-align: center;
            font-size: 0.82rem;
            color: #8a94a0;
            line-height: 2;
        }
        .footer-site .footer-bottom a {
            color: #b0b8c2;
            padding: 0 6px;
            font-size: 0.8rem;
        }
        .footer-site .footer-bottom a:hover {
            color: #fff;
        }
        @media (max-width: 991px) {
            .footer-site .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 600px) {
            .footer-site .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
        }

        /* ========== 标签云 ========== */
        .tag-pill {
            display: inline-block;
            background: var(--grey-green);
            color: var(--green-deep);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
            border: 1px solid transparent;
        }
        .tag-pill:hover {
            background: var(--green-deep);
            color: #fff;
            border-color: var(--green-deep);
        }

        /* ========== 进度条 ========== */
        .credibility-bar {
            height: 6px;
            border-radius: 3px;
            background: var(--grey-green);
            overflow: hidden;
            margin-top: 4px;
        }
        .credibility-bar-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 0.6s ease;
        }
        .credibility-bar-fill.high {
            background: #27ae60;
        }
        .credibility-bar-fill.medium {
            background: #f0c040;
        }
        .credibility-bar-fill.low {
            background: #e67e22;
        }

        /* ========== 辅助 ========== */
        .text-orange {
            color: var(--orange-accent);
        }
        .text-green {
            color: var(--green-deep);
        }
        .text-muted-custom {
            color: var(--text-light);
        }
        .fw-700 {
            font-weight: 700;
        }
        .fw-800 {
            font-weight: 800;
        }
        .gap-20 {
            gap: 20px;
        }
        .gap-14 {
            gap: 14px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .scroll-x-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-light) transparent;
            padding-bottom: 8px;
        }
        .scroll-x-wrap::-webkit-scrollbar {
            height: 4px;
        }
        .scroll-x-wrap::-webkit-scrollbar-track {
            background: transparent;
        }
        .scroll-x-wrap::-webkit-scrollbar-thumb {
            background: var(--border-light);
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }
        }
        @media (min-width: 769px) {
            .show-mobile-only {
                display: none !important;
            }
        }

/* roulang page: category2 */
:root {
            --green-deep: #0E7A3B;
            --green-light: #E8F5EE;
            --night-blue: #1A2A44;
            --orange-accent: #FF6B2B;
            --orange-hover: #E55D1F;
            --cloud-white: #F8F9FA;
            --grey-green: #EDF3EF;
            --text-main: #1a1a2e;
            --text-soft: #5a5a72;
            --text-muted: #8888a0;
            --border-light: #E8ECEA;
            --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --header-height: 64px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-main);
            background-color: var(--cloud-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--orange-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== NAVBAR ========== */
        .navbar-main {
            background: #ffffff;
            border-bottom: 1px solid var(--border-light);
            height: var(--header-height);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 1050;
            padding: 0;
        }
        .navbar-brand-custom {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--night-blue) !important;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: opacity var(--transition-fast);
        }
        .navbar-brand-custom:hover {
            opacity: 0.85;
            color: var(--night-blue) !important;
        }
        .brand-icon {
            color: var(--orange-accent);
            font-size: 1.5rem;
            display: inline-flex;
            align-items: center;
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            font-size: 1.2rem;
            color: var(--night-blue);
            transition: all var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            background: var(--grey-green);
        }
        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.15);
            outline: none;
        }
        .nav-link-custom {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-main) !important;
            padding: 8px 16px !important;
            border-radius: 6px;
            position: relative;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-link-custom:hover {
            color: var(--orange-accent) !important;
            background: var(--grey-green);
        }
        .nav-link-custom.active {
            color: var(--orange-accent) !important;
            font-weight: 700;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 2px;
        }
        .nav-mega-trigger {
            position: relative;
        }
        .mega-panel {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
            padding: 24px 28px;
            display: flex;
            gap: 32px;
            width: 600px;
            max-width: 90vw;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.2s ease 0.1s;
            z-index: 1060;
            border: 1px solid var(--border-light);
        }
        .nav-mega-trigger:hover .mega-panel {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(2px);
        }
        .mega-col {
            flex: 1;
            min-width: 0;
        }
        .mega-col h6 {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 10px;
            padding-bottom: 6px;
            border-bottom: 1px solid var(--border-light);
        }
        .mega-col a {
            display: block;
            padding: 6px 0;
            font-size: 0.9rem;
            color: var(--text-main);
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .mega-col a:hover {
            color: var(--orange-accent);
        }
        .mega-mini-score {
            font-size: 0.85rem;
            padding: 5px 0;
            color: var(--text-main);
            border-bottom: 1px dotted var(--border-light);
            white-space: nowrap;
        }
        .mega-mini-score:last-child {
            border-bottom: none;
        }
        .mini-score-num {
            font-weight: 800;
            color: var(--orange-accent);
            font-size: 0.9rem;
        }

        @media (max-width: 991.98px) {
            .mega-panel {
                position: static;
                transform: none;
                width: 100%;
                max-width: 100%;
                flex-direction: column;
                gap: 16px;
                box-shadow: none;
                border: none;
                padding: 12px 20px;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                display: none;
                background: var(--grey-green);
                border-radius: 0;
            }
            .nav-mega-trigger.open-mobile .mega-panel {
                display: flex;
            }
            .navbar-collapse {
                background: #fff;
                padding: 12px 0;
                border-radius: 0 0 var(--radius-md) var(--radius-md);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            }
            .nav-link-custom.active::after {
                bottom: 0;
                left: 16px;
                right: 16px;
                height: 2px;
            }
        }

        /* ========== HERO ========== */
        .hero-category {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, rgba(26, 42, 68, 0.88) 0%, rgba(14, 122, 59, 0.78) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 60%, rgba(255, 107, 43, 0.25) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-cat-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 0 20px;
        }
        .hero-cat-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero-cat-content .hero-sub {
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.6;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
        }
        .hero-cat-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .hero-cat-tags .cat-tag-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            color: #fff;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .hero-cat-tags .cat-tag-link:hover {
            background: var(--orange-accent);
            border-color: var(--orange-accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 107, 43, 0.35);
        }

        @media (max-width: 768px) {
            .hero-category {
                height: 260px;
            }
            .hero-cat-content h1 {
                font-size: 2rem;
            }
            .hero-cat-content .hero-sub {
                font-size: 0.95rem;
            }
            .hero-cat-tags .cat-tag-link {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
        }

        /* ========== SECTIONS ========== */
        .section-pad {
            padding: 56px 0;
        }
        .section-pad-sm {
            padding: 40px 0;
        }
        .section-title {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--night-blue);
            margin-bottom: 6px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 2px;
        }
        .section-header {
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-header .view-all {
            font-size: 0.9rem;
            color: var(--orange-accent);
            font-weight: 600;
            transition: all var(--transition-fast);
        }
        .section-header .view-all:hover {
            color: var(--orange-hover);
            text-decoration: underline;
        }
        .bg-grey-green {
            background: var(--grey-green);
        }
        .bg-night {
            background: var(--night-blue);
            color: #fff;
        }

        /* ========== TABS ========== */
        .tab-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
            border-bottom: 2px solid var(--border-light);
            padding-bottom: 6px;
        }
        .tab-btn-custom {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            background: transparent;
            color: var(--text-soft);
            border: 1px solid transparent;
            transition: all var(--transition-fast);
            white-space: nowrap;
            cursor: pointer;
        }
        .tab-btn-custom:hover {
            color: var(--orange-accent);
            background: var(--grey-green);
        }
        .tab-btn-custom.active-tab {
            background: var(--orange-accent);
            color: #fff;
            font-weight: 700;
            border-color: var(--orange-accent);
            box-shadow: 0 4px 12px rgba(255, 107, 43, 0.25);
        }

        /* ========== FEATURED VIDEO ========== */
        .featured-video-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #000;
            aspect-ratio: 16/9;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: var(--card-shadow);
        }
        .featured-video-card:hover {
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-2px);
        }
        .featured-video-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-video-card:hover img {
            transform: scale(1.04);
        }
        .featured-video-card .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
        }
        .featured-video-card .play-btn-big {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            background: rgba(255, 107, 43, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #fff;
            transition: all var(--transition-smooth);
            z-index: 5;
            box-shadow: 0 8px 28px rgba(255, 107, 43, 0.4);
        }
        .featured-video-card:hover .play-btn-big {
            background: var(--orange-accent);
            transform: translate(-50%, -50%) scale(1.08);
            box-shadow: 0 12px 32px rgba(255, 107, 43, 0.55);
        }
        .featured-video-card .video-meta {
            position: relative;
            z-index: 3;
            color: #fff;
        }
        .featured-video-card .video-meta h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 6px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }
        .featured-video-card .video-meta .vm-stats {
            font-size: 0.9rem;
            opacity: 0.9;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .badge-hot {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 6;
            background: var(--orange-accent);
            color: #fff;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(255, 107, 43, 0.35);
        }

        @media (max-width: 768px) {
            .featured-video-card .video-meta h3 {
                font-size: 1.15rem;
            }
            .featured-video-card .play-btn-big {
                width: 52px;
                height: 52px;
                font-size: 1.3rem;
            }
            .featured-video-card .video-overlay {
                padding: 16px;
            }
        }

        /* ========== VIDEO GRID ========== */
        .video-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .video-card:hover {
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-2px);
        }
        .video-card .vc-thumb {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: #1a1a2e;
        }
        .video-card .vc-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .video-card:hover .vc-thumb img {
            transform: scale(1.06);
        }
        .video-card .vc-thumb .play-icon-sm {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 43, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
            z-index: 4;
        }
        .video-card:hover .vc-thumb .play-icon-sm {
            background: var(--orange-accent);
            box-shadow: 0 6px 18px rgba(255, 107, 43, 0.4);
        }
        .video-card .vc-thumb .duration-tag {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 4;
        }
        .video-card .vc-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .video-card .vc-body h4 {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.45;
            color: var(--text-main);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }
        .video-card .vc-body .vc-info {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: auto;
        }

        /* ========== CLASSIC CARDS ========== */
        .classic-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .classic-card:hover {
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-3px);
        }
        .classic-card .cc-img {
            aspect-ratio: 16/9;
            overflow: hidden;
            position: relative;
        }
        .classic-card .cc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }
        .classic-card:hover .cc-img img {
            transform: scale(1.05);
        }
        .classic-card .cc-body {
            padding: 18px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .classic-card .cc-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--night-blue);
            margin: 0;
        }
        .classic-card .cc-body p {
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.55;
            margin: 0;
        }
        .classic-card .cc-body .cc-meta {
            display: flex;
            gap: 12px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: auto;
        }
        .badge-classic {
            display: inline-block;
            background: #FFF3E0;
            color: var(--orange-accent);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.78rem;
            font-weight: 700;
            width: fit-content;
        }

        /* ========== TEACHING SECTION ========== */
        .teaching-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--card-shadow);
            display: flex;
            gap: 16px;
            align-items: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
        }
        .teaching-card:hover {
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-2px);
        }
        .teaching-card .tc-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--grey-green);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--green-deep);
            font-weight: 700;
            overflow: hidden;
        }
        .teaching-card .tc-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        .teaching-card .tc-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--night-blue);
            margin: 0 0 2px 0;
        }
        .teaching-card .tc-info p {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin: 0;
        }
        .teaching-card .tc-info .tc-lessons {
            font-size: 0.78rem;
            color: var(--orange-accent);
            font-weight: 600;
            margin-top: 2px;
        }

        /* ========== CTA ========== */
        .cta-strip {
            background: linear-gradient(135deg, var(--night-blue) 0%, #152238 100%);
            color: #fff;
            text-align: center;
            padding: 48px 20px;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
        }
        .cta-strip::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 160px;
            height: 160px;
            background: rgba(255, 107, 43, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-strip h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .cta-strip p {
            font-size: 1rem;
            opacity: 0.85;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .btn-cta-orange {
            display: inline-block;
            background: var(--orange-accent);
            color: #fff;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 18px rgba(255, 107, 43, 0.3);
        }
        .btn-cta-orange:hover {
            background: var(--orange-hover);
            color: #fff;
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(255, 107, 43, 0.45);
        }

        /* ========== FOOTER ========== */
        .footer-site {
            background: var(--night-blue);
            color: #ccd0d8;
            padding: 48px 0 24px;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 20px;
            margin-bottom: 32px;
        }
        .footer-col h6 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        .footer-col a {
            display: block;
            color: #aab0b8;
            padding: 4px 0;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--orange-accent);
            text-decoration: underline;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 20px;
            text-align: center;
            font-size: 0.82rem;
            color: #8890a0;
        }
        .footer-bottom a {
            color: #aab0b8;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--orange-accent);
        }

        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .section-pad {
                padding: 36px 0;
            }
            .section-pad-sm {
                padding: 28px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
            .tab-btn-custom {
                padding: 6px 14px;
                font-size: 0.8rem;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .hero-category {
                height: 220px;
            }
            .hero-cat-content h1 {
                font-size: 1.6rem;
            }
            .hero-cat-tags {
                gap: 6px;
            }
            .hero-cat-tags .cat-tag-link {
                padding: 5px 10px;
                font-size: 0.75rem;
            }
            .featured-video-card .play-btn-big {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }
        }

/* roulang page: category1 */
:root {
            --green-deep: #0E7A3B;
            --green-dark: #0A5E2D;
            --green-light: #E8F5EE;
            --green-bg: #EDF3EF;
            --blue-night: #1A2A44;
            --blue-night-dark: #111D30;
            --orange-accent: #FF6B2B;
            --orange-hover: #E55D1F;
            --white-cloud: #F8F9FA;
            --white-pure: #FFFFFF;
            --text-primary: #1A1A1A;
            --text-secondary: #5A5A5A;
            --text-muted: #8A8A8A;
            --text-light: #B0B0B0;
            --border-light: #E8ECEA;
            --border-card: #DDE5E0;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --font-title: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --header-height: 64px;
            --container-max: 1280px;
            --spacing-section: 48px;
            --spacing-card: 20px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--white-cloud);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--green-deep);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: var(--font-body);
            cursor: pointer;
        }
        input,
        select {
            font-family: var(--font-body);
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding: 0 14px;
            }
        }

        /* ========== NAVBAR ========== */
        .navbar-main {
            background: var(--white-pure);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 1050;
            height: var(--header-height);
            padding: 0;
            transition: box-shadow var(--transition-smooth);
        }
        .navbar-main.scrolled {
            box-shadow: var(--shadow-md);
        }
        .navbar-brand-custom {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--green-deep) !important;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            letter-spacing: -0.3px;
        }
        .navbar-brand-custom:hover {
            color: var(--green-dark) !important;
        }
        .brand-icon {
            font-size: 1.5rem;
            color: var(--orange-accent);
            animation: ballPulse 2s infinite ease-in-out;
        }
        @keyframes ballPulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.18);
            }
        }
        .nav-link-custom {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary) !important;
            padding: 8px 16px !important;
            border-radius: var(--radius-sm);
            position: relative;
            transition: all var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .nav-link-custom:hover {
            color: var(--green-deep) !important;
            background: var(--green-light);
        }
        .nav-link-custom.active {
            color: var(--green-deep) !important;
            background: transparent;
            font-weight: 700;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 2px;
        }
        .navbar-toggler-custom {
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 1.3rem;
            padding: 6px 10px;
            transition: color var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            color: var(--green-deep);
        }
        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.15);
            outline: none;
        }

        /* Mega Panel */
        .nav-mega-trigger {
            position: relative;
        }
        .mega-panel {
            display: none;
            position: absolute;
            top: calc(var(--header-height) - 8px);
            left: 50%;
            transform: translateX(-50%);
            width: 620px;
            max-width: 95vw;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-xl);
            padding: 22px 24px;
            z-index: 1060;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 18px;
            border: 1px solid var(--border-light);
        }
        .nav-mega-trigger:hover .mega-panel,
        .mega-panel:hover {
            display: grid;
        }
        .mega-col h6 {
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--green-deep);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .mega-col a {
            display: block;
            padding: 6px 0;
            font-size: 0.9rem;
            color: var(--text-primary);
            transition: all var(--transition-fast);
            border-radius: var(--radius-xs);
        }
        .mega-col a:hover {
            color: var(--green-deep);
            padding-left: 6px;
        }
        .mega-mini-score {
            font-size: 0.85rem;
            padding: 5px 8px;
            background: var(--green-bg);
            border-radius: var(--radius-xs);
            margin-bottom: 6px;
            font-weight: 500;
            text-align: center;
        }
        .mini-score-num {
            font-weight: 700;
            color: var(--orange-accent);
            font-size: 1rem;
        }

        @media (max-width: 991px) {
            .mega-panel {
                display: none !important;
            }
            .nav-mega-trigger:hover .mega-panel {
                display: none !important;
            }
            .navbar-collapse {
                background: var(--white-pure);
                padding: 16px;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-lg);
                margin-top: 8px;
            }
            .nav-link-custom.active::after {
                bottom: 4px;
                left: 16px;
                transform: none;
                width: 22px;
            }
            .nav-link-custom {
                padding: 10px 14px !important;
                font-size: 1rem;
            }
        }

        /* ========== HERO (Medium Banner) ========== */
        .hero-category {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--blue-night) 0%, #0D4A2A 50%, var(--green-deep) 100%);
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.22;
            z-index: 0;
        }
        .hero-category::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 42, 68, 0.65) 0%, rgba(14, 122, 59, 0.7) 100%);
            z-index: 1;
        }
        .hero-category-content {
            position: relative;
            z-index: 2;
            color: #fff;
            padding: 40px 20px;
            max-width: 800px;
        }
        .hero-category-content h1 {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 2.6rem;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .hero-category-content .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 22px;
            line-height: 1.6;
        }
        .hero-quick-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .hero-quick-link {
            display: inline-block;
            padding: 10px 22px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition-smooth);
            backdrop-filter: blur(4px);
        }
        .hero-quick-link:hover {
            background: var(--orange-accent);
            border-color: var(--orange-accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 43, 0.4);
        }
        @media (max-width: 768px) {
            .hero-category {
                min-height: 260px;
            }
            .hero-category-content h1 {
                font-size: 1.9rem;
            }
            .hero-category-content .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-quick-link {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        /* ========== SECTION HEADINGS ========== */
        .section-title {
            font-family: var(--font-title);
            font-weight: 700;
            font-size: 1.55rem;
            color: var(--text-primary);
            margin-bottom: 6px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 2px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .section-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ========== FILTER BAR ========== */
        .filter-bar {
            background: var(--white-pure);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 24px;
            border: 1px solid var(--border-light);
        }
        .filter-date {
            padding: 8px 14px;
            border: 1px solid var(--border-card);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            color: var(--text-primary);
            background: var(--white-pure);
            cursor: pointer;
            transition: border-color var(--transition-fast);
        }
        .filter-date:focus {
            border-color: var(--green-deep);
            outline: none;
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.08);
        }
        .filter-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .filter-tab {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.88rem;
            font-weight: 600;
            border: 1px solid var(--border-card);
            background: var(--white-pure);
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .filter-tab:hover {
            border-color: var(--green-deep);
            color: var(--green-deep);
            background: var(--green-light);
        }
        .filter-tab.active {
            background: var(--green-deep);
            color: #fff;
            border-color: var(--green-deep);
        }

        /* ========== MATCH SCHEDULE TABLE ========== */
        .match-table-wrap {
            background: var(--white-pure);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.93rem;
        }
        .match-table thead {
            background: var(--blue-night);
            color: #fff;
        }
        .match-table thead th {
            padding: 13px 12px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            text-align: center;
            white-space: nowrap;
        }
        .match-table tbody td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }
        .match-table tbody tr {
            transition: background var(--transition-fast);
        }
        .match-table tbody tr:hover {
            background: var(--green-bg);
        }
        .match-table .team-name {
            font-weight: 600;
            color: var(--text-primary);
        }
        .match-score {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--orange-accent);
            letter-spacing: 1px;
        }
        .match-score.pending {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #E53935;
            border-radius: 50%;
            margin-right: 4px;
            animation: livePulse 1.2s infinite;
        }
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
            }
            50% {
                opacity: 0.5;
                box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
            }
        }
        .status-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .status-live {
            background: #FDE8E8;
            color: #C62828;
        }
        .status-finished {
            background: #E8F5EE;
            color: #0E7A3B;
        }
        .status-upcoming {
            background: #FFF3E0;
            color: #E65100;
        }
        .btn-match-detail {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            border: 1px solid var(--green-deep);
            background: transparent;
            color: var(--green-deep);
            cursor: pointer;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .btn-match-detail:hover {
            background: var(--green-deep);
            color: #fff;
        }
        @media (max-width: 768px) {
            .match-table-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .match-table {
                min-width: 700px;
                font-size: 0.82rem;
            }
            .match-table thead th,
            .match-table tbody td {
                padding: 8px 6px;
            }
        }

        /* ========== STANDINGS TABLE ========== */
        .standings-wrap {
            background: var(--white-pure);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .standings-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .standings-table thead {
            background: var(--blue-night);
            color: #fff;
            position: sticky;
            top: 0;
        }
        .standings-table thead th {
            padding: 12px 8px;
            font-weight: 600;
            font-size: 0.82rem;
            letter-spacing: 0.3px;
            text-align: center;
            white-space: nowrap;
        }
        .standings-table tbody td {
            padding: 10px 8px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
        }
        .standings-table tbody tr {
            transition: background var(--transition-fast);
        }
        .standings-table tbody tr:hover {
            background: var(--green-bg);
        }
        .standings-table tbody tr.top4 {
            background: #F0F9F3;
        }
        .standings-table .rank-col {
            font-weight: 700;
            font-size: 1rem;
            width: 40px;
        }
        .standings-table .team-col {
            text-align: left;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .team-crest-sm {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--green-bg);
            flex-shrink: 0;
        }
        .form-dots {
            display: flex;
            gap: 3px;
            justify-content: center;
        }
        .form-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .form-win {
            background: #2E7D32;
        }
        .form-draw {
            background: #F9A825;
        }
        .form-loss {
            background: #C62828;
        }
        @media (max-width: 768px) {
            .standings-wrap {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .standings-table {
                min-width: 750px;
                font-size: 0.78rem;
            }
            .standings-table thead th,
            .standings-table tbody td {
                padding: 7px 4px;
            }
        }

        /* ========== TOP SCORERS ========== */
        .scorers-list {
            background: var(--white-pure);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            padding: 16px 20px;
        }
        .scorer-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border-light);
            transition: background var(--transition-fast);
        }
        .scorer-item:last-child {
            border-bottom: none;
        }
        .scorer-item:hover {
            background: var(--green-bg);
            margin: 0 -12px;
            padding-left: 12px;
            padding-right: 12px;
            border-radius: var(--radius-sm);
        }
        .scorer-rank {
            font-weight: 800;
            font-size: 1.1rem;
            width: 32px;
            text-align: center;
            color: var(--text-primary);
            flex-shrink: 0;
        }
        .scorer-rank.top3 {
            color: var(--orange-accent);
            font-size: 1.3rem;
        }
        .scorer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--green-bg);
            flex-shrink: 0;
            object-fit: cover;
        }
        .scorer-info {
            flex: 1;
            min-width: 0;
        }
        .scorer-name {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        .scorer-team {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .scorer-goals {
            font-weight: 800;
            font-size: 1.15rem;
            color: var(--orange-accent);
            min-width: 50px;
            text-align: center;
            flex-shrink: 0;
        }
        .scorer-penalties {
            font-size: 0.8rem;
            color: var(--text-muted);
            min-width: 40px;
            text-align: center;
            flex-shrink: 0;
        }
        .trend-up {
            color: #2E7D32;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .trend-down {
            color: #C62828;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .trend-stable {
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .scorer-item {
                flex-wrap: wrap;
                gap: 6px;
            }
            .scorer-goals {
                min-width: 35px;
                font-size: 1rem;
            }
        }

        /* ========== H2H CARDS ========== */
        .h2h-card {
            background: var(--white-pure);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            padding: 20px;
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: pointer;
            height: 100%;
        }
        .h2h-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--green-deep);
        }
        .h2h-teams {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 12px;
        }
        .h2h-team {
            font-weight: 700;
            font-size: 1rem;
        }
        .h2h-vs {
            font-weight: 800;
            color: var(--orange-accent);
            font-size: 1.2rem;
        }
        .h2h-stats {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .h2h-stats strong {
            color: var(--text-primary);
        }

        /* ========== CTA BANNER ========== */
        .cta-banner {
            background: linear-gradient(135deg, var(--blue-night) 0%, #0D3D24 100%);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }
        .cta-banner-content {
            position: relative;
            z-index: 2;
        }
        .cta-banner h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }
        .cta-banner p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 18px;
            font-size: 1rem;
        }
        .btn-cta-primary {
            display: inline-block;
            padding: 12px 28px;
            background: var(--orange-accent);
            color: #fff;
            font-weight: 700;
            border-radius: 30px;
            font-size: 1rem;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            letter-spacing: 0.3px;
        }
        .btn-cta-primary:hover {
            background: var(--orange-hover);
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(255, 107, 43, 0.45);
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .footer-site {
            background: var(--blue-night);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 0;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 20px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }
        .footer-col h6 {
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 12px;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            padding: 4px 0;
            transition: all var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--orange-accent);
            padding-left: 4px;
        }
        .footer-bottom {
            text-align: center;
            padding: 20px 0 16px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 6px;
            transition: color var(--transition-fast);
        }
        .footer-bottom a:hover {
            color: var(--orange-accent);
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .footer-col h6 {
                font-size: 0.82rem;
            }
        }

        /* ========== UTILITY ========== */
        .section-spacing {
            padding: var(--spacing-section) 0;
        }
        .section-spacing-sm {
            padding: 28px 0;
        }
        .bg-green-light {
            background: var(--green-bg);
        }
        .bg-white {
            background: var(--white-pure);
        }
        .text-orange {
            color: var(--orange-accent);
            font-weight: 700;
        }
        .tag-pill {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.75rem;
            font-weight: 600;
            background: #F0F4F1;
            color: var(--green-deep);
            letter-spacing: 0.2px;
        }
        .tag-hot {
            background: #FFF0E8;
            color: var(--orange-accent);
        }
        .img-placeholder-crest {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            background: linear-gradient(135deg, #E8ECEA, #D5DDD8);
        }

        @media (max-width: 520px) {
            .section-spacing {
                padding: 28px 0;
            }
            .hero-quick-links {
                gap: 8px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .filter-tabs {
                justify-content: center;
            }
        }

/* roulang page: category3 */
:root {
            --brand-green: #0E7A3B;
            --brand-green-light: #E8F5EE;
            --brand-navy: #1A2A44;
            --brand-navy-light: #243450;
            --brand-orange: #FF6B2B;
            --brand-orange-dark: #E55D1F;
            --brand-orange-light: #FFF3EB;
            --bg-cloud: #F8F9FA;
            --bg-mint: #EDF3EF;
            --text-primary: #1A1A1A;
            --text-secondary: #5A5A5A;
            --text-muted: #888888;
            --text-inverse: #FFFFFF;
            --border-light: #E8ECEA;
            --border-card: #DDE3DF;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.11);
            --shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.14);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-pill: 50px;
            --transition-fast: 0.18s ease;
            --transition-base: 0.25s ease;
            --header-height: 68px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--bg-cloud);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--brand-green);
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--brand-orange);
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px solid var(--brand-orange);
            outline-offset: 2px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            font-family: var(--font-stack);
        }

        .container-custom {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ===== 导航 ===== */
        .navbar-main {
            background: #FFFFFF;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1050;
            height: var(--header-height);
            padding: 0;
            transition: box-shadow var(--transition-base);
        }
        .navbar-main.scrolled {
            box-shadow: var(--shadow-md);
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--brand-green) !important;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .navbar-brand-custom:hover {
            color: var(--brand-orange) !important;
            text-decoration: none;
        }
        .brand-icon {
            font-size: 1.5rem;
            color: var(--brand-orange);
            display: flex;
            align-items: center;
        }

        .nav-link-custom {
            font-size: 0.98rem;
            font-weight: 600;
            color: var(--text-primary) !important;
            padding: 8px 16px !important;
            border-radius: 6px;
            transition: all var(--transition-fast);
            position: relative;
            white-space: nowrap;
        }
        .nav-link-custom:hover {
            color: var(--brand-green) !important;
            background: var(--brand-green-light);
            text-decoration: none;
        }
        .nav-link-custom.active {
            color: var(--brand-green) !important;
            font-weight: 700;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 2px;
        }

        .navbar-toggler-custom {
            border: 1.5px solid var(--border-card);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            color: var(--text-primary);
            background: #fff;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            border-color: var(--brand-green);
            color: var(--brand-green);
            background: var(--brand-green-light);
        }
        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.15);
            outline: none;
        }

        .nav-mega-trigger {
            position: relative;
        }
        .mega-panel {
            display: none;
            position: absolute;
            top: calc(var(--header-height) - 8px);
            left: 50%;
            transform: translateX(-50%);
            width: 620px;
            max-width: 95vw;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            padding: 20px 24px;
            z-index: 1060;
            display: none;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            animation: megaFadeIn 0.2s ease;
        }
        @keyframes megaFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-6px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        .nav-mega-trigger:hover .mega-panel,
        .nav-mega-trigger:focus-within .mega-panel {
            display: grid;
        }
        .mega-col h6 {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--brand-navy);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .mega-col a {
            display: block;
            font-size: 0.9rem;
            color: var(--text-primary);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .mega-col a:hover {
            color: var(--brand-orange);
            text-decoration: none;
        }
        .mega-mini-score {
            font-size: 0.85rem;
            padding: 6px 10px;
            background: var(--bg-mint);
            border-radius: 6px;
            margin-bottom: 6px;
            color: var(--text-primary);
            font-weight: 500;
        }
        .mini-score-num {
            font-weight: 800;
            color: var(--brand-orange);
            font-size: 1rem;
        }

        @media (max-width: 991px) {
            .mega-panel {
                position: static;
                transform: none;
                width: 100%;
                max-width: 100%;
                grid-template-columns: 1fr;
                box-shadow: none;
                border: none;
                background: var(--bg-mint);
                border-radius: var(--radius-sm);
                padding: 16px;
                margin-top: 4px;
            }
            .nav-mega-trigger:hover .mega-panel,
            .nav-mega-trigger:focus-within .mega-panel {
                display: grid;
            }
            .nav-link-custom.active::after {
                bottom: 0;
                left: 8px;
                right: 8px;
            }
        }

        /* ===== Hero ===== */
        .hero-category {
            position: relative;
            height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, rgba(26, 42, 68, 0.88) 0%, rgba(14, 122, 59, 0.78) 100%), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            overflow: hidden;
        }
        .hero-category::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.25);
            z-index: 0;
        }
        .hero-category .hero-inner {
            position: relative;
            z-index: 1;
            color: #fff;
        }
        .hero-category h1 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero-category .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .hero-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: var(--radius-pill);
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-fast);
            cursor: pointer;
            backdrop-filter: blur(4px);
        }
        .hero-tag:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: #fff;
            text-decoration: none;
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero-category {
                height: 280px;
            }
            .hero-category h1 {
                font-size: 2rem;
            }
            .hero-category .hero-subtitle {
                font-size: 1rem;
            }
            .hero-tag {
                font-size: 0.8rem;
                padding: 5px 12px;
            }
        }

        /* ===== 板块通用 ===== */
        .section-block {
            padding: 48px 0;
        }
        .section-block.alt-bg {
            background: var(--bg-mint);
        }
        .section-title {
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--brand-orange);
            border-radius: 2px;
        }
        .section-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 32px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
        }

        /* ===== 卡片通用 ===== */
        .card-brand {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            overflow: hidden;
        }
        .card-brand:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--border-card);
        }
        .card-brand .card-img-wrap {
            overflow: hidden;
            border-radius: var(--radius-sm);
            position: relative;
        }
        .card-brand .card-img-wrap img {
            transition: transform var(--transition-base);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .card-brand:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        /* ===== 头条新闻区 ===== */
        .headline-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .headline-main {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 420px;
            cursor: pointer;
        }
        .headline-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }
        .headline-main:hover img {
            transform: scale(1.04);
        }
        .headline-main .headline-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px 24px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
            color: #fff;
        }
        .headline-main .hl-tag {
            display: inline-block;
            background: var(--brand-orange);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .headline-main .hl-title {
            font-size: 1.45rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 6px;
        }
        .headline-main .hl-summary {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .headline-main .hl-date {
            font-size: 0.8rem;
            opacity: 0.75;
        }

        .headline-side {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .headline-side-item {
            display: flex;
            gap: 12px;
            background: #fff;
            border-radius: var(--radius-sm);
            padding: 10px;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition-fast);
            align-items: center;
        }
        .headline-side-item:hover {
            border-color: var(--brand-green);
            box-shadow: var(--shadow-sm);
            background: var(--brand-green-light);
        }
        .headline-side-item img {
            width: 85px;
            height: 60px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .headline-side-item .hs-info {
            flex: 1;
            min-width: 0;
        }
        .headline-side-item .hs-title {
            font-size: 0.9rem;
            font-weight: 600;
            line-height: 1.4;
            color: var(--text-primary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .headline-side-item .hs-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        @media (max-width: 991px) {
            .headline-grid {
                grid-template-columns: 1fr;
            }
            .headline-main {
                height: 300px;
            }
            .headline-main .hl-title {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 520px) {
            .headline-main {
                height: 240px;
            }
            .headline-main .hl-title {
                font-size: 1.05rem;
            }
            .headline-side-item img {
                width: 65px;
                height: 48px;
            }
            .headline-side-item .hs-title {
                font-size: 0.82rem;
            }
        }

        /* ===== 新闻列表卡片 ===== */
        .news-list-item {
            display: flex;
            gap: 14px;
            background: #fff;
            border-radius: var(--radius-sm);
            padding: 14px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-fast);
            align-items: flex-start;
            cursor: pointer;
        }
        .news-list-item:hover {
            border-color: var(--brand-green);
            box-shadow: var(--shadow-sm);
            background: #fafffc;
        }
        .news-list-item img {
            width: 110px;
            height: 76px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-list-item .nl-info {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .nl-title {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.45;
            color: var(--text-primary);
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .nl-summary {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .news-list-item .nl-meta {
            display: flex;
            gap: 12px;
            align-items: center;
            font-size: 0.78rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .news-list-item .nl-tag {
            display: inline-block;
            font-size: 0.72rem;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
            letter-spacing: 0.4px;
        }
        .nl-tag.new {
            background: #FFF3EB;
            color: var(--brand-orange);
        }
        .nl-tag.hot {
            background: #FFE8E8;
            color: #D32F2F;
        }
        .nl-tag.exclusive {
            background: #E8F5EE;
            color: var(--brand-green);
        }
        @media (max-width: 520px) {
            .news-list-item img {
                width: 80px;
                height: 56px;
            }
            .news-list-item .nl-title {
                font-size: 0.9rem;
            }
            .news-list-item .nl-summary {
                font-size: 0.78rem;
                -webkit-line-clamp: 1;
            }
        }

        /* ===== 转会传闻专区 ===== */
        .rumor-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .rumor-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }
        .rumor-card img {
            width: 90px;
            height: 64px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .rumor-info {
            flex: 1;
            min-width: 0;
        }
        .rumor-info .rumor-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .rumor-info .rumor-detail {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .rumor-credibility {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .cred-bar {
            flex: 1;
            height: 7px;
            background: #E8ECEA;
            border-radius: 10px;
            overflow: hidden;
            max-width: 160px;
        }
        .cred-bar-fill {
            height: 100%;
            border-radius: 10px;
            transition: width var(--transition-base);
        }
        .cred-bar-fill.high {
            background: var(--brand-green);
        }
        .cred-bar-fill.mid {
            background: var(--brand-orange);
        }
        .cred-bar-fill.low {
            background: #CC4444;
        }
        @media (max-width: 520px) {
            .rumor-card {
                flex-direction: column;
            }
            .rumor-card img {
                width: 100%;
                height: 140px;
                object-fit: cover;
            }
        }

        /* ===== 深度分析专栏 ===== */
        .analysis-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            cursor: pointer;
        }
        .analysis-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .analysis-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .analysis-card .analysis-body {
            padding: 18px;
        }
        .analysis-card .analysis-title {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .analysis-card .analysis-excerpt {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .analysis-card .analysis-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .analysis-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--brand-green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--brand-green);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .analysis-card img {
                height: 150px;
            }
        }

        /* ===== 赛事前瞻 ===== */
        .preview-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .preview-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .preview-card .preview-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            background: var(--brand-orange);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 10px;
            letter-spacing: 0.5px;
        }
        .preview-matchup {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 12px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--text-primary);
        }
        .preview-matchup .vs {
            color: var(--brand-orange);
            font-size: 1rem;
            font-weight: 800;
        }
        .preview-card .preview-info {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            text-align: center;
        }
        .preview-card .preview-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 8px;
        }

        /* ===== 按钮 ===== */
        .btn-brand {
            display: inline-block;
            background: var(--brand-orange);
            color: #fff !important;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 0.95rem;
            text-align: center;
            letter-spacing: 0.3px;
            text-decoration: none !important;
        }
        .btn-brand:hover {
            background: var(--brand-orange-dark);
            transform: scale(1.02);
            box-shadow: 0 4px 14px rgba(255, 107, 43, 0.3);
        }
        .btn-brand:active {
            transform: scale(0.97);
        }
        .btn-outline-brand {
            display: inline-block;
            background: transparent;
            color: var(--brand-green) !important;
            font-weight: 600;
            padding: 9px 22px;
            border-radius: var(--radius-sm);
            border: 2px solid var(--brand-green);
            cursor: pointer;
            transition: all var(--transition-fast);
            font-size: 0.95rem;
            text-align: center;
            text-decoration: none !important;
        }
        .btn-outline-brand:hover {
            background: var(--brand-green-light);
            border-color: var(--brand-green);
        }
        .btn-read-more {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand-green);
            cursor: pointer;
            transition: color var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .btn-read-more:hover {
            color: var(--brand-orange);
            text-decoration: underline;
        }

        /* ===== 页脚 ===== */
        .footer-site {
            background: var(--brand-navy);
            color: rgba(255, 255, 255, 0.85);
            padding: 44px 0 20px;
            font-size: 0.9rem;
            line-height: 1.9;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 24px;
            margin-bottom: 28px;
        }
        .footer-col h6 {
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 0.4px;
        }
        .footer-col a {
            display: block;
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.85rem;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--brand-orange);
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 16px;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        .footer-bottom a:hover {
            color: var(--brand-orange);
            text-decoration: underline;
        }
        @media (max-width: 991px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        /* ===== Live脉冲动画 ===== */
        @keyframes livePulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.45;
                transform: scale(0.7);
            }
        }
        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #E53935;
            border-radius: 50%;
            animation: livePulse 1.2s infinite;
            margin-right: 4px;
            vertical-align: middle;
        }

        /* ===== 星级 ===== */
        .stars-gold {
            color: #F9A825;
            letter-spacing: 1px;
        }

/* roulang page: category4 */
:root {
            --green-deep: #0E7A3B;
            --green-light: #E8F5EE;
            --blue-night: #1A2A44;
            --orange-accent: #FF6B2B;
            --orange-hover: #E55D1F;
            --white-cloud: #F8F9FA;
            --gray-green: #EDF3EF;
            --text-primary: #1a1a1a;
            --text-secondary: #5a5a5a;
            --text-weak: #888888;
            --border-light: #E8ECEA;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --radius-lg: 12px;
            --radius-md: 8px;
            --radius-sm: 6px;
            --header-height: 64px;
            --container-max: 1280px;
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--white-cloud);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--orange-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            cursor: pointer;
            font-family: var(--font-stack);
        }
        input,
        select {
            font-family: var(--font-stack);
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin-top: 0;
            font-weight: 700;
            line-height: 1.3;
        }

        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* ========== NAVBAR ========== */
        .navbar-main {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            height: var(--header-height);
            position: sticky;
            top: 0;
            z-index: 1050;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
            padding: 0;
        }
        .navbar-main .navbar-brand-custom {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--blue-night);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: color var(--transition-fast);
        }
        .navbar-main .navbar-brand-custom:hover {
            color: var(--green-deep);
        }
        .brand-icon {
            color: var(--orange-accent);
            font-size: 1.5rem;
            display: inline-flex;
            align-items: center;
        }
        .navbar-toggler-custom {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 6px 12px;
            color: var(--blue-night);
            background: #fff;
            font-size: 1.2rem;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            background: var(--gray-green);
            border-color: var(--green-deep);
        }
        .navbar-toggler-custom:focus {
            box-shadow: 0 0 0 3px rgba(14, 122, 59, 0.18);
            outline: none;
        }

        .nav-link-custom {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            position: relative;
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-link-custom:hover {
            color: var(--green-deep);
            background: var(--green-light);
        }
        .nav-link-custom.active {
            color: var(--green-deep);
            background: transparent;
        }
        .nav-link-custom.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 3px 3px 0 0;
        }

        .nav-mega-trigger {
            position: relative;
        }
        .mega-panel {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            max-width: 90vw;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            padding: 24px 28px;
            z-index: 1060;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border: 1px solid var(--border-light);
        }
        .nav-mega-trigger:hover .mega-panel {
            display: grid;
        }
        .mega-col h6 {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--green-deep);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .mega-col a {
            display: block;
            font-size: 0.9rem;
            color: var(--text-primary);
            padding: 5px 0;
            transition: color var(--transition-fast);
        }
        .mega-col a:hover {
            color: var(--orange-accent);
        }
        .mega-mini-score {
            font-size: 0.85rem;
            padding: 4px 0;
            color: var(--text-secondary);
            border-bottom: 1px dotted var(--border-light);
        }
        .mega-mini-score:last-child {
            border-bottom: none;
        }
        .mini-score-num {
            font-weight: 700;
            color: var(--orange-accent);
            font-size: 0.9rem;
        }
        .nav-icon-btn {
            color: var(--text-secondary);
            font-size: 1.1rem;
            padding: 8px;
            border-radius: 50%;
            transition: all var(--transition-fast);
            background: transparent;
            border: none;
        }
        .nav-icon-btn:hover {
            color: var(--orange-accent);
            background: var(--gray-green);
        }

        @media (max-width: 991px) {
            .mega-panel {
                position: static;
                transform: none;
                width: 100%;
                max-width: 100%;
                box-shadow: none;
                border: none;
                padding: 12px 0;
                grid-template-columns: 1fr;
                gap: 10px;
                background: transparent;
            }
            .nav-mega-trigger:hover .mega-panel {
                display: grid;
            }
            .nav-link-custom.active::after {
                left: 8px;
                right: 8px;
            }
            .navbar-collapse {
                background: #fff;
                border-radius: var(--radius-md);
                padding: 12px 16px;
                box-shadow: var(--shadow-card);
                margin-top: 4px;
            }
        }

        /* ========== HERO ========== */
        .hero-inner {
            position: relative;
            background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .hero-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 42, 68, 0.88) 0%, rgba(14, 122, 59, 0.78) 100%);
            z-index: 1;
        }
        .hero-inner .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 20px;
        }
        .hero-inner h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .hero-inner .hero-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 20px;
        }
        .hero-quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 16px;
        }
        .hero-quick-links .hero-link-badge {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(6px);
            transition: all var(--transition-fast);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .hero-quick-links .hero-link-badge:hover {
            background: rgba(255, 255, 255, 0.28);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.5);
        }
        .hero-filter-select {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 24px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 500;
            backdrop-filter: blur(6px);
            cursor: pointer;
            min-width: 180px;
            text-align: center;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='white'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }
        .hero-filter-select option {
            color: #1a1a1a;
            background: #fff;
        }
        .hero-filter-select:focus {
            outline: none;
            border-color: var(--orange-accent);
            box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.25);
        }

        @media (max-width: 768px) {
            .hero-inner {
                min-height: 280px;
            }
            .hero-inner h1 {
                font-size: 1.9rem;
            }
            .hero-inner .hero-subtitle {
                font-size: 0.95rem;
            }
        }

        /* ========== SECTIONS ========== */
        .section-block {
            padding: 56px 0;
        }
        .section-block.bg-alt {
            background: var(--gray-green);
        }
        .section-block.bg-white-block {
            background: #fff;
        }
        .section-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--blue-night);
            margin-bottom: 8px;
            text-align: center;
        }
        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 32px;
        }
        .section-divider {
            width: 48px;
            height: 3px;
            background: var(--orange-accent);
            border-radius: 3px;
            margin: 0 auto 24px;
        }

        /* ========== TEAM GRID ========== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .team-grid-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px 16px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            cursor: pointer;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .team-grid-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--green-deep);
        }
        .team-grid-card .team-crest {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--gray-green);
            border: 2px solid var(--border-light);
        }
        .team-grid-card .team-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
        }
        .team-grid-card .team-league-tag {
            font-size: 0.78rem;
            color: var(--text-weak);
            background: var(--gray-green);
            padding: 2px 10px;
            border-radius: 12px;
        }

        @media (max-width: 991px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 767px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .team-grid-card {
                padding: 14px 10px;
            }
            .team-grid-card .team-crest {
                width: 56px;
                height: 56px;
            }
        }

        /* ========== TEAM DETAIL ========== */
        .team-detail-wrapper {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .team-detail-header {
            background: linear-gradient(135deg, var(--blue-night) 0%, #1e3554 100%);
            color: #fff;
            padding: 28px 32px;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .team-detail-crest-lg {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            object-fit: cover;
            background: #fff;
            border: 3px solid rgba(255, 255, 255, 0.6);
            flex-shrink: 0;
        }
        .team-detail-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .team-detail-info .team-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .team-detail-info .team-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .team-detail-body {
            padding: 28px 32px;
        }
        .team-detail-body h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--blue-night);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-light);
        }
        .squad-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .squad-table th {
            background: var(--blue-night);
            color: #fff;
            padding: 10px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.3px;
        }
        .squad-table td {
            padding: 9px 12px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-primary);
        }
        .squad-table tr:hover td {
            background: var(--gray-green);
        }
        .squad-table .position-badge {
            display: inline-block;
            background: var(--green-light);
            color: var(--green-deep);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.78rem;
            font-weight: 600;
        }
        .form-indicator {
            display: inline-flex;
            gap: 4px;
        }
        .form-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
            color: #fff;
        }
        .form-dot.win {
            background: #0E7A3B;
        }
        .form-dot.draw {
            background: #888;
        }
        .form-dot.loss {
            background: #c0392b;
        }

        @media (max-width: 767px) {
            .team-detail-header {
                padding: 20px;
                gap: 14px;
            }
            .team-detail-crest-lg {
                width: 64px;
                height: 64px;
            }
            .team-detail-body {
                padding: 18px;
            }
            .squad-table {
                font-size: 0.78rem;
            }
            .squad-table th,
            .squad-table td {
                padding: 6px 8px;
            }
        }

        /* ========== HONORS ========== */
        .honors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .honor-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border-left: 4px solid var(--orange-accent);
            transition: all var(--transition-smooth);
        }
        .honor-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .honor-card .trophy-icon {
            font-size: 2rem;
            color: #f0c040;
            margin-bottom: 8px;
        }
        .honor-card .honor-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--blue-night);
        }
        .honor-card .honor-years {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        @media (max-width: 767px) {
            .honors-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 520px) {
            .honors-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== TIMELINE ========== */
        .transfer-timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            padding-left: 28px;
        }
        .transfer-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--border-light);
            border-radius: 3px;
        }
        .timeline-window {
            position: relative;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
        }
        .timeline-window::before {
            content: '';
            position: absolute;
            left: -22px;
            top: 22px;
            width: 12px;
            height: 12px;
            background: var(--orange-accent);
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 3px var(--orange-accent);
        }
        .timeline-window .window-title {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--blue-night);
            margin-bottom: 10px;
        }
        .transfer-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px dotted var(--border-light);
            font-size: 0.9rem;
        }
        .transfer-item:last-child {
            border-bottom: none;
        }
        .transfer-badge-in {
            background: #d4edda;
            color: #155724;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .transfer-badge-out {
            background: #f8d7da;
            color: #721c24;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .transfer-fee {
            font-weight: 700;
            color: var(--orange-accent);
            white-space: nowrap;
            margin-left: auto;
        }

        @media (max-width: 767px) {
            .transfer-timeline {
                padding-left: 20px;
            }
            .timeline-window {
                padding: 14px 16px;
            }
            .timeline-window::before {
                left: -16px;
                width: 10px;
                height: 10px;
            }
            .transfer-item {
                flex-wrap: wrap;
                gap: 4px;
            }
            .transfer-fee {
                margin-left: 0;
            }
        }

        /* ========== NEWS LIST ========== */
        .news-list-compact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .news-item-compact {
            display: flex;
            gap: 14px;
            padding: 12px;
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            align-items: flex-start;
        }
        .news-item-compact:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-1px);
        }
        .news-item-compact .news-thumb {
            width: 90px;
            height: 64px;
            border-radius: var(--radius-sm);
            object-fit: cover;
            flex-shrink: 0;
            background: var(--gray-green);
        }
        .news-item-compact .news-info h5 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }
        .news-item-compact .news-info .news-meta {
            font-size: 0.8rem;
            color: var(--text-weak);
        }
        .news-tag {
            display: inline-block;
            background: var(--green-light);
            color: var(--green-deep);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.72rem;
            font-weight: 600;
            margin-left: 6px;
        }

        @media (max-width: 520px) {
            .news-item-compact .news-thumb {
                width: 70px;
                height: 50px;
            }
            .news-item-compact .news-info h5 {
                font-size: 0.85rem;
            }
        }

        /* ========== CTA ========== */
        .cta-block {
            background: linear-gradient(135deg, var(--blue-night) 0%, #0E7A3B 100%);
            color: #fff;
            text-align: center;
            padding: 48px 20px;
            border-radius: var(--radius-lg);
            margin: 40px 0;
        }
        .cta-block h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .cta-block p {
            opacity: 0.9;
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-cta-primary {
            background: var(--orange-accent);
            color: #fff;
            border: none;
            padding: 11px 28px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-fast);
            display: inline-block;
        }
        .btn-cta-primary:hover {
            background: var(--orange-hover);
            color: #fff;
            transform: scale(1.03);
        }
        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.6);
            padding: 10px 26px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-fast);
            display: inline-block;
            margin-left: 10px;
        }
        .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        /* ========== FOOTER ========== */
        .footer-site {
            background: var(--blue-night);
            color: #ccd5e0;
            padding: 48px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 32px;
        }
        .footer-col h6 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .footer-col a {
            display: block;
            color: #a0b0c0;
            font-size: 0.85rem;
            padding: 3px 0;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--orange-accent);
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 18px;
            font-size: 0.82rem;
            color: #8899aa;
        }
        .footer-bottom a {
            color: #a0b8cc;
            margin: 0 4px;
            font-size: 0.82rem;
        }
        .footer-bottom a:hover {
            color: var(--orange-accent);
        }

        @media (max-width: 991px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 767px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .cta-block {
                padding: 32px 16px;
            }
            .cta-block h3 {
                font-size: 1.3rem;
            }
            .btn-cta-outline {
                margin-left: 0;
                margin-top: 8px;
            }
        }
        @media (max-width: 520px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .section-block {
                padding: 36px 0;
            }
            .section-title {
                font-size: 1.35rem;
            }
        }

        /* ========== PULSE DOT ========== */
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.6);
            }
        }
        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #e74c3c;
            border-radius: 50%;
            animation: pulse-dot 1.4s infinite;
            margin-right: 4px;
            vertical-align: middle;
        }

        /* ========== MISC ========== */
        .text-orange {
            color: var(--orange-accent);
        }
        .text-green {
            color: var(--green-deep);
        }
        .fw-800 {
            font-weight: 800;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .gap-2 {
            gap: 8px;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .d-flex {
            display: flex;
        }
        .align-items-center {
            align-items: center;
        }
        .justify-content-center {
            justify-content: center;
        }
