/* roulang page: index */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 14px;
            padding-bottom: 14px;
            gap: 20px;
        }

        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
        }

        .masthead-logo:hover {
            color: var(--accent-gold);
        }

        .masthead-logo .logo-sub {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
        }

        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 16px;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }

        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }

        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 82vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.72) 0%, rgba(12, 14, 20, 0.82) 40%, rgba(12, 14, 20, 0.92) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 80px 0 60px;
        }

        .hero-content {
            max-width: 720px;
        }

        .hero-kicker {
            display: inline-block;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.08em;
            padding: 6px 16px;
            border-radius: 9999px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-warm);
            margin-bottom: 16px;
            letter-spacing: 0.01em;
        }

        .hero-title .highlight {
            color: var(--accent-gold);
            display: block;
            font-size: 1.35em;
            margin-top: 4px;
        }

        .hero-subtitle {
            font-size: 17px;
            color: #C9C4BD;
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 620px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent-gold);
            color: #0C0E14;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            border: 2px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition-base);
            text-align: center;
            line-height: 1.4;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            border-color: var(--accent-gold-dark);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: translateY(1px);
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--text-warm);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            border: 2px solid rgba(212, 162, 78, 0.55);
            cursor: pointer;
            transition: var(--transition-base);
            text-align: center;
            line-height: 1.4;
        }

        .btn-secondary:hover {
            border-color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.1);
            transform: translateY(-1px);
        }

        .btn-secondary:active {
            transform: translateY(1px);
        }

        .btn-secondary:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .hero-progress {
            background: rgba(12, 14, 20, 0.55);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 16px 20px;
            max-width: 520px;
            backdrop-filter: blur(8px);
        }

        .hero-progress-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-progress-label span:last-child {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background-color: #1E2330;
            border-radius: 9999px;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            width: 68%;
            background: linear-gradient(90deg, var(--accent-gold), #E8C878);
            border-radius: 9999px;
            transition: width 0.8s ease;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 32px;
            max-width: 600px;
        }

        .hero-stat {
            border-left: 2px solid var(--accent-gold);
            padding-left: 14px;
        }

        .hero-stat .stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .hero-stat .stat-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 2px;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 48px;
            }
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
            .hero-stat .stat-number {
                font-size: 34px;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 54px;
            }
        }

        /* Section Common */
        .section {
            padding: 72px 0;
        }

        .section-alt {
            background-color: var(--bg-secondary);
        }

        .section-darker {
            background-color: var(--bg-tertiary);
        }

        .section-header {
            margin-bottom: 40px;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-warm);
            margin-bottom: 12px;
            max-width: 680px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            margin-top: 12px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 700px;
        }

        /* Pain section */
        .pain-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .pain-card {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 26px 22px;
            transition: var(--transition-base);
            position: relative;
        }

        .pain-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.5);
        }

        .pain-card .pain-index {
            font-size: 40px;
            font-weight: 800;
            color: rgba(212, 162, 78, 0.35);
            line-height: 1;
            margin-bottom: 12px;
        }

        .pain-card h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 8px;
        }

        .pain-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
        }

        @media (min-width: 768px) {
            .pain-grid {
                grid-template-columns: 2fr 3fr 3fr;
            }
        }

        /* Solution section */
        .solution-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .solution-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: rgba(22, 26, 36, 0.6);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            border: 1px solid rgba(212, 162, 78, 0.15);
            transition: var(--transition-base);
        }

        .solution-step:hover {
            border-color: rgba(212, 162, 78, 0.45);
            background: rgba(22, 26, 36, 0.9);
        }

        .solution-step .step-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
            min-width: 52px;
            flex-shrink: 0;
        }

        .solution-step h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 6px;
        }

        .solution-step p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
        }

        @media (min-width: 1024px) {
            .solution-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        /* Results section */
        .results-highlight {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .result-stat {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            text-align: center;
        }

        .result-stat .big-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .result-stat .unit-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 4px;
        }

        .spotlight-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .spotlight-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            min-height: 180px;
            background-size: cover;
            background-position: center;
            transition: var(--transition-base);
        }

        .spotlight-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .spotlight-card .spotlight-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(12, 14, 20, 0.15) 0%, rgba(12, 14, 20, 0.85) 70%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
        }

        .spotlight-card .spotlight-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 4px;
        }

        .spotlight-card .spotlight-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .spotlight-card .spotlight-tag {
            font-size: 12px;
            font-weight: 500;
            color: var(--accent-gold);
            background: rgba(12, 14, 20, 0.7);
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            border: 1px solid rgba(212, 162, 78, 0.3);
        }

        @media (min-width: 768px) {
            .results-highlight {
                grid-template-columns: repeat(4, 1fr);
            }
            .result-stat .big-number {
                font-size: 44px;
            }
            .spotlight-cards {
                grid-template-columns: 2fr 1fr 1fr;
            }
            .spotlight-card:first-child {
                min-height: 220px;
            }
        }

        /* Calendar section */
        .calendar-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .calendar-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 162, 78, 0.15);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            transition: var(--transition-base);
        }

        .calendar-item:hover {
            border-color: rgba(212, 162, 78, 0.45);
        }

        .calendar-date {
            text-align: center;
            min-width: 56px;
            flex-shrink: 0;
        }

        .calendar-date .date-day {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .calendar-date .date-month {
            font-size: 12px;
            color: var(--text-gray);
        }

        .calendar-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 2px;
        }

        .calendar-info p {
            font-size: 13px;
            color: var(--text-gray);
        }

        .calendar-status {
            margin-left: auto;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 9999px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .status-live {
            background: rgba(239, 68, 68, 0.15);
            color: #EF4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .status-upcoming {
            background: rgba(46, 212, 196, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(46, 212, 196, 0.25);
        }

        .status-finished {
            background: rgba(168, 164, 160, 0.12);
            color: var(--text-gray);
            border: 1px solid rgba(168, 164, 160, 0.2);
        }

        /* News section */
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .news-item {
            display: flex;
            gap: 16px;
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 162, 78, 0.15);
            border-radius: var(--radius-card);
            padding: 16px;
            transition: var(--transition-base);
            align-items: flex-start;
        }

        .news-item:hover {
            border-color: rgba(212, 162, 78, 0.45);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card-hover);
        }

        .news-item .news-thumb {
            width: 110px;
            height: 72px;
            border-radius: var(--radius-badge);
            object-fit: cover;
            flex-shrink: 0;
        }

        .news-item .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-item .news-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            color: var(--accent-orange);
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.25);
            padding: 2px 8px;
            border-radius: var(--radius-badge);
            margin-bottom: 4px;
        }

        .news-item h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item .news-summary {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .news-item .news-meta {
            font-size: 12px;
            color: var(--text-gray);
            display: flex;
            gap: 12px;
        }

        @media (min-width: 768px) {
            .news-list {
                grid-template-columns: 1fr 1fr;
            }
            .news-item:first-child {
                grid-column: span 2;
            }
            .news-item:first-child .news-thumb {
                width: 180px;
                height: 110px;
            }
        }

        /* Testimonial section */
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .testimonial-card {
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            padding: 22px;
            transition: var(--transition-base);
            position: relative;
        }

        .testimonial-card:hover {
            border-color: rgba(212, 162, 78, 0.45);
            transform: translateY(-2px);
        }

        .testimonial-card .quote-mark {
            font-size: 42px;
            color: rgba(212, 162, 78, 0.4);
            line-height: 1;
            margin-bottom: 8px;
            font-weight: 800;
        }

        .testimonial-card blockquote {
            font-size: 15px;
            color: #C9C4BD;
            line-height: 1.75;
            margin-bottom: 12px;
            font-style: normal;
        }

        .testimonial-card .testimonial-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
        }

        .testimonial-card .testimonial-role {
            font-size: 12px;
            color: var(--text-gray);
            margin-top: 2px;
        }

        @media (min-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr 1fr;
            }
            .testimonial-card:first-child {
                grid-column: span 2;
            }
        }

        @media (min-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .testimonial-card:first-child {
                grid-column: span 3;
            }
        }

        /* Brand / Partner section */
        .brand-intro {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            margin-bottom: 28px;
        }

        .brand-intro h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .brand-intro p {
            font-size: 16px;
            color: #C9C4BD;
            line-height: 1.85;
        }

        .partner-tags {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .partner-tag {
            background: var(--bg-tertiary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            padding: 18px;
            transition: var(--transition-base);
        }

        .partner-tag:hover {
            border-color: rgba(212, 162, 78, 0.45);
            transform: translateY(-2px);
        }

        .partner-tag h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 4px;
        }

        .partner-tag p {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.65;
        }

        @media (min-width: 768px) {
            .partner-tags {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
        }

        .faq-item {
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-base);
            background: var(--bg-tertiary);
        }

        .faq-item:hover {
            border-color: rgba(212, 162, 78, 0.4);
        }

        .faq-item details summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            list-style: none;
            transition: var(--transition-base);
        }

        .faq-item details summary::-webkit-details-marker {
            display: none;
        }

        .faq-item details summary .faq-icon {
            font-size: 20px;
            color: var(--accent-gold);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item details[open] summary .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item details .faq-answer {
            padding: 0 20px 18px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
        }

        /* CTA section */
        .cta-section {
            background-color: var(--bg-secondary);
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.85) 0%, rgba(12, 14, 20, 0.92) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
        }

        .cta-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            align-items: center;
        }

        .cta-title {
            font-size: 30px;
            font-weight: 800;
            color: var(--text-warm);
            line-height: 1.25;
            margin-bottom: 12px;
        }

        .cta-desc {
            font-size: 16px;
            color: #C9C4BD;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .cta-form {
            background: rgba(22, 26, 36, 0.85);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 24px;
        }

        .cta-form label {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 6px;
        }

        .cta-form input {
            width: 100%;
            background: #1E2330;
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            padding: 11px 14px;
            font-size: 15px;
            color: var(--text-warm);
            transition: var(--transition-base);
            margin-bottom: 14px;
        }

        .cta-form input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.2);
        }

        .cta-form input::placeholder {
            color: #6B6F7A;
        }

        .cta-form .btn-primary {
            width: 100%;
        }

        @media (min-width: 1024px) {
            .cta-inner {
                grid-template-columns: 1fr 420px;
                gap: 48px;
            }
            .cta-title {
                font-size: 38px;
            }
        }

        /* Footer */
        .footer {
            background-color: #0A0B10;
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 32px;
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 12px;
            letter-spacing: 0.06em;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 5px 0;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.15);
            padding-top: 20px;
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .section {
                padding: 48px 0;
            }
            .cta-section {
                padding: 48px 0;
            }
        }

/* roulang page: category2 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }
        @media (max-width: 768px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
        }
        .masthead-logo:hover {
            color: var(--accent-gold);
        }
        .masthead-logo .logo-sub {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
        }
        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 14px;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }
        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }
        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }
        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }
        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }
        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }
        .mobile-menu a.active {
            color: var(--accent-gold);
        }
        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }
        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .separator {
            color: var(--border-gold);
        }
        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 600;
        }
        /* Page Hero */
        .page-hero {
            position: relative;
            padding: 60px 0 50px;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.88) 0%, rgba(12, 14, 20, 0.94) 70%, rgba(12, 14, 20, 1) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid var(--border-gold);
        }
        .page-hero h1 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-warm);
            margin-bottom: 14px;
            letter-spacing: 0.01em;
        }
        .page-hero .hero-sub {
            font-size: 17px;
            color: var(--text-gray);
            max-width: 680px;
            line-height: 1.75;
        }
        @media (max-width: 768px) {
            .page-hero {
                padding: 40px 0 35px;
            }
            .page-hero h1 {
                font-size: 28px;
            }
        }
        /* Section Title */
        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.01em;
        }
        .section-title::before {
            content: '';
            display: inline-block;
            width: 3px;
            height: 24px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            flex-shrink: 0;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 28px;
            max-width: 720px;
        }
        /* Ranking Bar Chart */
        .ranking-chart {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .ranking-row {
            display: flex;
            align-items: center;
            gap: 14px;
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            padding: 14px 18px;
            transition: var(--transition-base);
        }
        .ranking-row:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card-hover);
        }
        .ranking-rank {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            flex-shrink: 0;
        }
        .ranking-rank.top1 {
            background-color: var(--accent-gold);
            color: var(--bg-primary);
            border-color: var(--accent-gold);
        }
        .ranking-rank.top2 {
            background-color: rgba(212, 162, 78, 0.3);
            color: var(--accent-gold);
            border-color: var(--accent-gold);
        }
        .ranking-rank.top3 {
            background-color: rgba(212, 162, 78, 0.15);
            color: var(--accent-gold);
            border-color: var(--border-gold);
        }
        .ranking-name {
            width: 90px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-warm);
            flex-shrink: 0;
        }
        .ranking-bar-wrap {
            flex: 1;
            height: 12px;
            background-color: var(--bg-tertiary);
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }
        .ranking-bar {
            height: 100%;
            border-radius: 6px;
            background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold));
            transition: width 0.6s ease;
        }
        .ranking-score {
            font-size: 15px;
            font-weight: 700;
            color: var(--accent-gold);
            flex-shrink: 0;
            width: 48px;
            text-align: right;
        }
        @media (max-width: 640px) {
            .ranking-row {
                flex-wrap: wrap;
                gap: 8px;
                padding: 12px;
            }
            .ranking-name {
                width: auto;
                flex: 1;
            }
            .ranking-bar-wrap {
                flex-basis: 100%;
                order: 3;
            }
        }
        /* Team Cards Grid */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }
        @media (min-width: 640px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-auto-flow: dense;
            }
            .team-card.featured {
                grid-column: span 2;
            }
            .team-card.tall {
                grid-row: span 2;
            }
        }
        .team-card {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
        }
        .team-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .team-card-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background-color: var(--bg-tertiary);
        }
        .team-card.featured .team-card-image {
            aspect-ratio: 21/9;
        }
        .team-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .team-card:hover .team-card-image img {
            transform: scale(1.05);
        }
        .team-card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(12, 14, 20, 0.72) 100%);
        }
        .team-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: rgba(12, 14, 20, 0.82);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            z-index: 2;
        }
        .team-card-body {
            padding: 20px 22px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .team-card-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 4px;
        }
        .team-card-tagline {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 14px;
        }
        .team-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }
        .team-meta-chip {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-gray);
            background-color: var(--bg-tertiary);
            border: 1px solid rgba(212, 162, 78, 0.15);
            padding: 4px 10px;
            border-radius: var(--radius-badge);
        }
        .winrate-bar-wrap {
            height: 8px;
            background-color: var(--bg-tertiary);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .winrate-bar {
            height: 100%;
            border-radius: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
        }
        .winrate-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 12px;
        }
        .winrate-label span:last-child {
            color: var(--accent-cyan);
            font-weight: 600;
        }
        .recent-record {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .record-chip {
            width: 28px;
            height: 28px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .record-chip.win {
            background-color: rgba(46, 212, 196, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(46, 212, 196, 0.4);
        }
        .record-chip.loss {
            background-color: rgba(239, 68, 68, 0.12);
            color: var(--accent-red);
            border: 1px solid rgba(239, 68, 68, 0.35);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent-gold);
            color: var(--bg-primary);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            text-align: center;
        }
        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            transform: translateY(-1px);
        }
        .btn-primary:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--accent-gold);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-gold);
            cursor: pointer;
            transition: var(--transition-base);
            text-align: center;
        }
        .btn-outline:hover {
            background-color: rgba(212, 162, 78, 0.1);
            border-color: var(--accent-gold);
        }
        .btn-outline:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }
        .btn-outline:active {
            transform: translateY(1px);
        }
        /* Stats Section */
        .stats-band {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 28px 24px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .stat-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 4px;
        }
        /* CTA Section */
        .cta-section {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 28px;
        }
        .cta-section-text {
            flex: 1;
            min-width: 260px;
        }
        .cta-section-text h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 8px;
        }
        .cta-section-text p {
            font-size: 15px;
            color: var(--text-gray);
        }
        .cta-section-form {
            flex: 1;
            min-width: 260px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .cta-section-form input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            color: var(--text-warm);
            font-size: 14px;
            padding: 12px 16px;
            transition: var(--transition-base);
            width: 100%;
        }
        .cta-section-form input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.2);
        }
        .cta-section-form input::placeholder {
            color: var(--text-gray);
        }
        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
        }
        .faq-item:hover {
            border-color: var(--border-gold);
        }
        .faq-item.open {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card-hover);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            user-select: none;
            gap: 12px;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
        }
        .faq-question-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            flex: 1;
        }
        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.1);
            border: 1px solid var(--border-gold);
            flex-shrink: 0;
            transition: var(--transition-base);
        }
        .faq-item.open .faq-icon {
            background-color: var(--accent-gold);
            color: var(--bg-primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 18px;
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
        }
        /* Footer */
        .footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 28px;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            max-width: 360px;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 12px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 8px;
            transition: var(--transition-base);
        }
        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.15);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 13px;
            color: var(--text-gray);
            align-items: center;
            justify-content: space-between;
        }
        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }
        .footer-bottom a:hover {
            color: var(--accent-gold);
        }
        @media (max-width: 640px) {
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        /* MISC */
        .badge-gold {
            display: inline-block;
            background-color: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
        }
        .badge-cyan {
            display: inline-block;
            background-color: rgba(46, 212, 196, 0.12);
            border: 1px solid rgba(46, 212, 196, 0.4);
            color: var(--accent-cyan);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
        }
        .badge-red {
            display: inline-block;
            background-color: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.35);
            color: var(--accent-red);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
        }
        .divider-gold {
            height: 1px;
            background-color: var(--border-gold);
            margin: 32px 0;
        }

/* roulang page: category1 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .masthead-logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .masthead-logo:hover {
            color: var(--accent-gold);
        }

        .masthead-logo .logo-sub {
            display: block;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .nav-desktop .nav-link {
            position: relative;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 12px;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }

        .nav-desktop .nav-divider {
            width: 1px;
            height: 18px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
            flex-shrink: 0;
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }

        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
            .nav-desktop .nav-link {
                font-size: 15px;
                padding: 8px 16px;
            }
            .nav-desktop .nav-link.active::after {
                left: 16px;
                right: 16px;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--accent-gold);
            color: #0C0E14;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            border-color: var(--accent-gold-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.2);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-primary:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: transparent;
            color: var(--accent-gold);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background-color: rgba(212, 162, 78, 0.1);
            transform: translateY(-1px);
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        .btn-secondary:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: transparent;
            color: var(--text-warm);
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid rgba(245, 240, 232, 0.4);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-ghost:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn-ghost:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        /* Cards */
        .card-base {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }

        .card-base:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
            border-color: rgba(212, 162, 78, 0.45);
        }

        /* Badge */
        .badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .badge-gold {
            background-color: rgba(212, 162, 78, 0.15);
            color: var(--accent-gold);
            border: 1px solid rgba(212, 162, 78, 0.35);
        }

        .badge-cyan {
            background-color: rgba(46, 212, 196, 0.12);
            color: var(--accent-cyan);
            border: 1px solid rgba(46, 212, 196, 0.3);
        }

        .badge-gray {
            background-color: rgba(168, 164, 160, 0.12);
            color: var(--text-gray);
            border: 1px solid rgba(168, 164, 160, 0.25);
        }

        .badge-red {
            background-color: rgba(239, 68, 68, 0.15);
            color: var(--accent-red);
            border: 1px solid rgba(239, 68, 68, 0.35);
            animation: pulse-badge 1.5s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* Section spacing */
        .section-pad {
            padding: 60px 0;
        }

        @media (min-width: 768px) {
            .section-pad {
                padding: 80px 0;
            }
        }

        @media (min-width: 1024px) {
            .section-pad {
                padding: 100px 0;
            }
        }

        /* Section headings */
        .section-kicker {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-warm);
            margin-bottom: 24px;
        }

        .section-title::before {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            margin-bottom: 14px;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 28px;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 32px;
            }
        }

        /* Form inputs */
        .form-input {
            width: 100%;
            background-color: rgba(12, 14, 20, 0.8);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            color: var(--text-warm);
            transition: var(--transition-base);
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(168, 164, 160, 0.6);
        }

        .form-input:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.15);
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray);
            margin-bottom: 6px;
        }

        /* Hero specific */
        .hero-section {
            position: relative;
            background-color: var(--bg-primary);
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.85) 0%, rgba(12, 14, 20, 0.9) 50%, rgba(12, 14, 20, 0.97) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 60px 0 70px;
            border-bottom: 1px solid var(--border-gold);
        }

        .hero-title {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-warm);
            letter-spacing: 0.01em;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 32rem;
            margin-bottom: 20px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 28px;
            margin-bottom: 24px;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .hero-stat-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.1;
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--text-gray);
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 36px;
                margin-bottom: 20px;
            }
            .hero-subtitle {
                font-size: 17px;
                margin-bottom: 24px;
            }
            .hero-stat-number {
                font-size: 34px;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 44px;
            }
            .hero-stat-number {
                font-size: 40px;
            }
        }

        /* Hero manual card */
        .hero-manual-card {
            background-color: rgba(17, 20, 32, 0.95);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
            overflow: hidden;
        }

        .hero-manual-cover {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-bottom: 1px solid var(--border-gold);
        }

        .hero-manual-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-manual-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(12, 14, 20, 0.85) 0%, rgba(12, 14, 20, 0.2) 60%, transparent 100%);
        }

        .hero-manual-body {
            padding: 18px 20px 20px;
        }

        .hero-manual-toc {
            list-style: none;
            padding: 0;
            margin: 0 0 16px;
        }

        .hero-manual-toc li {
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-size: 13px;
            color: var(--text-gray);
            padding: 4px 0;
            border-bottom: 1px dashed rgba(212, 162, 78, 0.15);
        }

        .hero-manual-toc li:last-child {
            border-bottom: none;
        }

        .hero-manual-toc .toc-num {
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 12px;
            min-width: 22px;
        }

        /* Schedule list */
        .schedule-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 16px;
            transition: var(--transition-base);
        }

        .schedule-row:hover {
            border-color: rgba(212, 162, 78, 0.5);
            box-shadow: var(--shadow-card-hover);
        }

        .schedule-time {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .schedule-date {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.1;
        }

        .schedule-time-text {
            font-size: 13px;
            color: var(--text-gray);
        }

        .schedule-matchup {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 8px 0;
        }

        .schedule-team {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-warm);
            flex: 1;
        }

        .schedule-team:last-of-type {
            text-align: right;
        }

        .schedule-vs {
            font-size: 14px;
            font-weight: 800;
            color: var(--accent-gold);
            flex-shrink: 0;
            padding: 0 8px;
        }

        .schedule-status {
            display: flex;
            justify-content: flex-start;
        }

        @media (min-width: 768px) {
            .schedule-row {
                grid-template-columns: 160px 1fr 120px;
                align-items: center;
                gap: 16px;
                padding: 18px 20px;
            }
            .schedule-status {
                justify-content: flex-end;
            }
            .schedule-date {
                font-size: 24px;
            }
        }

        /* Focus match */
        .focus-match-card {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .focus-match-img {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-bottom: 1px solid var(--border-gold);
        }

        .focus-match-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .focus-match-card:hover .focus-match-img img {
            transform: scale(1.03);
        }

        .focus-match-body {
            padding: 20px;
        }

        .focus-match-teams {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .focus-match-team {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-warm);
        }

        .focus-match-vs {
            font-size: 15px;
            font-weight: 800;
            color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .focus-match-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .focus-stat {
            background-color: rgba(12, 14, 20, 0.5);
            border: 1px solid rgba(212, 162, 78, 0.15);
            border-radius: var(--radius-card);
            padding: 10px 12px;
            text-align: center;
        }

        .focus-stat-value {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .focus-stat-label {
            font-size: 12px;
            color: var(--text-gray);
            margin-top: 2px;
        }

        /* Data panel */
        .data-panel {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 20px;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .data-item {
            text-align: center;
            padding: 14px 10px;
            background-color: rgba(12, 14, 20, 0.4);
            border-radius: var(--radius-card);
            border: 1px solid rgba(212, 162, 78, 0.12);
        }

        .data-item-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.15;
        }

        .data-item-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 4px;
        }

        @media (min-width: 768px) {
            .data-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .data-item-value {
                font-size: 34px;
            }
            .focus-stat-value {
                font-size: 24px;
            }
        }

        @media (min-width: 1024px) {
            .data-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 16px;
            }
            .data-item-value {
                font-size: 36px;
            }
        }

        /* Process steps */
        .process-step {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
        }

        .process-step:last-child {
            border-bottom: none;
        }

        .process-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
            flex-shrink: 0;
            min-width: 48px;
        }

        .process-body h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 4px;
        }

        .process-body p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
        }

        /* FAQ */
        .faq-item {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-item:hover {
            border-color: rgba(212, 162, 78, 0.45);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            transition: var(--transition-base);
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: -2px;
        }

        .faq-icon {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-gold);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 18px;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 18px 16px;
        }

        .faq-item.open {
            background-color: rgba(17, 20, 32, 0.9);
            border-color: rgba(212, 162, 78, 0.5);
        }

        /* CTA section */
        .cta-section {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 60px 0;
        }

        .cta-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-warm);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .cta-desc {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 28rem;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .cta-title {
                font-size: 32px;
            }
            .cta-section {
                padding: 80px 0;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--bg-primary);
            border-top: 1px solid var(--border-gold);
            padding: 50px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 28px;
        }

        .footer-brand h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 24rem;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 10px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 4px 0;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.15);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            font-size: 12px;
            color: var(--text-gray);
        }

        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 32px;
            }
            .footer-brand h3 {
                font-size: 24px;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb .sep {
            color: rgba(212, 162, 78, 0.5);
        }

        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Misc */
        .divider-gold {
            height: 1px;
            background-color: var(--border-gold);
            border: none;
            margin: 0;
        }

        .text-gold {
            color: var(--accent-gold);
        }

        .text-cyan {
            color: var(--accent-cyan);
        }

        .bg-secondary {
            background-color: var(--bg-secondary);
        }

        .bg-tertiary {
            background-color: var(--bg-tertiary);
        }

        @media (max-width: 767px) {
            .hero-manual-card {
                margin-top: 24px;
            }
            .hero-stats {
                gap: 14px 20px;
            }
            .hero-stat-number {
                font-size: 24px;
            }
            .section-pad {
                padding: 48px 0;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 640px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
            transition: var(--transition-base);
        }

        .masthead-logo:hover {
            color: var(--accent-gold);
        }

        .masthead-logo .logo-sub {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
        }

        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 16px;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }

        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }

        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 13px;
            color: var(--text-gray);
            padding: 20px 0 12px;
        }

        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb .sep {
            color: var(--border-gold);
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Hero Section - 左文右图 5:7 斜向错位 */
        .hero-page {
            position: relative;
            padding: 48px 0 64px;
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            overflow: hidden;
        }

        .hero-page::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -180px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(212, 162, 78, 0.08) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .hero-page-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .hero-page-grid {
                grid-template-columns: 5fr 7fr;
                gap: 40px;
            }
        }

        .hero-page-text .hero-kicker {
            display: inline-block;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .hero-page-text h1 {
            font-size: 34px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.01em;
            color: var(--text-warm);
            margin-bottom: 16px;
        }

        .hero-page-text h1 .gold-text {
            color: var(--accent-gold);
        }

        .hero-page-text .hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            max-width: 560px;
            margin-bottom: 20px;
        }

        .hero-kpi-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
        }

        .hero-kpi {
            display: flex;
            flex-direction: column;
        }

        .hero-kpi .kpi-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.1;
        }

        .hero-kpi .kpi-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 4px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-base);
            border: 1px solid transparent;
            line-height: 1.4;
        }

        .btn:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-gold {
            background-color: var(--accent-gold);
            color: var(--bg-primary);
            border-color: var(--accent-gold);
        }

        .btn-gold:hover {
            background-color: var(--accent-gold-dark);
            border-color: var(--accent-gold-dark);
            transform: translateY(-1px);
        }

        .btn-gold:active {
            transform: translateY(1px);
            box-shadow: none;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--accent-gold);
            border-color: var(--border-gold);
        }

        .btn-outline:hover {
            background-color: rgba(212, 162, 78, 0.1);
            border-color: var(--accent-gold);
        }

        .hero-page-visual {
            position: relative;
            min-height: 300px;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-card);
            transform: rotate(-1.5deg);
            transition: var(--transition-base);
        }

        .hero-page-visual:hover {
            transform: rotate(0deg);
            box-shadow: var(--shadow-card-hover);
        }

        .hero-page-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 300px;
        }

        .hero-page-visual::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, rgba(12, 14, 20, 0.85) 0%, transparent 100%);
            pointer-events: none;
        }

        .hero-visual-tag {
            position: absolute;
            bottom: 16px;
            left: 16px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-warm);
            font-weight: 500;
        }

        .hero-visual-tag .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: var(--accent-cyan);
            animation: pulse-dot 1.8s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(46, 212, 196, 0.4);
            }
            50% {
                opacity: 0.6;
                box-shadow: 0 0 0 6px rgba(46, 212, 196, 0);
            }
        }

        @media (min-width: 768px) {
            .hero-page-text h1 {
                font-size: 40px;
            }
            .hero-page-visual {
                min-height: 360px;
            }
            .hero-page-visual img {
                min-height: 360px;
            }
        }

        @media (min-width: 1024px) {
            .hero-page-text h1 {
                font-size: 46px;
            }
            .hero-kpi .kpi-num {
                font-size: 32px;
            }
        }

        /* Section common */
        .section {
            padding: 64px 0;
        }

        .section-alt {
            background-color: var(--bg-secondary);
        }

        .section-title-wrap {
            margin-bottom: 32px;
        }

        .section-title-wrap h2 {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-warm);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title-wrap h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 24px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .section-title-wrap p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 680px;
        }

        @media (min-width: 768px) {
            .section {
                padding: 80px 0;
            }
            .section-title-wrap h2 {
                font-size: 30px;
            }
            .section-title-wrap h2::before {
                height: 28px;
            }
        }

        /* Filter Tags */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }

        .filter-group-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-right: 4px;
            white-space: nowrap;
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-gray);
            background-color: transparent;
            border: 1px solid var(--border-input);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .filter-tag:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .filter-tag.active {
            background-color: rgba(212, 162, 78, 0.12);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .filter-tag:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        /* Rankings Table (grid style) */
        .rankings-table-wrap {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .rankings-header-row {
            display: none;
            grid-template-columns: 64px 1.2fr 1.2fr 1fr 1fr 1fr 1fr 64px;
            gap: 8px;
            padding: 14px 20px;
            background-color: rgba(212, 162, 78, 0.06);
            border-bottom: 1px solid var(--border-gold);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-gray);
            text-align: center;
            letter-spacing: 0.03em;
        }

        .rankings-header-row .col-name {
            text-align: left;
        }

        .ranking-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.1);
            transition: var(--transition-base);
        }

        .ranking-row:hover {
            background-color: rgba(212, 162, 78, 0.04);
        }

        .ranking-row:last-child {
            border-bottom: none;
        }

        .rank-mobile-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rank-number {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1;
            min-width: 40px;
            text-align: center;
        }

        .rank-number.top3 {
            color: var(--accent-orange);
        }

        .player-mobile-info {
            flex: 1;
        }

        .player-name-mobile {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-warm);
        }

        .player-team-mobile {
            font-size: 13px;
            color: var(--text-gray);
        }

        .rank-stats-mobile {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 8px;
        }

        .mobile-stat {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-badge);
            padding: 8px 10px;
            text-align: center;
        }

        .mobile-stat .stat-label {
            font-size: 11px;
            color: var(--text-gray);
            display: block;
        }

        .mobile-stat .stat-value {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-warm);
        }

        .mobile-stat .stat-value.gold {
            color: var(--accent-gold);
        }

        @media (min-width: 768px) {
            .rankings-header-row {
                display: grid;
            }
            .ranking-row {
                grid-template-columns: 64px 1.2fr 1.2fr 1fr 1fr 1fr 1fr 64px;
                gap: 8px;
                align-items: center;
                padding: 14px 20px;
            }
            .rank-mobile-wrap {
                display: contents;
            }
            .rank-number {
                font-size: 22px;
                min-width: auto;
                text-align: center;
            }
            .player-name-mobile {
                font-size: 15px;
                font-weight: 600;
            }
            .player-team-mobile {
                font-size: 13px;
            }
            .rank-stats-mobile {
                display: contents;
            }
            .mobile-stat {
                background: none;
                border-radius: 0;
                padding: 0;
                text-align: center;
            }
            .mobile-stat .stat-label {
                display: none;
            }
            .mobile-stat .stat-value {
                font-size: 15px;
                font-weight: 500;
            }
        }

        /* Trend indicator */
        .trend-up {
            color: var(--accent-cyan);
            font-size: 15px;
            font-weight: 600;
        }

        .trend-down {
            color: var(--accent-red);
            font-size: 15px;
            font-weight: 600;
        }

        .trend-flat {
            color: var(--text-gray);
            font-size: 15px;
            font-weight: 600;
        }

        /* Data Highlights */
        .data-highlight-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .data-highlight-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        .data-highlight-card {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 20px 16px;
            text-align: center;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .data-highlight-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .data-highlight-card .dh-num {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.1;
            margin-bottom: 6px;
        }

        .data-highlight-card .dh-label {
            font-size: 13px;
            color: var(--text-gray);
        }

        @media (min-width: 768px) {
            .data-highlight-card .dh-num {
                font-size: 36px;
            }
        }

        /* Featured Player Cards */
        .featured-player-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 640px) {
            .featured-player-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .featured-player-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .featured-player-card {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .featured-player-card:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-4px);
        }

        .featured-player-card .fp-img-wrap {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .featured-player-card .fp-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-base);
        }

        .featured-player-card:hover .fp-img-wrap img {
            transform: scale(1.05);
        }

        .featured-player-card .fp-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: rgba(12, 14, 20, 0.85);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
        }

        .featured-player-card .fp-body {
            padding: 16px;
        }

        .featured-player-card .fp-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 4px;
        }

        .featured-player-card .fp-team {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }

        .featured-player-card .fp-stats {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 12px;
            color: var(--text-gray);
        }

        .featured-player-card .fp-stats span {
            background-color: var(--bg-secondary);
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            border: 1px solid var(--border-input);
        }

        .featured-player-card .fp-stats .fp-gold {
            color: var(--accent-gold);
            border-color: var(--border-gold);
        }

        /* Rating Bar */
        .rating-bar-wrap {
            margin-top: 10px;
        }

        .rating-bar-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 4px;
        }

        .rating-bar-track {
            height: 6px;
            background-color: var(--bg-secondary);
            border-radius: 3px;
            overflow: hidden;
        }

        .rating-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
            border-radius: 3px;
            transition: var(--transition-base);
        }

        .featured-player-card:hover .rating-bar-fill {
            background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-gold) 100%);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item.open {
            border-color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.03);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            transition: var(--transition-base);
            user-select: none;
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question .faq-icon {
            width: 24px;
            height: 24px;
            border: 1px solid var(--border-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-gold);
            flex-shrink: 0;
            transition: var(--transition-base);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background-color: rgba(212, 162, 78, 0.1);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 20px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary 100%));
            padding: 64px 0;
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .cta-content p {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .cta-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 420px;
            margin: 0 auto;
        }

        .cta-form input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            font-size: 15px;
            color: var(--text-warm);
            transition: var(--transition-base);
        }

        .cta-form input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
        }

        .cta-form input::placeholder {
            color: #5A5560;
        }

        @media (min-width: 640px) {
            .cta-form {
                flex-direction: row;
                max-width: 500px;
            }
            .cta-content h2 {
                font-size: 34px;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--bg-primary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 32px;
        }

        .footer-brand h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 360px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 12px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 4px 0;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-gold);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: var(--text-gray);
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        /* Accent text */
        .text-gold {
            color: var(--accent-gold);
        }
        .text-cyan {
            color: var(--accent-cyan);
        }
        .text-orange {
            color: var(--accent-orange);
        }
        .text-red {
            color: var(--accent-red);
        }
        .text-gray-accent {
            color: var(--text-gray);
        }
        .bg-secondary-custom {
            background-color: var(--bg-secondary);
        }
        .bg-tertiary-custom {
            background-color: var(--bg-tertiary);
        }
        .border-gold-custom {
            border-color: var(--border-gold);
        }

/* roulang page: category4 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (min-width: 1280px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 16px;
        }

        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
        }

        .masthead-logo:hover {
            color: var(--accent-gold);
        }

        .masthead-logo .logo-sub {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
        }

        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 16px;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }

        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }

        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            padding: 20px 0 8px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb .breadcrumb-sep {
            color: var(--border-gold);
        }

        .breadcrumb .breadcrumb-current {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.72) 0%, rgba(12, 14, 20, 0.85) 40%, rgba(12, 14, 20, 0.94) 100%), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-gold);
            padding: 40px 24px;
            margin-top: 12px;
        }

        .hero-banner-content {
            max-width: 680px;
        }

        .hero-kicker {
            display: inline-block;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .hero-banner h1 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: 0.01em;
            color: var(--text-warm);
            margin-bottom: 16px;
        }

        .hero-banner p.hero-sub {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 540px;
            margin-bottom: 24px;
        }

        .hero-banner .hero-cta-group {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: var(--transition-base);
            border: 1px solid transparent;
            text-align: center;
        }

        .btn:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-primary {
            background-color: var(--accent-gold);
            color: #0C0E14;
            border-color: var(--accent-gold);
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            border-color: var(--accent-gold-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.25);
        }

        .btn-primary:active {
            transform: translateY(1px);
            box-shadow: none;
        }

        .btn-ghost {
            background-color: transparent;
            color: var(--text-warm);
            border-color: rgba(245, 240, 232, 0.5);
        }

        .btn-ghost:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.08);
        }

        .btn-ghost:active {
            transform: translateY(1px);
        }

        /* Section Shared */
        .section {
            padding: 64px 0;
        }

        .section-head {
            margin-bottom: 36px;
        }

        .section-head h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-warm);
            line-height: 1.35;
            margin-bottom: 12px;
            position: relative;
            padding-left: 18px;
        }

        .section-head h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 32px;
            background-color: var(--accent-gold);
            border-radius: 2px;
        }

        .section-head p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 680px;
        }

        /* Featured Article */
        .featured-card {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .featured-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.45);
            transform: translateY(-2px);
        }

        .featured-card .featured-image {
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .featured-card .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.04);
        }

        .featured-card .featured-body {
            padding: 24px;
        }

        .featured-card .featured-badge {
            display: inline-block;
            background: rgba(212, 162, 78, 0.15);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: var(--radius-badge);
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .featured-card .featured-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-warm);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .featured-card .featured-excerpt {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .featured-card .featured-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .featured-card .featured-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Article List */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .article-item {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            background-color: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid rgba(212, 162, 78, 0.15);
            overflow: hidden;
            transition: var(--transition-base);
            padding: 16px;
            box-shadow: var(--shadow-card);
        }

        .article-item:hover {
            border-color: rgba(212, 162, 78, 0.4);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .article-item .article-thumb {
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: var(--radius-card);
            overflow: hidden;
            flex-shrink: 0;
        }

        .article-item .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .article-item:hover .article-thumb img {
            transform: scale(1.05);
        }

        .article-item .article-body {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .article-item .article-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .article-item .article-badge {
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.03em;
        }

        .badge-gold {
            background: rgba(212, 162, 78, 0.15);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
        }

        .badge-cyan {
            background: rgba(46, 212, 196, 0.12);
            border: 1px solid rgba(46, 212, 196, 0.3);
            color: var(--accent-cyan);
        }

        .badge-orange {
            background: rgba(249, 115, 22, 0.12);
            border: 1px solid rgba(249, 115, 22, 0.3);
            color: var(--accent-orange);
        }

        .article-item .article-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.45;
        }

        .article-item .article-excerpt {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.75;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-item .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 4px;
        }

        @media (min-width: 640px) {
            .article-item {
                grid-template-columns: 180px 1fr;
            }
            .article-item .article-thumb {
                width: 180px;
                aspect-ratio: 3/2;
            }
            .featured-card {
                grid-template-columns: 1.2fr 1fr;
            }
            .featured-card .featured-image {
                aspect-ratio: auto;
                min-height: 100%;
            }
            .hero-banner h1 {
                font-size: 36px;
            }
        }

        @media (min-width: 1024px) {
            .article-item {
                grid-template-columns: 220px 1fr;
            }
            .article-item .article-thumb {
                width: 220px;
                aspect-ratio: 16/10;
            }
            .hero-banner h1 {
                font-size: 42px;
            }
            .section {
                padding: 80px 0;
            }
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-card {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            padding: 20px;
            box-shadow: var(--shadow-card);
        }

        .sidebar-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 16px;
            padding-left: 12px;
            border-left: 3px solid var(--accent-gold);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-gray);
            background: rgba(212, 162, 78, 0.08);
            border: 1px solid var(--border-gold);
            padding: 4px 12px;
            border-radius: 999px;
            transition: var(--transition-base);
            cursor: default;
        }

        .tag:hover {
            color: var(--accent-gold);
            border-color: var(--accent-gold);
            background: rgba(212, 162, 78, 0.15);
        }

        /* Subscribe Form */
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .subscribe-form input {
            background-color: var(--bg-primary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            color: var(--text-warm);
            transition: var(--transition-base);
            outline: none;
            width: 100%;
        }

        .subscribe-form input::placeholder {
            color: rgba(168, 164, 160, 0.6);
        }

        .subscribe-form input:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
        }

        .subscribe-form .btn {
            width: 100%;
        }

        .subscribe-note {
            font-size: 12px;
            color: var(--text-gray);
            margin-top: 4px;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-mini-card {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            padding: 24px;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .feature-mini-card:hover {
            border-color: rgba(212, 162, 78, 0.45);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }

        .feature-mini-card .feature-icon {
            font-size: 28px;
            margin-bottom: 14px;
            display: inline-block;
            padding: 8px 12px;
            background: rgba(212, 162, 78, 0.1);
            border-radius: var(--radius-btn);
            color: var(--accent-gold);
        }

        .feature-mini-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 10px;
        }

        .feature-mini-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.75;
        }

        @media (min-width: 640px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Data Stats */
        .stats-strip {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            background-color: var(--bg-tertiary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            padding: 28px 20px;
            box-shadow: var(--shadow-card);
        }

        .stat-item {
            text-align: center;
            padding: 12px;
        }

        .stat-item .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
            letter-spacing: 0.03em;
        }

        .stat-item .stat-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 6px;
        }

        .stat-item .stat-desc {
            font-size: 12px;
            color: rgba(168, 164, 160, 0.7);
            margin-top: 4px;
        }

        @media (min-width: 768px) {
            .stats-strip {
                grid-template-columns: repeat(4, 1fr);
                padding: 36px 24px;
            }
            .stat-item .stat-number {
                font-size: 44px;
            }
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background-color: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .faq-item:hover {
            border-color: rgba(212, 162, 78, 0.45);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            list-style: none;
            transition: var(--transition-base);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary:hover {
            color: var(--accent-gold);
        }

        .faq-item summary .faq-toggle {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 162, 78, 0.12);
            border-radius: 50%;
            color: var(--accent-gold);
            font-weight: 700;
            font-size: 18px;
            transition: var(--transition-base);
        }

        .faq-item[open] summary .faq-toggle {
            transform: rotate(45deg);
            background: rgba(212, 162, 78, 0.25);
        }

        .faq-item .faq-answer {
            padding: 0 20px 18px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item[open] {
            border-color: rgba(212, 162, 78, 0.55);
            background-color: var(--bg-tertiary);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--bg-tertiary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
            padding: 48px 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
        }

        .cta-section h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-warm);
            line-height: 1.3;
            margin-bottom: 14px;
        }

        .cta-section p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 560px;
            margin: 0 auto 24px;
        }

        .cta-section .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .cta-section .cta-sub {
            font-size: 13px;
            color: var(--text-gray);
        }

        @media (min-width: 640px) {
            .cta-section {
                padding: 56px 32px;
            }
            .cta-section h2 {
                font-size: 32px;
            }
            .cta-section .cta-actions {
                flex-direction: row;
                justify-content: center;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
            margin-top: 48px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.75;
            max-width: 360px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-gold);
            display: inline-block;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 6px 0;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 6px;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 20px;
            border-top: 1px solid var(--border-gold);
            font-size: 13px;
            color: var(--text-gray);
            text-align: center;
        }

        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
                text-align: left;
            }
        }

        /* Additional responsive tweaks */
        @media (max-width: 640px) {
            .hero-banner {
                min-height: 360px;
                padding: 28px 16px;
            }
            .hero-banner h1 {
                font-size: 26px;
            }
            .section {
                padding: 48px 0;
            }
            .section-head h2 {
                font-size: 22px;
            }
            .featured-card .featured-body {
                padding: 16px;
            }
            .featured-card .featured-title {
                font-size: 18px;
            }
        }

/* roulang page: category5 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (min-width: 640px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }
        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            padding-bottom: 12px;
            gap: 16px;
        }
        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .masthead-logo:hover {
            color: var(--accent-gold);
        }
        .masthead-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 14px;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }
        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }
        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
            flex-shrink: 0;
        }
        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }
        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }
        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }
        .mobile-menu a.active {
            color: var(--accent-gold);
        }
        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }
        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-gray);
            padding: 18px 0 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .crumb-current {
            color: var(--accent-gold);
            font-weight: 500;
        }
        .breadcrumb .crumb-sep {
            color: var(--border-gold);
            margin: 0 4px;
        }
        /* Hero Banner */
        .page-hero {
            position: relative;
            min-height: 48vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.65) 0%, rgba(12, 14, 20, 0.78) 45%, rgba(12, 14, 20, 0.92) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 60px 0 48px;
            margin-bottom: 0;
        }
        .page-hero-content {
            max-width: 720px;
        }
        .page-hero-kicker {
            display: inline-block;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 500;
            padding: 4px 14px;
            border-radius: var(--radius-badge);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }
        .page-hero h1 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.22;
            color: var(--text-warm);
            margin-bottom: 16px;
            letter-spacing: 0.01em;
        }
        .page-hero p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 620px;
            margin-bottom: 20px;
        }
        .hero-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-btn);
            padding: 10px 24px;
            cursor: pointer;
            transition: var(--transition-base);
            border: 1px solid transparent;
            letter-spacing: 0.01em;
            line-height: 1.5;
            text-align: center;
        }
        .btn-primary {
            background-color: var(--accent-gold);
            color: #0C0E14;
            border-color: var(--accent-gold);
        }
        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            border-color: var(--accent-gold-dark);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.3);
        }
        .btn-primary:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-ghost {
            background: transparent;
            color: #F5F0E8;
            border-color: rgba(245, 240, 232, 0.4);
        }
        .btn-ghost:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.08);
        }
        .btn-ghost:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }
        .btn-ghost:active {
            transform: translateY(1px);
        }
        @media (min-width: 768px) {
            .page-hero h1 {
                font-size: 40px;
            }
            .page-hero p {
                font-size: 17px;
            }
        }
        /* Section base */
        .section {
            padding: 56px 0;
        }
        .section-alt {
            background-color: var(--bg-secondary);
            border-top: 1px solid rgba(212, 162, 78, 0.08);
            border-bottom: 1px solid rgba(212, 162, 78, 0.08);
        }
        .section-dark {
            background-color: var(--bg-tertiary);
        }
        .section-header {
            margin-bottom: 32px;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
            letter-spacing: 0.06em;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-warm);
            line-height: 1.3;
            letter-spacing: 0.01em;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background-color: var(--accent-gold);
            border-radius: 2px;
            margin-top: 8px;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 28px;
            }
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 720px;
            margin-top: 12px;
        }
        /* Live pulse badge */
        .live-pulse {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.4);
            color: #EF4444;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }
        .live-pulse .pulse-dot {
            width: 7px;
            height: 7px;
            background-color: #EF4444;
            border-radius: 50%;
            animation: pulse-dot 1.2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
            }
            50% {
                transform: scale(1.3);
                opacity: 0.8;
                box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
            }
        }
        /* Live card */
        .live-card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
        }
        .live-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.5);
            transform: translateY(-2px);
        }
        .live-card-image {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .live-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .live-card:hover .live-card-image img {
            transform: scale(1.04);
        }
        .live-badge-corner {
            position: absolute;
            top: 12px;
            left: 12px;
        }
        .live-card-body {
            padding: 16px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .live-card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.45;
        }
        .live-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--text-gray);
            flex-wrap: wrap;
        }
        .live-card-meta .view-count {
            color: var(--accent-cyan);
            font-weight: 500;
        }
        .live-card-meta .match-tag {
            background-color: rgba(212, 162, 78, 0.12);
            color: var(--accent-gold);
            font-size: 12px;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 500;
        }
        /* Video grid */
        .video-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 520px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }
        @media (min-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        @media (min-width: 1280px) {
            .video-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        }
        .video-card {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        .video-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.45);
            transform: translateY(-3px);
        }
        .video-card-image {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background-color: var(--bg-tertiary);
        }
        .video-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .video-card:hover .video-card-image img {
            transform: scale(1.05);
        }
        .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(12, 14, 20, 0.8);
            color: #F5F0E8;
            font-size: 12px;
            font-weight: 500;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: 0.02em;
            border: 1px solid rgba(212, 162, 78, 0.3);
        }
        .video-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background-color: rgba(212, 162, 78, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0C0E14;
            font-size: 16px;
            font-weight: 700;
            opacity: 0;
            transition: var(--transition-base);
        }
        .video-card:hover .video-play-overlay {
            opacity: 1;
        }
        .video-card-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .video-card-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .video-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--text-gray);
            flex-wrap: wrap;
        }
        .video-card-meta .views {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .video-card-meta .views .icon-eye {
            font-size: 13px;
            line-height: 1;
        }
        .video-card-meta .badge-tag {
            background-color: rgba(46, 212, 196, 0.12);
            color: var(--accent-cyan);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 500;
        }
        .video-card-meta .badge-gold {
            background-color: rgba(212, 162, 78, 0.12);
            color: var(--accent-gold);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 500;
        }
        /* Stats bar */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        @media (min-width: 768px) {
            .stats-bar {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        }
        .stat-item {
            background-color: rgba(12, 14, 20, 0.6);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            text-align: center;
            transition: var(--transition-base);
        }
        .stat-item:hover {
            border-color: rgba(212, 162, 78, 0.5);
            box-shadow: var(--shadow-card-hover);
        }
        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
            letter-spacing: 0.02em;
        }
        .stat-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 4px;
            font-weight: 400;
        }
        @media (min-width: 768px) {
            .stat-number {
                font-size: 40px;
            }
        }
        /* Feature cards */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 640px) {
            .feature-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }
        @media (min-width: 1024px) {
            .feature-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        }
        .feature-card {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .feature-card:hover {
            border-color: rgba(212, 162, 78, 0.45);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
        }
        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            background-color: rgba(212, 162, 78, 0.1);
            color: var(--accent-gold);
            border: 1px solid var(--border-gold);
            margin-bottom: 4px;
        }
        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.4;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.75;
        }
        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 768px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }
        @media (min-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        .testimonial-card {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .testimonial-card:hover {
            border-color: rgba(212, 162, 78, 0.4);
            box-shadow: var(--shadow-card-hover);
        }
        .testimonial-quote {
            font-size: 34px;
            color: var(--accent-gold);
            line-height: 1;
            font-weight: 800;
            opacity: 0.6;
        }
        .testimonial-text {
            font-size: 14px;
            color: var(--text-warm);
            line-height: 1.8;
        }
        .testimonial-author {
            font-size: 13px;
            color: var(--text-gray);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
        }
        .testimonial-author .avatar-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--accent-gold);
            font-weight: 600;
        }
        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
        }
        .faq-item {
            background-color: var(--bg-secondary);
            border: 1px solid rgba(212, 162, 78, 0.18);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
        }
        .faq-item:hover {
            border-color: rgba(212, 162, 78, 0.4);
        }
        .faq-item.active {
            border-color: rgba(212, 162, 78, 0.55);
            background-color: var(--bg-tertiary);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--text-warm);
            font-size: 16px;
            font-weight: 600;
            text-align: left;
            line-height: 1.5;
            transition: var(--transition-base);
        }
        .faq-question:hover {
            color: var(--accent-gold);
        }
        .faq-question:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: -2px;
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: rgba(212, 162, 78, 0.1);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-gold);
            font-weight: 600;
            transition: var(--transition-base);
        }
        .faq-item.active .faq-icon {
            background-color: var(--accent-gold);
            color: #0C0E14;
            border-color: var(--accent-gold);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.25s ease;
            padding: 0 20px;
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 220px;
            padding: 0 20px 18px;
        }
        /* CTA section */
        .cta-section {
            background-color: var(--bg-tertiary);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 56px 0;
        }
        .cta-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-start;
        }
        @media (min-width: 768px) {
            .cta-inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
            }
        }
        .cta-text h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-warm);
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .cta-text p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 520px;
        }
        .cta-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            width: 100%;
            max-width: 480px;
        }
        .cta-form input {
            flex: 1;
            min-width: 200px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-btn);
            padding: 10px 16px;
            font-size: 15px;
            color: var(--text-warm);
            transition: var(--transition-base);
            outline: none;
        }
        .cta-form input::placeholder {
            color: var(--text-gray);
            opacity: 0.6;
        }
        .cta-form input:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 162, 78, 0.15);
        }
        /* Footer */
        .footer {
            background-color: var(--bg-primary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 32px;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 32px;
            }
        }
        .footer-brand h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 10px;
        }
        .footer-brand h3 a {
            color: var(--text-warm);
            transition: var(--transition-base);
        }
        .footer-brand h3 a:hover {
            color: var(--accent-gold);
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 360px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 4px 0;
            transition: var(--transition-base);
        }
        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.15);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            font-size: 13px;
            color: var(--text-gray);
            align-items: center;
        }
        .footer-bottom a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition-base);
        }
        .footer-bottom a:hover {
            color: var(--accent-gold);
        }
        /* Divider ornament */
        .section-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--border-gold), transparent);
            margin: 0;
            border: none;
        }
        /* Responsive video grid fallback */
        @media (max-width: 519px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
            .live-grid-fallback {
                grid-template-columns: 1fr !important;
            }
        }
        .live-grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 768px) {
            .live-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
            }
        }
        @media (min-width: 1024px) {
            .live-grid-layout {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

/* roulang page: category6 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (min-width: 640px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            padding-top: 10px;
            padding-bottom: 10px;
            gap: 16px;
        }

        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
            display: flex;
            flex-direction: column;
        }

        .masthead-logo:hover {
            color: var(--accent-gold);
        }

        .masthead-logo .logo-sub {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
        }

        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 14px;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }

        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }

        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }

        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }

        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }

        .mobile-menu a.active {
            color: var(--accent-gold);
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }

        /* Breadcrumb */
        .breadcrumb-bar {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            padding: 14px 0;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .breadcrumb a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .breadcrumb .separator {
            color: var(--border-gold);
            font-size: 12px;
        }

        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* Community Banner */
        .community-banner {
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.75) 0%, rgba(12, 14, 20, 0.88) 60%, rgba(12, 14, 20, 0.95) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 60px 0 48px;
            position: relative;
            border-bottom: 1px solid var(--border-gold);
        }

        .community-banner-inner {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 680px;
        }

        .community-banner .kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-badge);
            width: fit-content;
        }

        .community-banner h1 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-warm);
            letter-spacing: 0.02em;
        }

        .community-banner .subtitle {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.75;
            max-width: 620px;
        }

        .community-banner .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            padding-top: 8px;
        }

        .community-banner .stat-item {
            display: flex;
            flex-direction: column;
        }

        .community-banner .stat-item .number {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .community-banner .stat-item .label {
            font-size: 13px;
            color: var(--text-gray);
        }

        @media (min-width: 768px) {
            .community-banner {
                padding: 72px 0 56px;
            }
            .community-banner h1 {
                font-size: 40px;
            }
            .community-banner .stat-item .number {
                font-size: 34px;
            }
        }

        @media (min-width: 1024px) {
            .community-banner h1 {
                font-size: 44px;
            }
        }

        /* Forum Layout */
        .forum-section {
            padding: 48px 0 64px;
            background-color: var(--bg-primary);
        }

        .forum-layout {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .forum-layout {
                flex-direction: row;
                align-items: flex-start;
            }
            .forum-main {
                flex: 1;
                min-width: 0;
            }
            .forum-sidebar {
                width: 300px;
                flex-shrink: 0;
                position: sticky;
                top: 88px;
            }
        }

        /* Post List */
        .post-list-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }

        .post-list-header h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-warm);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .post-list-header h2 .icon {
            color: var(--accent-gold);
            font-size: 20px;
        }

        .post-filter-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .post-filter-tabs button {
            background: transparent;
            border: 1px solid var(--border-input);
            color: var(--text-gray);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .post-filter-tabs button:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .post-filter-tabs button.active {
            background: rgba(212, 162, 78, 0.12);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .post-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .post-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-card);
            padding: 16px 18px;
            transition: var(--transition-base);
            cursor: pointer;
        }

        .post-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .post-avatar {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 50%;
            background-color: var(--bg-tertiary);
            border: 2px solid var(--border-gold);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 18px;
            font-weight: 700;
        }

        .post-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-body {
            flex: 1;
            min-width: 0;
        }

        .post-title-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 4px;
        }

        .post-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.4;
            transition: var(--transition-base);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .post-card:hover .post-title {
            color: var(--accent-gold);
        }

        .post-badge {
            font-size: 12px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: var(--radius-badge);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .post-badge.hot {
            background: rgba(239, 68, 68, 0.15);
            color: var(--accent-red);
            border: 1px solid rgba(239, 68, 68, 0.35);
        }

        .post-badge.new {
            background: rgba(46, 212, 196, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(46, 212, 196, 0.35);
        }

        .post-badge.pinned {
            background: rgba(212, 162, 78, 0.15);
            color: var(--accent-gold);
            border: 1px solid rgba(212, 162, 78, 0.35);
        }

        .post-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .post-meta .author {
            color: var(--text-gray);
            font-weight: 500;
        }

        .post-meta .dot {
            width: 3px;
            height: 3px;
            background-color: var(--border-input);
            border-radius: 50%;
        }

        .post-stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            min-width: 64px;
            text-align: center;
        }

        .post-stats .replies {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-gold);
            line-height: 1.2;
        }

        .post-stats .stat-label {
            font-size: 11px;
            color: var(--text-gray);
            white-space: nowrap;
        }

        @media (max-width: 640px) {
            .post-card {
                flex-wrap: wrap;
                padding: 14px;
            }
            .post-stats {
                min-width: 52px;
            }
            .post-stats .replies {
                font-size: 16px;
            }
            .post-avatar {
                width: 36px;
                height: 36px;
                min-width: 36px;
                font-size: 14px;
            }
        }

        /* Sidebar */
        .sidebar-card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-card);
            padding: 20px;
            margin-bottom: 16px;
        }

        .sidebar-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h3 .icon {
            color: var(--accent-gold);
            font-size: 15px;
        }

        .post-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            background-color: var(--accent-gold);
            color: #0C0E14;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
        }

        .post-cta-btn:hover {
            background-color: var(--accent-gold-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.25);
        }

        .post-cta-btn:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .post-cta-btn:active {
            transform: translateY(0);
        }

        .forum-category-list {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .forum-category-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            border-radius: var(--radius-badge);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .forum-category-list a:hover {
            background-color: rgba(212, 162, 78, 0.08);
            color: var(--accent-gold);
        }

        .forum-category-list a .count {
            font-size: 12px;
            background-color: var(--bg-tertiary);
            color: var(--text-gray);
            padding: 2px 8px;
            border-radius: 10px;
            transition: var(--transition-base);
        }

        .forum-category-list a:hover .count {
            background-color: rgba(212, 162, 78, 0.18);
            color: var(--accent-gold);
        }

        .hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hot-tags .tag {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-gray);
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-input);
            padding: 5px 12px;
            border-radius: 20px;
            transition: var(--transition-base);
        }

        .hot-tags .tag:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.08);
        }

        /* Community Highlights */
        .highlights-section {
            padding: 48px 0 56px;
            background-color: var(--bg-secondary);
            border-top: 1px solid rgba(212, 162, 78, 0.12);
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
        }

        .highlights-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 28px;
        }

        .highlights-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-warm);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .highlights-header h2 .icon {
            color: var(--accent-gold);
            font-size: 22px;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }

        @media (min-width: 640px) {
            .highlights-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .highlights-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        .highlight-card {
            background-color: var(--bg-tertiary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-card);
            padding: 20px;
            transition: var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .highlight-card:hover {
            border-color: var(--border-gold);
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }

        .highlight-card .tag-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 18px;
        }

        .highlight-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
        }

        .highlight-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.65;
        }

        .highlight-card .active-users {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--accent-cyan);
        }

        .highlight-card .active-users .dot {
            width: 8px;
            height: 8px;
            background-color: var(--accent-cyan);
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        /* Community Rules / FAQ */
        .community-faq-section {
            padding: 56px 0 64px;
            background-color: var(--bg-primary);
        }

        .faq-header {
            text-align: left;
            margin-bottom: 28px;
        }

        .faq-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-warm);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .faq-header h2 .icon {
            color: var(--accent-gold);
            font-size: 24px;
        }

        .faq-header p {
            font-size: 15px;
            color: var(--text-gray);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 820px;
        }

        .faq-item {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-input);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
        }

        .faq-item:hover {
            border-color: var(--border-gold);
        }

        .faq-item.active {
            border-color: var(--accent-gold);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            transition: var(--transition-base);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover {
            color: var(--accent-gold);
        }

        .faq-question .faq-icon {
            flex-shrink: 0;
            color: var(--accent-gold);
            font-size: 18px;
            transition: var(--transition-base);
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 20px 18px;
        }

        .faq-question:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: -2px;
            border-radius: var(--radius-card);
        }

        /* CTA Section */
        .cta-section {
            padding: 56px 0 64px;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.92) 0%, rgba(12, 14, 20, 0.96) 100%), url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            border-top: 1px solid var(--border-gold);
        }

        .cta-inner {
            max-width: 620px;
            text-align: left;
        }

        .cta-inner h2 {
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-warm);
            margin-bottom: 12px;
        }

        .cta-inner p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent-gold);
            color: #0C0E14;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.25);
        }

        .btn-primary:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text-warm);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-gold);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-ghost:hover {
            border-color: var(--accent-gold);
            background-color: rgba(212, 162, 78, 0.1);
            color: var(--accent-gold);
        }

        .btn-ghost:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

        .btn-ghost:active {
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
            margin-bottom: 32px;
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1.2fr;
            }
        }

        .footer-brand h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 10px;
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            max-width: 340px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-gold);
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 6px 0;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--accent-gold);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.12);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 13px;
            color: var(--text-gray);
            align-items: center;
        }

        .footer-bottom a {
            color: var(--text-gray);
            transition: var(--transition-base);
        }

        .footer-bottom a:hover {
            color: var(--accent-gold);
        }

        /* Section spacing */
        .section-spacing {
            margin-top: 0;
        }

        /* Focus visible for all interactive elements */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }

/* roulang page: category7 */
:root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }
        /* roulang page: merchandise-store (category7) */
        :root {
            --bg-primary: #0C0E14;
            --bg-secondary: #111420;
            --bg-tertiary: #161A24;
            --accent-gold: #D4A24E;
            --accent-gold-dark: #C08F3A;
            --accent-cyan: #2ED4C4;
            --accent-orange: #F97316;
            --accent-red: #EF4444;
            --text-warm: #F5F0E8;
            --text-gray: #A8A4A0;
            --border-gold: rgba(212, 162, 78, 0.25);
            --border-input: #2A2F3A;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-badge: 4px;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-card-hover: 0 6px 16px rgba(212, 162, 78, 0.12);
            --transition-base: all 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-warm);
            line-height: 1.75;
            font-size: 16px;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input,
        select {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (min-width: 768px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        @media (min-width: 1024px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }
        /* Header / Magazine Masthead */
        .masthead {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(12, 14, 20, 0.96);
            border-bottom: 1px solid var(--border-gold);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .masthead-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .masthead-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: var(--text-warm);
            white-space: nowrap;
            line-height: 1.2;
        }
        .masthead-logo:hover {
            color: var(--accent-gold);
        }
        .masthead-logo .logo-sub {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--text-gray);
            text-transform: uppercase;
            margin-top: 2px;
        }
        .nav-desktop {
            display: none;
            align-items: center;
            gap: 0;
        }
        .nav-desktop .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 8px 12px;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        .nav-desktop .nav-link:hover {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active {
            color: var(--accent-gold);
        }
        .nav-desktop .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 12px;
            right: 12px;
            height: 2px;
            background-color: var(--accent-gold);
            border-radius: 1px;
        }
        .nav-desktop .nav-divider {
            width: 1px;
            height: 20px;
            background-color: var(--border-gold);
            flex-shrink: 0;
        }
        .nav-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-btn);
            padding: 9px 10px;
            cursor: pointer;
            transition: var(--transition-base);
        }
        .nav-toggle:hover {
            border-color: var(--accent-gold);
        }
        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-warm);
            border-radius: 1px;
            transition: var(--transition-base);
        }
        .nav-toggle:hover span {
            background-color: var(--accent-gold);
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 16px 0 20px;
            border-top: 1px solid var(--border-gold);
            background-color: var(--bg-secondary);
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
            padding: 12px 8px;
            border-bottom: 1px solid rgba(212, 162, 78, 0.12);
            transition: var(--transition-base);
        }
        .mobile-menu a:hover {
            color: var(--accent-gold);
            padding-left: 14px;
        }
        .mobile-menu a.active {
            color: var(--accent-gold);
        }
        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
            }
            .nav-toggle {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
            .masthead-logo {
                font-size: 32px;
            }
        }
        @media (min-width: 640px) and (max-width: 1023px) {
            .nav-desktop {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-end;
                gap: 2px;
            }
            .nav-desktop .nav-link {
                font-size: 13px;
                padding: 6px 8px;
            }
            .nav-desktop .nav-divider {
                display: none;
            }
            .masthead-logo {
                font-size: 24px;
            }
        }
        /* Breadcrumb */
        .breadcrumb-bar {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid rgba(212, 162, 78, 0.15);
            padding: 12px 0;
            font-size: 14px;
            color: var(--text-gray);
        }
        .breadcrumb-bar a {
            color: var(--text-gray);
        }
        .breadcrumb-bar a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb-bar .separator {
            margin: 0 8px;
            color: var(--accent-gold);
        }
        .breadcrumb-bar .current {
            color: var(--accent-gold);
            font-weight: 500;
        }
        /* Hero (Store Category) */
        .store-hero {
            position: relative;
            background-image: linear-gradient(to bottom, rgba(12, 14, 20, 0.82) 0%, rgba(12, 14, 20, 0.88) 50%, rgba(12, 14, 20, 0.95) 100%), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 72px 0 72px;
            border-bottom: 1px solid var(--border-gold);
        }
        .store-hero-content {
            max-width: 720px;
        }
        .store-hero-kicker {
            display: inline-block;
            background: rgba(212, 162, 78, 0.12);
            border: 1px solid var(--border-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }
        .store-hero h1 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.01em;
            margin-bottom: 16px;
            color: var(--text-warm);
        }
        .store-hero p {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 600px;
            margin-bottom: 28px;
        }
        .store-hero .hero-stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 32px;
        }
        .store-hero .stat-item .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .store-hero .stat-item .stat-label {
            font-size: 13px;
            color: var(--text-gray);
            margin-top: 2px;
        }
        @media (max-width: 640px) {
            .store-hero h1 {
                font-size: 26px;
            }
            .store-hero {
                padding: 48px 0 48px;
            }
            .store-hero .hero-stats-row {
                gap: 16px;
            }
            .store-hero .stat-item .stat-number {
                font-size: 24px;
            }
        }
        /* Filter Bar */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-gold);
            margin-bottom: 28px;
        }
        .filter-bar .filter-label {
            font-size: 14px;
            color: var(--text-gray);
            font-weight: 500;
            margin-right: 4px;
        }
        .filter-bar .filter-btn {
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-gold);
            background: transparent;
            color: var(--text-gray);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        .filter-bar .filter-btn:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(212, 162, 78, 0.08);
        }
        .filter-bar .filter-btn.active {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: var(--bg-primary);
            font-weight: 600;
        }
        .filter-bar .sort-select {
            margin-left: auto;
            padding: 8px 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border-input);
            background: var(--bg-tertiary);
            color: var(--text-warm);
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition-base);
        }
        .filter-bar .sort-select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.2);
        }
        @media (max-width: 640px) {
            .filter-bar {
                gap: 8px;
            }
            .filter-bar .filter-btn {
                padding: 6px 14px;
                font-size: 13px;
            }
            .filter-bar .sort-select {
                margin-left: 0;
                width: 100%;
            }
        }
        /* Product Cards Grid */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 640px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .product-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.45);
        }
        .product-card .product-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        .product-card .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-base);
        }
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        .product-card .product-image .badge-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-badge);
            letter-spacing: 0.02em;
        }
        .badge-hot {
            background: var(--accent-orange);
            color: #1a1208;
        }
        .badge-new {
            background: var(--accent-cyan);
            color: #0a1e1c;
        }
        .badge-limited {
            background: var(--accent-gold);
            color: var(--bg-primary);
        }
        .product-card .product-info {
            padding: 16px 18px 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card .product-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            line-height: 1.5;
            margin-bottom: 6px;
        }
        .product-card .product-category {
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 10px;
        }
        .product-card .product-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }
        .product-card .product-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-gold);
        }
        .product-card .product-price .currency {
            font-size: 14px;
            font-weight: 500;
            margin-right: 2px;
        }
        .product-card .add-btn {
            padding: 8px 18px;
            border-radius: var(--radius-btn);
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }
        .product-card .add-btn:hover {
            background: var(--accent-gold);
            color: var(--bg-primary);
        }
        .product-card .add-btn:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.3);
        }
        .product-card .add-btn:active {
            transform: translateY(1px);
        }
        /* Featured Product Section */
        .featured-product {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 32px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            margin-bottom: 48px;
            box-shadow: var(--shadow-card);
        }
        .featured-product .featured-image {
            aspect-ratio: 4/3;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border-gold);
        }
        .featured-product .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-product .featured-info .featured-badge {
            display: inline-block;
            background: var(--accent-gold);
            color: var(--bg-primary);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: var(--radius-badge);
            margin-bottom: 12px;
        }
        .featured-product .featured-info h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .featured-product .featured-info p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .featured-product .featured-info .featured-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }
        .featured-product .featured-info .featured-price .original {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-gray);
            text-decoration: line-through;
            margin-left: 10px;
        }
        @media (max-width: 768px) {
            .featured-product {
                grid-template-columns: 1fr;
                padding: 24px;
                gap: 20px;
            }
            .featured-product .featured-image {
                aspect-ratio: 16/9;
            }
        }
        /* Brand Intro Section */
        .brand-intro-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
            padding: 48px 0;
            margin-bottom: 48px;
        }
        .brand-intro-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .brand-intro-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-warm);
            margin-bottom: 16px;
        }
        .brand-intro-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.9;
            text-align: left;
        }
        /* Testimonial Section */
        .testimonial-section {
            padding: 48px 0;
            margin-bottom: 48px;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 640px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .testimonial-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-card-hover);
            border-color: rgba(212, 162, 78, 0.45);
        }
        .testimonial-card .testimonial-quote {
            font-size: 16px;
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1;
        }
        .testimonial-card p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .testimonial-card .testimonial-author {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-warm);
        }
        .testimonial-card .testimonial-role {
            font-size: 12px;
            color: var(--text-gray);
        }
        /* FAQ Section */
        .faq-section {
            padding: 48px 0;
            margin-bottom: 48px;
            background: var(--bg-secondary);
            border-radius: var(--radius-card);
            border: 1px solid var(--border-gold);
        }
        .faq-section .faq-container {
            padding: 0 24px;
        }
        .faq-item {
            border-bottom: 1px solid rgba(212, 162, 78, 0.15);
            padding: 18px 0;
            cursor: pointer;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            transition: var(--transition-base);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            color: var(--accent-gold);
            font-size: 20px;
            font-weight: 700;
            transition: var(--transition-base);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            padding-top: 12px;
        }
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(212, 162, 78, 0.08), rgba(12, 14, 20, 0.4));
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-card);
            padding: 48px 32px;
            text-align: center;
            margin-bottom: 48px;
        }
        .cta-section h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-warm);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .cta-section p {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }
        .cta-section .cta-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .btn-primary {
            background: var(--accent-gold);
            color: var(--bg-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
        }
        .btn-primary:hover {
            background: var(--accent-gold-dark);
            box-shadow: 0 4px 12px rgba(212, 162, 78, 0.3);
        }
        .btn-primary:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.5);
        }
        .btn-primary:active {
            transform: translateY(1px);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: var(--transition-base);
        }
        .btn-secondary:hover {
            background: rgba(212, 162, 78, 0.1);
            border-color: var(--accent-gold-dark);
        }
        .btn-secondary:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 162, 78, 0.3);
        }
        .btn-secondary:active {
            transform: translateY(1px);
        }
        /* Footer */
        .footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-brand h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .footer-brand p {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.8;
            max-width: 320px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-warm);
            margin-bottom: 12px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--text-gray);
            padding: 4px 0;
            transition: var(--transition-base);
        }
        .footer-col a:hover {
            color: var(--accent-gold);
        }
        .footer-bottom {
            border-top: 1px solid rgba(212, 162, 78, 0.2);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: var(--text-gray);
            justify-content: space-between;
        }
        .footer-bottom a {
            color: var(--text-gray);
        }
        .footer-bottom a:hover {
            color: var(--accent-gold);
        }
        /* Section Headings */
        .section-heading {
            text-align: left;
            margin-bottom: 28px;
        }
        .section-heading .heading-kicker {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }
        .section-heading h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-warm);
            line-height: 1.3;
            position: relative;
            padding-bottom: 12px;
        }
        .section-heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .section-heading p {
            font-size: 15px;
            color: var(--text-gray);
            margin-top: 10px;
            line-height: 1.8;
            max-width: 600px;
        }
        /* Main Sections Spacing */
        main {
            padding-bottom: 0;
        }
        .store-main {
            padding-top: 32px;
        }
        .section-block {
            margin-bottom: 56px;
        }
        @media (max-width: 640px) {
            .section-block {
                margin-bottom: 36px;
            }
            .section-heading h2 {
                font-size: 22px;
            }
        }
