/* roulang page: index */
:root {
            --color-primary: #1a1f2e;
            --color-primary-light: #252b3d;
            --color-accent: #c8964c;
            --color-accent-light: #d4a85c;
            --color-accent-dark: #a87830;
            --color-gold: #e2c07b;
            --color-bg: #f7f5f0;
            --color-bg-alt: #f0ede6;
            --color-white: #ffffff;
            --color-text: #2c2c2c;
            --color-text-light: #6b6b6b;
            --color-text-muted: #999999;
            --color-border: #e0dcd4;
            --color-border-light: #eee9e0;
            --color-success: #2d8b4e;
            --color-danger: #c0392b;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
            --font-heading: 'PingFang SC','Microsoft YaHei','Helvetica Neue',sans-serif;
            --font-body: 'PingFang SC','Microsoft YaHei','Helvetica Neue',sans-serif;
            --transition-base: 0.25s cubic-bezier(0.4,0,0.2,1);
            --transition-smooth: 0.35s cubic-bezier(0.25,0.8,0.25,1.2);
            --max-width: 1200px;
            --nav-height: 72px;
        }
        *,*::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);
            color:var(--color-text);
            background:var(--color-bg);
            line-height:1.7;
            overflow-x:hidden;
            margin:0;
            padding:0;
        }
        a{text-decoration:none;color:inherit;transition:color var(--transition-base);}
        a:hover{color:var(--color-accent);}
        img{max-width:100%;height:auto;display:block;}
        button,input,select,textarea{font-family:inherit;}
        h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.3;color:var(--color-primary);}
        .container{max-width:var(--max-width);padding-left:20px;padding-right:20px;}
        @media(min-width:1400px){.container{max-width:1240px;}}

        /* Navbar */
        .navbar-custom{
            background:var(--color-white);
            border-bottom:1px solid var(--color-border-light);
            min-height:var(--nav-height);
            padding:0;
            box-shadow:var(--shadow-sm);
            position:sticky;
            top:0;
            z-index:1050;
            transition:box-shadow var(--transition-base);
        }
        .navbar-custom.scrolled{box-shadow:var(--shadow-md);}
        .navbar-custom .navbar-brand{
            font-family:var(--font-heading);
            font-weight:700;
            font-size:1.35rem;
            color:var(--color-primary) !important;
            letter-spacing:0.02em;
            padding:0;
            display:flex;
            align-items:center;
            gap:10px;
            transition:color var(--transition-base);
        }
        .navbar-custom .navbar-brand:hover{color:var(--color-accent) !important;}
        .navbar-brand-icon{
            width:40px;
            height:40px;
            border-radius:var(--radius-sm);
            background:linear-gradient(135deg,var(--color-accent),var(--color-accent-dark));
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            font-weight:700;
            font-size:1.1rem;
            flex-shrink:0;
        }
        .navbar-custom .nav-link{
            font-weight:500;
            color:var(--color-text) !important;
            padding:0.6rem 1.2rem !important;
            border-radius:var(--radius-sm);
            transition:all var(--transition-base);
            font-size:0.95rem;
            position:relative;
            margin:0 2px;
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active{
            color:var(--color-accent) !important;
            background:rgba(200,150,76,0.06);
        }
        .navbar-custom .nav-link.active::after{
            content:'';
            position:absolute;
            bottom:4px;
            left:50%;
            transform:translateX(-50%);
            width:20px;
            height:3px;
            border-radius:3px;
            background:var(--color-accent);
        }
        .navbar-custom .navbar-toggler{
            border:none;
            padding:8px;
            color:var(--color-primary);
            box-shadow:none;
        }
        .navbar-custom .navbar-toggler:focus{box-shadow:none;outline:2px solid var(--color-accent);outline-offset:2px;}
        @media(max-width:991px){
            .navbar-custom .navbar-collapse{
                background:var(--color-white);
                padding:12px 16px 20px;
                border-radius:0 0 var(--radius-md) var(--radius-md);
                box-shadow:var(--shadow-lg);
                margin-top:4px;
            }
            .navbar-custom .nav-link{padding:0.7rem 1rem !important;margin:2px 0;}
            .navbar-custom .nav-link.active::after{display:none;}
        }

        /* Hero */
        .hero-section{
            position:relative;
            min-height:620px;
            display:flex;
            align-items:center;
            background:linear-gradient(135deg,rgba(26,31,46,0.88) 0%,rgba(26,31,46,0.72) 40%,rgba(26,31,46,0.85) 100%),url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-attachment:fixed;
            overflow:hidden;
        }
        .hero-section::before{
            content:'';
            position:absolute;
            top:-80px;
            right:-120px;
            width:500px;
            height:500px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(200,150,76,0.18) 0%,transparent 70%);
            pointer-events:none;
        }
        .hero-section::after{
            content:'';
            position:absolute;
            bottom:-60px;
            left:-80px;
            width:400px;
            height:400px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(200,150,76,0.1) 0%,transparent 70%);
            pointer-events:none;
        }
        .hero-content{position:relative;z-index:2;padding:80px 0;}
        .hero-badge{
            display:inline-block;
            background:rgba(200,150,76,0.2);
            color:var(--color-gold);
            border:1px solid rgba(200,150,76,0.35);
            padding:6px 18px;
            border-radius:30px;
            font-size:0.85rem;
            font-weight:500;
            letter-spacing:0.04em;
            margin-bottom:22px;
        }
        .hero-title{
            font-size:3rem;
            font-weight:800;
            color:#ffffff;
            line-height:1.2;
            margin-bottom:20px;
            letter-spacing:0.01em;
        }
        .hero-title .highlight{color:var(--color-gold);}
        .hero-subtitle{
            font-size:1.15rem;
            color:rgba(255,255,255,0.8);
            line-height:1.7;
            margin-bottom:32px;
            max-width:600px;
        }
        .hero-stats-row{
            display:flex;
            gap:30px;
            flex-wrap:wrap;
            margin-top:10px;
        }
        .hero-stat-item{
            text-align:center;
            min-width:80px;
        }
        .hero-stat-number{
            font-size:2rem;
            font-weight:800;
            color:var(--color-gold);
            line-height:1;
        }
        .hero-stat-label{
            font-size:0.8rem;
            color:rgba(255,255,255,0.65);
            margin-top:4px;
            letter-spacing:0.03em;
        }
        @media(max-width:991px){
            .hero-section{min-height:520px;background-attachment:scroll;}
            .hero-title{font-size:2.2rem;}
            .hero-subtitle{font-size:1rem;}
            .hero-stats-row{gap:18px;}
            .hero-stat-number{font-size:1.6rem;}
        }
        @media(max-width:575px){
            .hero-section{min-height:440px;}
            .hero-title{font-size:1.7rem;}
            .hero-subtitle{font-size:0.9rem;}
            .hero-content{padding:50px 0;}
            .hero-stats-row{gap:14px;}
            .hero-stat-number{font-size:1.35rem;}
        }

        /* Buttons */
        .btn-accent{
            background:var(--color-accent);
            color:#fff;
            border:none;
            padding:12px 28px;
            border-radius:var(--radius-md);
            font-weight:600;
            font-size:1rem;
            transition:all var(--transition-smooth);
            box-shadow:0 4px 14px rgba(200,150,76,0.3);
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .btn-accent:hover{
            background:var(--color-accent-dark);
            color:#fff;
            transform:translateY(-2px);
            box-shadow:0 8px 24px rgba(200,150,76,0.4);
        }
        .btn-accent:active{transform:translateY(0);box-shadow:0 2px 8px rgba(200,150,76,0.3);}
        .btn-outline-accent{
            background:transparent;
            color:var(--color-accent);
            border:2px solid var(--color-accent);
            padding:10px 26px;
            border-radius:var(--radius-md);
            font-weight:600;
            font-size:0.95rem;
            transition:all var(--transition-smooth);
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .btn-outline-accent:hover{
            background:var(--color-accent);
            color:#fff;
            transform:translateY(-2px);
            box-shadow:0 6px 20px rgba(200,150,76,0.3);
        }
        .btn-outline-light-custom{
            background:transparent;
            color:#fff;
            border:2px solid rgba(255,255,255,0.5);
            padding:10px 26px;
            border-radius:var(--radius-md);
            font-weight:600;
            font-size:0.95rem;
            transition:all var(--transition-smooth);
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .btn-outline-light-custom:hover{
            background:rgba(255,255,255,0.12);
            color:#fff;
            border-color:#fff;
            transform:translateY(-2px);
        }

        /* Section */
        .section-padding{padding:70px 0;}
        @media(max-width:767px){.section-padding{padding:45px 0;}}
        .section-label{
            display:inline-block;
            font-size:0.8rem;
            font-weight:600;
            color:var(--color-accent);
            text-transform:uppercase;
            letter-spacing:0.08em;
            margin-bottom:10px;
        }
        .section-title{
            font-size:2rem;
            font-weight:700;
            color:var(--color-primary);
            margin-bottom:14px;
        }
        .section-desc{
            font-size:1.05rem;
            color:var(--color-text-light);
            max-width:650px;
            margin:0 auto 40px;
            line-height:1.7;
        }
        @media(max-width:767px){
            .section-title{font-size:1.5rem;}
            .section-desc{font-size:0.95rem;margin-bottom:28px;}
        }

        /* Feature Cards */
        .feature-card{
            background:var(--color-white);
            border-radius:var(--radius-lg);
            padding:32px 24px;
            box-shadow:var(--shadow-sm);
            border:1px solid var(--color-border-light);
            transition:all var(--transition-smooth);
            height:100%;
            text-align:center;
            position:relative;
            overflow:hidden;
        }
        .feature-card:hover{
            transform:translateY(-6px);
            box-shadow:var(--shadow-lg);
            border-color:transparent;
        }
        .feature-card-icon{
            width:56px;
            height:56px;
            border-radius:var(--radius-md);
            background:linear-gradient(135deg,rgba(200,150,76,0.15),rgba(200,150,76,0.05));
            display:flex;
            align-items:center;
            justify-content:center;
            margin:0 auto 18px;
            font-size:1.5rem;
            color:var(--color-accent);
            transition:all var(--transition-base);
        }
        .feature-card:hover .feature-card-icon{
            background:linear-gradient(135deg,var(--color-accent),var(--color-accent-dark));
            color:#fff;
        }
        .feature-card h3{font-size:1.15rem;margin-bottom:10px;color:var(--color-primary);}
        .feature-card p{font-size:0.9rem;color:var(--color-text-light);line-height:1.6;margin:0;}

        /* Ranking Panel */
        .ranking-panel{
            background:var(--color-white);
            border-radius:var(--radius-xl);
            box-shadow:var(--shadow-md);
            overflow:hidden;
            border:1px solid var(--color-border-light);
        }
        .ranking-header{
            background:var(--color-primary);
            color:#fff;
            padding:20px 28px;
            display:flex;
            align-items:center;
            justify-content:space-between;
            flex-wrap:wrap;
            gap:12px;
        }
        .ranking-header h3{margin:0;color:#fff;font-size:1.2rem;}
        .ranking-badge{
            background:var(--color-accent);
            color:#fff;
            padding:4px 14px;
            border-radius:20px;
            font-size:0.8rem;
            font-weight:600;
        }
        .ranking-list{padding:0;margin:0;list-style:none;}
        .ranking-item{
            display:flex;
            align-items:center;
            padding:16px 28px;
            border-bottom:1px solid var(--color-border-light);
            transition:background var(--transition-base);
            gap:16px;
        }
        .ranking-item:last-child{border-bottom:none;}
        .ranking-item:hover{background:rgba(200,150,76,0.03);}
        .rank-num{
            width:36px;
            height:36px;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:700;
            font-size:0.9rem;
            flex-shrink:0;
        }
        .rank-num.top1{background:#e8c547;color:#5c3d00;}
        .rank-num.top2{background:#c0c0c0;color:#3a3a3a;}
        .rank-num.top3{background:#cd9b6b;color:#4a2a10;}
        .rank-num.normal{background:#f0ede6;color:var(--color-text-light);}
        .rank-info{flex:1;min-width:0;}
        .rank-name{font-weight:600;font-size:0.95rem;color:var(--color-primary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
        .rank-detail{font-size:0.8rem;color:var(--color-text-muted);margin-top:2px;}
        .rank-score{font-weight:700;color:var(--color-accent);font-size:1rem;flex-shrink:0;}

        /* CMS List */
        .cms-list-card{
            background:var(--color-white);
            border-radius:var(--radius-lg);
            box-shadow:var(--shadow-sm);
            border:1px solid var(--color-border-light);
            padding:28px;
            transition:all var(--transition-smooth);
        }
        .cms-list-card:hover{box-shadow:var(--shadow-md);}
        .cms-list-item{
            display:flex;
            align-items:flex-start;
            gap:16px;
            padding:16px 0;
            border-bottom:1px solid var(--color-border-light);
            transition:all var(--transition-base);
        }
        .cms-list-item:last-child{border-bottom:none;}
        .cms-list-item:hover{padding-left:6px;}
        .cms-item-thumb{
            width:70px;
            height:70px;
            border-radius:var(--radius-sm);
            object-fit:cover;
            flex-shrink:0;
            background:var(--color-bg-alt);
        }
        .cms-item-content{flex:1;min-width:0;}
        .cms-item-title{
            font-weight:600;
            font-size:0.95rem;
            color:var(--color-primary);
            line-height:1.4;
            display:-webkit-box;
            -webkit-line-clamp:2;
            -webkit-box-orient:vertical;
            overflow:hidden;
        }
        .cms-item-title a{color:inherit;}
        .cms-item-title a:hover{color:var(--color-accent);}
        .cms-item-meta{
            font-size:0.78rem;
            color:var(--color-text-muted);
            margin-top:6px;
            display:flex;
            gap:14px;
            flex-wrap:wrap;
        }
        .cms-empty-state{
            text-align:center;
            padding:40px 20px;
            color:var(--color-text-muted);
            font-size:0.95rem;
        }

        /* Category Entry */
        .category-entry-card{
            position:relative;
            border-radius:var(--radius-xl);
            overflow:hidden;
            height:280px;
            display:flex;
            align-items:flex-end;
            background:linear-gradient(180deg,transparent 30%,rgba(26,31,46,0.85) 100%);
            box-shadow:var(--shadow-md);
            transition:all var(--transition-smooth);
            cursor:pointer;
        }
        .category-entry-card img{
            position:absolute;
            top:0;left:0;
            width:100%;height:100%;
            object-fit:cover;
            z-index:-1;
            transition:transform 0.5s ease;
        }
        .category-entry-card:hover{box-shadow:var(--shadow-xl);}
        .category-entry-card:hover img{transform:scale(1.06);}
        .category-entry-body{
            position:relative;
            z-index:2;
            padding:24px;
            color:#fff;
            width:100%;
        }
        .category-entry-body h3{color:#fff;font-size:1.3rem;margin-bottom:6px;}
        .category-entry-body p{color:rgba(255,255,255,0.8);font-size:0.9rem;margin:0;}

        /* FAQ */
        .faq-accordion .accordion-item{
            border:1px solid var(--color-border-light);
            border-radius:var(--radius-md) !important;
            margin-bottom:12px;
            overflow:hidden;
            background:var(--color-white);
        }
        .faq-accordion .accordion-button{
            font-weight:600;
            font-size:1rem;
            color:var(--color-primary);
            background:var(--color-white);
            padding:18px 22px;
            box-shadow:none;
            border-radius:var(--radius-md) !important;
            transition:all var(--transition-base);
        }
        .faq-accordion .accordion-button:not(.collapsed){
            background:rgba(200,150,76,0.04);
            color:var(--color-accent);
            box-shadow:none;
        }
        .faq-accordion .accordion-button:focus{box-shadow:none;border-color:var(--color-accent);}
        .faq-accordion .accordion-body{
            padding:6px 22px 22px;
            color:var(--color-text-light);
            line-height:1.7;
            font-size:0.95rem;
        }

        /* CTA */
        .cta-section{
            background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-primary-light) 100%);
            border-radius:var(--radius-xl);
            padding:50px 40px;
            text-align:center;
            position:relative;
            overflow:hidden;
        }
        .cta-section::before{
            content:'';
            position:absolute;
            top:-40px;right:-60px;
            width:250px;height:250px;
            border-radius:50%;
            background:radial-gradient(circle,rgba(200,150,76,0.25) 0%,transparent 70%);
            pointer-events:none;
        }
        .cta-section h2{color:#fff;font-size:1.8rem;margin-bottom:12px;position:relative;z-index:1;}
        .cta-section p{color:rgba(255,255,255,0.75);font-size:1rem;margin-bottom:24px;position:relative;z-index:1;max-width:500px;margin-left:auto;margin-right:auto;}
        .cta-section .btn-wrap{position:relative;z-index:1;}

        /* Footer */
        .footer-custom{
            background:var(--color-primary);
            color:rgba(255,255,255,0.7);
            padding:40px 0 24px;
            font-size:0.9rem;
        }
        .footer-custom .footer-brand{
            font-family:var(--font-heading);
            font-weight:700;
            font-size:1.2rem;
            color:#fff;
            margin-bottom:10px;
        }
        .footer-custom a{color:rgba(255,255,255,0.7);transition:color var(--transition-base);}
        .footer-custom a:hover{color:var(--color-gold);}
        .footer-divider{
            border-top:1px solid rgba(255,255,255,0.12);
            margin:24px 0;
        }
        .footer-bottom{font-size:0.82rem;color:rgba(255,255,255,0.45);}

        /* Misc */
        .text-accent{color:var(--color-accent) !important;}
        .bg-alt{background:var(--color-bg-alt);}
        .decorative-line{
            width:50px;height:3px;
            border-radius:3px;
            background:var(--color-accent);
            margin:0 auto 16px;
        }
        .img-cover-fit{
            width:100%;
            height:100%;
            object-fit:cover;
            border-radius:inherit;
        }
        @media(max-width:575px){
            .cta-section{padding:32px 20px;border-radius:var(--radius-lg);}
            .cta-section h2{font-size:1.4rem;}
            .ranking-item{padding:12px 16px;gap:10px;}
            .rank-num{width:30px;height:30px;font-size:0.8rem;}
            .cms-list-card{padding:16px;}
            .cms-item-thumb{width:50px;height:50px;}
            .category-entry-card{height:200px;}
        }

/* roulang page: article */
:root {
            --color-bg-deep: #080c1f;
            --color-bg-panel: #0f1333;
            --color-bg-card: #151a3d;
            --color-bg-card-hover: #1b2050;
            --color-bg-surface: #ffffff;
            --color-bg-light: #f5f6fa;
            --color-gold: #c9a050;
            --color-gold-light: #d9b870;
            --color-gold-dark: #a07828;
            --color-accent: #e8a830;
            --color-accent-soft: #f5d78c;
            --color-text-primary: #1a1d30;
            --color-text-secondary: #4a5068;
            --color-text-muted: #7a8098;
            --color-text-light: #b0b8d0;
            --color-text-on-dark: #e2e6f2;
            --color-border: #e2e5ef;
            --color-border-light: #eef0f6;
            --color-border-card: #2a2f50;
            --color-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --color-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
            --color-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
            --color-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 50%;
            --font-display: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition-fast: 0.18s ease;
            --transition-base: 0.28s ease;
            --transition-slow: 0.40s ease;
            --max-width-content: 780px;
            --max-width-container: 1140px;
        }

        *,
        *::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.7;
            color: var(--color-text-primary);
            background-color: var(--color-bg-light);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-gold);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button {
            cursor: pointer;
            font-family: inherit;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.35;
            color: var(--color-text-primary);
            margin-top: 0;
        }

        /* ========== 导航栏 ========== */
        .navbar-custom {
            background: var(--color-bg-deep);
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 1050;
            min-height: 62px;
        }

        .navbar-custom .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.2rem;
            color: #ffffff !important;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 0;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .navbar-brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            color: #1a1d30;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .navbar-custom .nav-link {
            color: rgba(255, 255, 255, 0.82) !important;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 8px 16px !important;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }

        .navbar-custom .nav-link:hover {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.06);
        }

        .navbar-custom .nav-link.active {
            color: var(--color-gold) !important;
            background: rgba(201, 160, 80, 0.10);
            font-weight: 600;
        }

        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--radius-sm);
            padding: 6px 10px;
            color: rgba(255, 255, 255, 0.85);
            background: transparent;
            transition: all var(--transition-fast);
        }

        .navbar-toggler:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.30);
            outline: none;
        }

        /* ========== 文章Banner区 ========== */
        .article-banner {
            background: var(--color-bg-deep);
            background-image: linear-gradient(180deg, rgba(8, 12, 31, 0.92) 0%, rgba(15, 19, 51, 0.85) 40%, rgba(8, 12, 31, 0.95) 100%),
                url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            padding: 40px 0 36px;
            position: relative;
            border-bottom: 2px solid rgba(201, 160, 80, 0.25);
        }

        .article-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
            opacity: 0.5;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0 0 14px;
            font-size: 0.84rem;
        }

        .breadcrumb-custom a {
            color: var(--color-text-light);
            transition: color var(--transition-fast);
        }

        .breadcrumb-custom a:hover {
            color: var(--color-gold-light);
        }

        .breadcrumb-sep {
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.7rem;
            margin: 0 2px;
        }

        .breadcrumb-current {
            color: var(--color-gold-light);
            font-weight: 500;
        }

        .article-banner-category {
            display: inline-block;
            background: rgba(201, 160, 80, 0.18);
            color: var(--color-gold-light);
            font-size: 0.78rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        /* ========== 文章主体容器 ========== */
        .article-main-wrapper {
            background: var(--color-bg-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--color-shadow-md);
            margin-top: -24px;
            margin-bottom: 48px;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .article-featured-image {
            width: 100%;
            max-height: 440px;
            object-fit: cover;
            display: block;
        }

        .article-body-inner {
            padding: 36px 40px 44px;
        }

        .article-meta-row {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 16px;
            font-size: 0.84rem;
            color: var(--color-text-muted);
        }

        .article-meta-row span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .article-meta-row i {
            font-size: 0.75rem;
            opacity: 0.7;
        }

        .article-tag {
            display: inline-block;
            font-size: 0.76rem;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 14px;
            background: #f0f2f8;
            color: var(--color-text-secondary);
            border: 1px solid var(--color-border-light);
        }

        /* ========== 文章正文排版 ========== */
        .article-content-area {
            font-size: 1.04rem;
            line-height: 1.85;
            color: var(--color-text-primary);
            word-break: break-word;
        }

        .article-content-area h2 {
            font-size: 1.4rem;
            margin-top: 32px;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--color-border-light);
            color: var(--color-text-primary);
        }

        .article-content-area h3 {
            font-size: 1.18rem;
            margin-top: 26px;
            margin-bottom: 10px;
            color: var(--color-text-primary);
        }

        .article-content-area p {
            margin-bottom: 16px;
        }

        .article-content-area ul,
        .article-content-area ol {
            margin-bottom: 16px;
            padding-left: 22px;
        }

        .article-content-area li {
            margin-bottom: 6px;
        }

        .article-content-area blockquote {
            border-left: 4px solid var(--color-gold);
            background: #fafbfd;
            padding: 14px 20px;
            margin: 18px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            color: var(--color-text-secondary);
            font-style: italic;
        }

        .article-content-area img {
            border-radius: var(--radius-md);
            margin: 16px auto;
            max-width: 100%;
        }

        .article-content-area table {
            width: 100%;
            border-collapse: collapse;
            margin: 18px 0;
            font-size: 0.92rem;
        }

        .article-content-area table th,
        .article-content-area table td {
            border: 1px solid var(--color-border);
            padding: 10px 14px;
            text-align: left;
        }

        .article-content-area table th {
            background: #f7f8fc;
            font-weight: 600;
            color: var(--color-text-primary);
        }

        .article-content-area a {
            color: var(--color-gold-dark);
            font-weight: 500;
            border-bottom: 1px dotted var(--color-gold);
            transition: all var(--transition-fast);
        }

        .article-content-area a:hover {
            color: var(--color-gold-dark);
            border-bottom-color: var(--color-gold-dark);
        }

        /* ========== 分享区 ========== */
        .article-share-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            padding-top: 20px;
            margin-top: 28px;
            border-top: 1px solid var(--color-border-light);
        }

        .article-share-bar span {
            font-size: 0.84rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            border: 1px solid var(--color-border);
            color: var(--color-text-muted);
            background: #fff;
            transition: all var(--transition-fast);
            font-size: 0.9rem;
        }

        .share-btn:hover {
            background: var(--color-bg-deep);
            color: #fff;
            border-color: var(--color-bg-deep);
            transform: translateY(-2px);
            box-shadow: var(--color-shadow-sm);
        }

        /* ========== 相关推荐 ========== */
        .section-related {
            padding: 48px 0 40px;
            background: var(--color-bg-light);
        }

        .section-related .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-related .section-title::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 22px;
            background: var(--color-gold);
            border-radius: 2px;
        }

        .card-related {
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #fff;
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card-related:hover {
            box-shadow: var(--color-shadow-lg);
            transform: translateY(-3px);
            border-color: var(--color-gold-light);
        }

        .card-related-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card-related-body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-related-body h5 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.4;
            color: var(--color-text-primary);
        }

        .card-related-body p {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-bottom: 8px;
            flex: 1;
        }

        .card-related-body .badge-date {
            font-size: 0.72rem;
            color: var(--color-text-muted);
        }

        /* ========== CTA区块 ========== */
        .cta-section {
            background: var(--color-bg-deep);
            padding: 48px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(201, 160, 80, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section h3 {
            color: #fff;
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: var(--color-text-light);
            margin-bottom: 20px;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .btn-cta-gold {
            display: inline-block;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
            color: #1a1d30 !important;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 12px 28px;
            border-radius: 28px;
            border: none;
            letter-spacing: 0.4px;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 18px rgba(201, 160, 80, 0.35);
        }

        .btn-cta-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 160, 80, 0.50);
            color: #1a1d30 !important;
        }

        .btn-cta-gold:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(201, 160, 80, 0.30);
        }

        /* ========== 页脚 ========== */
        .footer-custom {
            background: var(--color-bg-deep);
            color: var(--color-text-light);
            padding: 44px 0 24px;
            font-size: 0.88rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-brand {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .footer-custom a {
            color: var(--color-text-light);
            transition: color var(--transition-fast);
        }

        .footer-custom a:hover {
            color: var(--color-gold-light);
        }

        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin: 24px 0 16px;
        }

        .footer-bottom {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.78rem;
        }

        /* ========== 未找到内容 ========== */
        .not-found-card {
            text-align: center;
            padding: 60px 20px;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--color-shadow-md);
        }

        .not-found-card .icon-wrap {
            font-size: 3rem;
            color: var(--color-text-muted);
            margin-bottom: 16px;
        }

        .not-found-card h3 {
            margin-bottom: 8px;
            font-size: 1.3rem;
        }

        .not-found-card p {
            color: var(--color-text-muted);
            margin-bottom: 18px;
        }

        .btn-outline-gold {
            display: inline-block;
            border: 1.5px solid var(--color-gold);
            color: var(--color-gold-dark);
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 24px;
            transition: all var(--transition-fast);
            background: transparent;
        }

        .btn-outline-gold:hover {
            background: var(--color-gold);
            color: #fff;
            border-color: var(--color-gold);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 991.98px) {
            .navbar-custom .nav-link {
                padding: 10px 16px !important;
                font-size: 0.9rem;
            }

            .navbar-collapse {
                background: var(--color-bg-deep);
                padding: 10px 0 14px;
                border-radius: 0 0 var(--radius-md) var(--radius-md);
            }

            .article-body-inner {
                padding: 24px 20px 28px;
            }

            .article-content-area {
                font-size: 0.98rem;
                line-height: 1.78;
            }

            .article-featured-image {
                max-height: 280px;
            }

            .article-banner {
                padding: 28px 0 24px;
            }

            .card-related-img {
                height: 150px;
            }
        }

        @media (max-width: 767.98px) {
            .article-body-inner {
                padding: 18px 14px 22px;
            }

            .article-content-area {
                font-size: 0.94rem;
                line-height: 1.72;
            }

            .article-content-area h2 {
                font-size: 1.2rem;
                margin-top: 24px;
            }

            .article-content-area h3 {
                font-size: 1.05rem;
                margin-top: 20px;
            }

            .article-featured-image {
                max-height: 200px;
            }

            .article-main-wrapper {
                margin-top: -16px;
                border-radius: var(--radius-md);
            }

            .article-banner {
                padding: 22px 0 20px;
            }

            .article-meta-row {
                font-size: 0.78rem;
                gap: 10px;
            }

            .share-btn {
                width: 30px;
                height: 30px;
                font-size: 0.78rem;
            }

            .cta-section h3 {
                font-size: 1.2rem;
            }

            .btn-cta-gold {
                padding: 10px 22px;
                font-size: 0.88rem;
            }

            .section-related {
                padding: 32px 0 28px;
            }

            .footer-custom {
                padding: 32px 0 20px;
            }
        }

        @media (max-width: 520px) {
            .navbar-brand {
                font-size: 1.05rem;
            }

            .navbar-brand-icon {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .article-featured-image {
                max-height: 160px;
            }

            .article-body-inner {
                padding: 14px 10px 18px;
            }

            .article-content-area {
                font-size: 0.9rem;
                line-height: 1.68;
            }

            .breadcrumb-custom {
                font-size: 0.74rem;
            }

            .card-related-img {
                height: 130px;
            }

            .card-related-body h5 {
                font-size: 0.86rem;
            }
        }

/* roulang page: category1 */
:root {
            --ds-primary: #0f1923;
            --ds-primary-light: #1a2633;
            --ds-accent: #c9a55c;
            --ds-accent-hover: #dbb96e;
            --ds-accent-soft: rgba(201, 165, 92, 0.10);
            --ds-accent-glow: rgba(201, 165, 92, 0.25);
            --ds-bg-page: #0a0f15;
            --ds-bg-card: #121a24;
            --ds-bg-card-hover: #18212e;
            --ds-bg-surface: #161e2a;
            --ds-text-primary: #e8e4dd;
            --ds-text-secondary: #b0ada6;
            --ds-text-muted: #7a7670;
            --ds-text-accent: #c9a55c;
            --ds-border: #222c38;
            --ds-border-light: #2a3442;
            --ds-radius-sm: 6px;
            --ds-radius: 10px;
            --ds-radius-lg: 16px;
            --ds-radius-xl: 20px;
            --ds-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.25);
            --ds-shadow-card-hover: 0 8px 28px rgba(0, 0, 0, 0.40);
            --ds-shadow-btn: 0 2px 8px rgba(201, 165, 92, 0.18);
            --ds-shadow-btn-hover: 0 4px 18px rgba(201, 165, 92, 0.30);
            --ds-transition: 0.22s ease;
            --ds-font-heading: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --ds-font-body: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--ds-font-body);
            background-color: var(--ds-bg-page);
            color: var(--ds-text-primary);
            line-height: 1.68;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
            color: var(--ds-accent);
            transition: color var(--ds-transition);
        }
        a:hover {
            color: var(--ds-accent-hover);
        }
        a:focus-visible {
            outline: 2px solid var(--ds-accent);
            outline-offset: 2px;
            border-radius: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--ds-accent);
            outline-offset: 2px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--ds-font-heading);
            font-weight: 700;
            line-height: 1.28;
            color: var(--ds-text-primary);
            margin-top: 0;
        }

        h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
        h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
        h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--ds-accent);
            font-weight: 600;
            margin-bottom: 0.6rem;
            padding: 4px 12px;
            background: var(--ds-accent-soft);
            border-radius: 20px;
            border: 1px solid rgba(201, 165, 92, 0.18);
        }

        .text-accent {
            color: var(--ds-accent) !important;
        }
        .text-muted-custom {
            color: var(--ds-text-muted) !important;
        }
        .text-secondary-custom {
            color: var(--ds-text-secondary) !important;
        }

        /* ========== NAVBAR ========== */
        .navbar-custom {
            background: rgba(15, 25, 35, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--ds-border);
            padding: 10px 0;
            transition: background var(--ds-transition), box-shadow var(--ds-transition);
            z-index: 1050;
        }
        .navbar-custom .navbar-brand {
            font-family: var(--ds-font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: #fff !important;
            display: flex;
            align-items: center;
            gap: 9px;
            letter-spacing: 0.02em;
        }
        .navbar-brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--ds-accent);
            color: #0f1923;
            font-weight: 800;
            font-size: 1.1rem;
            border-radius: var(--ds-radius-sm);
            flex-shrink: 0;
        }
        .navbar-custom .nav-link {
            color: var(--ds-text-secondary) !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 16px !important;
            border-radius: 6px;
            transition: color var(--ds-transition), background var(--ds-transition);
            white-space: nowrap;
        }
        .navbar-custom .nav-link:hover {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.04);
        }
        .navbar-custom .nav-link.active {
            color: var(--ds-accent) !important;
            background: var(--ds-accent-soft);
        }
        .navbar-toggler {
            border: 1px solid var(--ds-border-light) !important;
            color: var(--ds-text-primary) !important;
            padding: 6px 10px;
            border-radius: 6px;
            background: transparent;
        }
        .navbar-toggler i {
            font-size: 1.2rem;
            color: var(--ds-text-primary);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.2);
        }

        @media (max-width: 991.98px) {
            .navbar-custom .nav-link {
                padding: 10px 14px !important;
                margin: 2px 0;
            }
            .navbar-custom .navbar-collapse {
                background: rgba(18, 26, 36, 0.97);
                border-radius: var(--ds-radius);
                padding: 12px;
                margin-top: 8px;
                border: 1px solid var(--ds-border);
            }
        }

        /* ========== HERO ========== */
        .hero-category {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            background-position: center 40%;
            overflow: hidden;
        }
        .hero-category::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 15, 21, 0.82) 0%, rgba(15, 25, 35, 0.90) 60%, var(--ds-bg-page) 100%);
            z-index: 1;
        }
        .hero-category::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 40% 35%, rgba(201, 165, 92, 0.08) 0%, transparent 60%);
            z-index: 1;
        }
        .hero-category .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 60px;
        }
        .hero-category .hero-badge {
            display: inline-block;
            background: var(--ds-accent-soft);
            color: var(--ds-accent);
            border: 1px solid rgba(201, 165, 92, 0.22);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            margin-bottom: 18px;
        }
        .hero-category h1 {
            font-size: clamp(2.2rem, 5vw, 3rem);
            font-weight: 800;
            letter-spacing: 0.01em;
            margin-bottom: 14px;
            color: #fff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
        }
        .hero-category .hero-subtitle {
            font-size: 1.05rem;
            color: var(--ds-text-secondary);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 28px;
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--ds-accent);
            color: #0f1923 !important;
            font-weight: 700;
            padding: 12px 26px;
            border-radius: var(--ds-radius);
            border: none;
            font-size: 0.95rem;
            transition: all var(--ds-transition);
            box-shadow: var(--ds-shadow-btn);
            letter-spacing: 0.02em;
        }
        .btn-accent:hover {
            background: var(--ds-accent-hover);
            box-shadow: var(--ds-shadow-btn-hover);
            transform: translateY(-1px);
            color: #0f1923 !important;
        }
        .btn-outline-accent {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: transparent;
            color: var(--ds-accent) !important;
            font-weight: 600;
            padding: 11px 24px;
            border-radius: var(--ds-radius);
            border: 1.5px solid var(--ds-accent);
            font-size: 0.95rem;
            transition: all var(--ds-transition);
            letter-spacing: 0.02em;
        }
        .btn-outline-accent:hover {
            background: var(--ds-accent-soft);
            border-color: var(--ds-accent-hover);
            color: var(--ds-accent-hover) !important;
        }

        /* ========== SECTIONS ========== */
        .section-padding {
            padding: 64px 0;
        }
        @media (min-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
        }
        .section-header {
            text-align: center;
            margin-bottom: 44px;
        }
        .section-header h2 {
            margin-bottom: 8px;
        }
        .section-header p {
            color: var(--ds-text-secondary);
            max-width: 560px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        /* ========== TOURNAMENT CARDS ========== */
        .tournament-card {
            background: var(--ds-bg-card);
            border: 1px solid var(--ds-border);
            border-radius: var(--ds-radius-lg);
            overflow: hidden;
            transition: all var(--ds-transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .tournament-card:hover {
            background: var(--ds-bg-card-hover);
            border-color: var(--ds-border-light);
            box-shadow: var(--ds-shadow-card-hover);
            transform: translateY(-3px);
        }
        .tournament-card .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .tournament-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .tournament-card:hover .card-img-wrap img {
            transform: scale(1.04);
        }
        .tournament-card .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--ds-accent);
            color: #0f1923;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.04em;
            z-index: 2;
        }
        .tournament-card .card-body-custom {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .tournament-card .card-title {
            font-size: 1.08rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--ds-text-primary);
        }
        .tournament-card .card-meta {
            font-size: 0.8rem;
            color: var(--ds-text-muted);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .tournament-card .card-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .tournament-card .card-desc {
            font-size: 0.85rem;
            color: var(--ds-text-secondary);
            line-height: 1.55;
            flex: 1;
        }
        .tournament-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            font-size: 0.88rem;
            margin-top: 12px;
            color: var(--ds-accent);
            transition: gap var(--ds-transition);
        }
        .tournament-card .card-link:hover {
            gap: 9px;
            color: var(--ds-accent-hover);
        }

        /* ========== RANKING TABLE ========== */
        .ranking-panel {
            background: var(--ds-bg-card);
            border: 1px solid var(--ds-border);
            border-radius: var(--ds-radius-lg);
            overflow: hidden;
        }
        .ranking-header {
            background: var(--ds-primary-light);
            padding: 16px 20px;
            border-bottom: 1px solid var(--ds-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .ranking-header h3 {
            margin: 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ranking-header .live-dot {
            width: 9px;
            height: 9px;
            background: #e74c3c;
            border-radius: 50%;
            display: inline-block;
            animation: pulse-dot 1.6s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.35); }
        }
        .ranking-table-wrap {
            overflow-x: auto;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        .ranking-table thead th {
            background: rgba(15, 25, 35, 0.6);
            color: var(--ds-text-muted);
            font-weight: 600;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: 12px 16px;
            border-bottom: 2px solid var(--ds-border);
            white-space: nowrap;
        }
        .ranking-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--ds-border);
            font-size: 0.9rem;
            color: var(--ds-text-primary);
            white-space: nowrap;
        }
        .ranking-table tbody tr {
            transition: background var(--ds-transition);
        }
        .ranking-table tbody tr:hover {
            background: rgba(201, 165, 92, 0.04);
        }
        .rank-num {
            font-weight: 800;
            font-size: 1rem;
            color: var(--ds-accent);
            min-width: 32px;
            display: inline-block;
            text-align: center;
        }
        .rank-num.top3 {
            color: #e8c560;
            font-size: 1.15rem;
        }
        .team-name-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .pts-highlight {
            font-weight: 700;
            color: var(--ds-accent);
        }
        .form-indicator {
            display: inline-flex;
            gap: 3px;
        }
        .form-indicator .fi-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            display: inline-block;
        }
        .fi-dot.win { background: #2ecc71; }
        .fi-dot.draw { background: #f39c12; }
        .fi-dot.loss { background: #e74c3c; }

        /* ========== STAGE PROGRESS ========== */
        .stage-track {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            position: relative;
        }
        .stage-item {
            flex: 1;
            min-width: 100px;
            text-align: center;
            position: relative;
            padding: 0 8px 28px;
        }
        .stage-item .stage-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--ds-bg-card);
            border: 2px solid var(--ds-border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--ds-text-muted);
            position: relative;
            z-index: 2;
            transition: all var(--ds-transition);
        }
        .stage-item.completed .stage-circle {
            background: var(--ds-accent);
            border-color: var(--ds-accent);
            color: #0f1923;
        }
        .stage-item.current .stage-circle {
            border-color: var(--ds-accent);
            color: var(--ds-accent);
            box-shadow: 0 0 0 6px var(--ds-accent-soft);
            animation: pulse-stage 2s infinite;
        }
        @keyframes pulse-stage {
            0%, 100% { box-shadow: 0 0 0 4px var(--ds-accent-soft); }
            50% { box-shadow: 0 0 0 12px rgba(201, 165, 92, 0.04); }
        }
        .stage-item .stage-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--ds-text-secondary);
            margin-top: 2px;
        }
        .stage-item.current .stage-label {
            color: var(--ds-accent);
        }
        .stage-connector {
            position: absolute;
            top: 22px;
            left: calc(50% + 22px);
            right: calc(-50% + 22px);
            height: 2px;
            background: var(--ds-border);
            z-index: 1;
        }
        .stage-item:last-child .stage-connector {
            display: none;
        }
        .stage-item.completed .stage-connector {
            background: var(--ds-accent);
        }

        @media (max-width: 767.98px) {
            .stage-track {
                flex-direction: column;
                gap: 0;
            }
            .stage-item {
                flex: none;
                display: flex;
                align-items: center;
                gap: 14px;
                text-align: left;
                padding: 0 0 18px 0;
                min-width: auto;
            }
            .stage-item .stage-circle {
                margin: 0;
                flex-shrink: 0;
            }
            .stage-connector {
                display: none;
            }
            .stage-item {
                border-left: 2px solid var(--ds-border);
                padding-left: 20px;
                margin-left: 21px;
                position: relative;
            }
            .stage-item.completed {
                border-left-color: var(--ds-accent);
            }
            .stage-item.current {
                border-left-color: var(--ds-accent);
            }
            .stage-item .stage-circle {
                position: absolute;
                left: -23px;
                top: 0;
            }
        }

        /* ========== STATS COUNTERS ========== */
        .stat-card {
            background: var(--ds-bg-card);
            border: 1px solid var(--ds-border);
            border-radius: var(--ds-radius-lg);
            padding: 28px 22px;
            text-align: center;
            transition: all var(--ds-transition);
            height: 100%;
        }
        .stat-card:hover {
            border-color: var(--ds-border-light);
            box-shadow: var(--ds-shadow-card-hover);
            transform: translateY(-2px);
        }
        .stat-card .stat-icon {
            font-size: 1.8rem;
            color: var(--ds-accent);
            margin-bottom: 10px;
        }
        .stat-card .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.02em;
            margin-bottom: 4px;
        }
        .stat-card .stat-label {
            font-size: 0.82rem;
            color: var(--ds-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        /* ========== FAQ ========== */
        .faq-block .accordion-item {
            background: var(--ds-bg-card);
            border: 1px solid var(--ds-border);
            border-radius: var(--ds-radius) !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-block .accordion-button {
            background: transparent;
            color: var(--ds-text-primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 16px 20px;
            box-shadow: none !important;
            border-radius: var(--ds-radius) !important;
            transition: background var(--ds-transition);
        }
        .faq-block .accordion-button:not(.collapsed) {
            background: var(--ds-accent-soft);
            color: var(--ds-accent);
            border-bottom: 1px solid var(--ds-border);
        }
        .faq-block .accordion-button::after {
            filter: brightness(0) invert(0.7);
        }
        .faq-block .accordion-body {
            padding: 16px 20px 20px;
            color: var(--ds-text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            background: var(--ds-bg-card);
        }
        .faq-block .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15) !important;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(160deg, var(--ds-primary) 0%, var(--ds-primary-light) 50%, #1a2435 100%);
            border: 1px solid var(--ds-border);
            border-radius: var(--ds-radius-xl);
            padding: 48px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(201, 165, 92, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section h2 {
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
        }
        .cta-section p {
            position: relative;
            z-index: 1;
            color: var(--ds-text-secondary);
            max-width: 500px;
            margin: 0 auto 22px;
        }
        .cta-section .btn-accent {
            position: relative;
            z-index: 1;
            font-size: 1rem;
            padding: 14px 32px;
        }

        /* ========== FOOTER ========== */
        .footer-custom {
            background: var(--ds-primary);
            border-top: 1px solid var(--ds-border);
            padding: 44px 0 20px;
            color: var(--ds-text-secondary);
            font-size: 0.88rem;
        }
        .footer-custom .footer-brand {
            font-family: var(--ds-font-heading);
            font-weight: 700;
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 8px;
        }
        .footer-custom a {
            color: var(--ds-text-secondary);
            transition: color var(--ds-transition);
        }
        .footer-custom a:hover {
            color: var(--ds-accent);
        }
        .footer-custom .footer-divider {
            border-top: 1px solid var(--ds-border);
            margin: 24px 0 16px;
        }
        .footer-custom .footer-bottom {
            font-size: 0.78rem;
            color: var(--ds-text-muted);
        }

        /* ========== RESPONSIVE FINE-TUNING ========== */
        @media (max-width: 767.98px) {
            .hero-category {
                min-height: 400px;
            }
            .hero-category .hero-content {
                padding: 50px 0 40px;
            }
            .tournament-card .card-img-wrap {
                aspect-ratio: 16 / 9;
            }
            .stat-card .stat-number {
                font-size: 1.6rem;
            }
            .cta-section {
                padding: 34px 18px;
                border-radius: var(--ds-radius-lg);
            }
            .section-padding {
                padding: 48px 0;
            }
        }
        @media (max-width: 520px) {
            .hero-category h1 {
                font-size: 1.7rem;
            }
            .hero-category .hero-subtitle {
                font-size: 0.9rem;
            }
            .btn-accent,
            .btn-outline-accent {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
            .ranking-table thead th,
            .ranking-table tbody td {
                padding: 10px 10px;
                font-size: 0.75rem;
            }
        }
