/* roulang page: index */
:root {
            --color-brand: #ff4d2d;
            --color-brand-hover: #e63917;
            --color-brand-light: #fff5f3;
            --color-dark-bg: #0f0f1a;
            --color-dark-card: #1a1a28;
            --color-text: #1a1a28;
            --color-text-light: #6b7280;
            --color-border: #e5e7eb;
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
            --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);
            --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            color: #1a1a28;
            background: #ffffff;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-base);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input {
            font-family: inherit;
        }

        /* Focus accessibility */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid #ff4d2d;
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.6);
            box-shadow: var(--shadow-nav);
            transition: var(--transition-base);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.25rem;
            color: #1a1a28;
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: -0.01em;
        }

        .nav-logo .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #ff4d2d, #e63917);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(255, 77, 45, 0.35);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #4a4a5e;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: #ff4d2d;
            background: #fff5f3;
        }

        .nav-links a.active {
            color: #ff4d2d;
            background: #fff5f3;
            font-weight: 600;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-search {
            position: relative;
        }

        .nav-search input {
            width: 180px;
            padding: 9px 14px 9px 38px;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            font-size: 0.9rem;
            background: #f9fafb;
            transition: var(--transition-base);
            color: #1a1a28;
        }

        .nav-search input:focus {
            border-color: #ff4d2d;
            background: #fff;
            width: 220px;
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 77, 45, 0.08);
        }

        .nav-search .search-icon {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 0.9rem;
            pointer-events: none;
        }

        .btn-nav-login {
            padding: 9px 18px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #4a4a5e;
            background: transparent;
            border: 2px solid #e5e7eb;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-nav-login:hover {
            border-color: #ff4d2d;
            color: #ff4d2d;
            background: #fff5f3;
        }

        .btn-nav-cta {
            padding: 9px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, #ff4d2d, #e63917);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(255, 77, 45, 0.3);
        }

        .btn-nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(255, 77, 45, 0.4);
            background: linear-gradient(135deg, #ff5e3f, #c42a0d);
        }

        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            color: #1a1a28;
            transition: var(--transition-base);
        }

        .mobile-toggle:hover {
            background: #f3f4f6;
        }

        .mobile-toggle .bar {
            display: block;
            width: 24px;
            height: 2.5px;
            background: currentColor;
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition-base);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: linear-gradient(160deg, #0f0f1a 0%, #1a1a28 30%, #1f1f35 60%, #0f0f1a 100%);
            min-height: 620px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            z-index: 1;
        }

        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 77, 45, 0.2) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            z-index: 1;
            animation: float 8s ease-in-out infinite;
        }

        .hero-glow-2 {
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240, 192, 64, 0.15) 0%, transparent 70%);
            bottom: -80px;
            left: -60px;
            z-index: 1;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin: 0 0 16px 0;
            letter-spacing: -0.02em;
        }

        .hero-content h1 .highlight {
            background: linear-gradient(135deg, #ff4d2d, #ff7a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .hero-subtitle {
            font-size: 1.15rem;
            color: #b3b3c4;
            margin: 0 0 32px 0;
            line-height: 1.7;
            max-width: 480px;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.08);
            color: #d9d9e3;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-badge .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #4ade80;
            animation: pulse-slow 2s ease-in-out infinite;
        }

        .hero-badge .badge-dot.live {
            background: #ff4d2d;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .btn-hero-primary {
            padding: 14px 32px;
            border-radius: 28px;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(135deg, #ff4d2d, #e63917);
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: 0 8px 30px rgba(255, 77, 45, 0.4);
            white-space: nowrap;
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(255, 77, 45, 0.5);
            background: linear-gradient(135deg, #ff5e3f, #c42a0d);
        }

        .btn-hero-outline {
            padding: 14px 28px;
            border-radius: 28px;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.06);
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-card-stack {
            position: relative;
            width: 100%;
            max-width: 440px;
        }

        .hero-main-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 28px;
            position: relative;
            z-index: 3;
        }

        .hero-main-card .live-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #ff4d2d;
            color: #fff;
            padding: 4px 12px;
            border-radius: 14px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .hero-main-card .live-tag .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            animation: pulse-slow 1.5s ease-in-out infinite;
        }

        .hero-main-card h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .hero-main-card .matchup {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 12px;
            margin: 16px 0;
            color: #fff;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .hero-main-card .matchup .vs {
            font-size: 0.9rem;
            color: #f0c040;
            font-weight: 600;
        }

        .hero-main-card .card-meta {
            color: #b3b3c4;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            z-index: 2;
        }

        .hero-floating-card.card-top-right {
            top: -30px;
            right: -20px;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .hero-floating-card.card-bottom-left {
            bottom: -24px;
            left: -16px;
            color: #f0c040;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Countdown strip */
        .countdown-strip {
            background: linear-gradient(135deg, #1a1a28, #2a2a3a);
            border-bottom: 2px solid rgba(255, 77, 45, 0.3);
            padding: 12px 0;
            overflow: hidden;
        }

        .countdown-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .countdown-label {
            color: #f0c040;
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .countdown-timer {
            display: flex;
            gap: 8px;
        }

        .countdown-unit {
            background: rgba(255, 77, 45, 0.2);
            color: #ff7a5c;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            min-width: 44px;
            text-align: center;
        }

        .countdown-unit span {
            display: block;
            font-size: 0.7rem;
            color: #b3b3c4;
            font-weight: 400;
        }

        .countdown-event {
            color: #d9d9e3;
            font-size: 0.9rem;
            margin-left: auto;
            white-space: nowrap;
        }

        /* Section shared */
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 64px 24px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-header .section-tag {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            background: #fff5f3;
            color: #ff4d2d;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #1a1a28;
            margin: 0 0 10px 0;
            letter-spacing: -0.01em;
        }

        .section-header p {
            font-size: 1.05rem;
            color: #6b7280;
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Service cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            border: 1px solid #f0f0f5;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-card-hover);
            border-color: #ffe8e2;
        }

        .service-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .service-card .card-icon.icon-red {
            background: #fff5f3;
            color: #ff4d2d;
        }

        .service-card .card-icon.icon-blue {
            background: #eff6ff;
            color: #3b82f6;
        }

        .service-card .card-icon.icon-green {
            background: #f0fdf4;
            color: #22c55e;
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1a28;
            margin: 0 0 8px 0;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #6b7280;
            margin: 0;
            line-height: 1.6;
        }

        .service-card .card-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 14px;
            color: #ff4d2d;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .service-card .card-link:hover {
            gap: 8px;
        }

        /* CMS list section */
        .cms-section {
            background: #fafafa;
        }

        .cms-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .cms-card {
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            display: flex;
            border: 1px solid #f0f0f5;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .cms-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card-hover);
        }

        .cms-card .cms-thumb {
            width: 160px;
            min-height: 140px;
            flex-shrink: 0;
            object-fit: cover;
            background: #f3f4f6;
        }

        .cms-card .cms-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cms-card .cms-body {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cms-card .cms-category {
            font-size: 0.78rem;
            color: #ff4d2d;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .cms-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a28;
            margin: 0 0 6px 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cms-card h4 a:hover {
            color: #ff4d2d;
        }

        .cms-card .cms-excerpt {
            font-size: 0.85rem;
            color: #6b7280;
            margin: 0 0 8px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cms-card .cms-time {
            font-size: 0.78rem;
            color: #9ca3af;
        }

        .cms-empty {
            text-align: center;
            padding: 48px;
            color: #9ca3af;
            font-size: 1rem;
            grid-column: 1 / -1;
        }

        /* Stats section */
        .stats-section {
            background: linear-gradient(160deg, #0f0f1a, #1a1a28);
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }

        .stat-item .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff7a5c, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .stat-item .stat-label {
            font-size: 0.95rem;
            color: #b3b3c4;
            margin-top: 6px;
        }

        /* Features grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid #f0f0f5;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .feature-card:hover {
            border-color: #ffe8e2;
            box-shadow: var(--shadow-card-hover);
        }

        .feature-card .feature-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            background: #fff5f3;
            color: #ff4d2d;
        }

        .feature-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a28;
            margin: 0 0 4px 0;
        }

        .feature-card p {
            font-size: 0.88rem;
            color: #6b7280;
            margin: 0;
        }

        /* FAQ */
        .faq-section {
            background: #fafafa;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid #f0f0f5;
            overflow: hidden;
            transition: var(--transition-base);
            box-shadow: var(--shadow-card);
        }

        .faq-item summary {
            padding: 18px 24px;
            font-weight: 700;
            font-size: 1rem;
            color: #1a1a28;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 1.3rem;
            color: #ff4d2d;
            font-weight: 600;
            transition: var(--transition-base);
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-item[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-item .faq-answer {
            padding: 0 24px 20px;
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, #ff4d2d, #c42a0d);
            color: #fff;
            text-align: center;
        }

        .cta-section h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            margin: 0 0 12px 0;
        }

        .cta-section p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin: 0 0 28px 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-large {
            padding: 15px 38px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 700;
            color: #ff4d2d;
            background: #fff;
            border: none;
            cursor: pointer;
            transition: var(--transition-base);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
            background: #fffefc;
        }

        /* Footer */
        .site-footer {
            background: #0f0f1a;
            color: #b3b3c4;
            padding: 48px 0 24px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: #8c8ca3;
            line-height: 1.6;
            margin: 0;
        }

        .footer-links h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0 0 14px 0;
        }

        .footer-links ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 8px;
        }

        .footer-links ul li a {
            color: #8c8ca3;
            font-size: 0.9rem;
            transition: var(--transition-base);
        }

        .footer-links ul li a:hover {
            color: #ff7a5c;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 32px auto 0;
            padding: 20px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            text-align: center;
            font-size: 0.85rem;
            color: #666680;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 32px;
            }
            .hero-content .hero-subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-badges {
                justify-content: center;
            }
            .hero-visual {
                display: none;
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .cms-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 64px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 16px;
                border-bottom: 1px solid #e5e7eb;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .nav-search {
                display: none;
            }
            .btn-nav-login {
                display: none;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cms-card {
                flex-direction: column;
            }
            .cms-card .cms-thumb {
                width: 100%;
                min-height: 160px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .countdown-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .countdown-event {
                margin-left: 0;
            }
        }

        @media (max-width: 520px) {
            .hero-section {
                min-height: auto;
                padding: 20px 0;
            }
            .hero-container {
                padding: 32px 16px;
            }
            .section-container {
                padding: 40px 16px;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-item .stat-number {
                font-size: 1.8rem;
            }
            .hero-main-card .matchup {
                font-size: 1.2rem;
            }
        }

/* roulang page: article */
:root {
            --color-primary: #0f172a;
            --color-primary-light: #1e293b;
            --color-accent: #f97316;
            --color-accent-light: #fb923c;
            --color-accent-dark: #ea580c;
            --color-surface: #ffffff;
            --color-surface-alt: #f8fafc;
            --color-muted: #64748b;
            --color-muted-light: #94a3b8;
            --color-border: #e2e8f0;
            --radius-lg: 1rem;
            --radius-xl: 1.25rem;
            --shadow-card: 0 1px 3px 0 rgba(0,0,0,0.04), 0 1px 2px -1px rgba(0,0,0,0.06);
            --shadow-card-hover: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
            --transition-fast: 180ms ease;
            --transition-smooth: 280ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        *, *::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: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
            line-height: 1.7;
            color: #1e293b;
            background-color: #f8fafc;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input {
            font-family: inherit;
        }

        /* Header / Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            box-shadow: var(--shadow-card);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 62px;
            gap: 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.1rem;
            color: #0f172a;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex-shrink: 0;
        }

        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.925rem;
            font-weight: 500;
            color: #475569;
            transition: all var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a:hover {
            color: #0f172a;
            background: #f1f5f9;
        }

        .nav-links a.active {
            color: #f97316;
            background: #fff7ed;
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 1px;
            left: 16px;
            right: 16px;
            height: 2.5px;
            background: #f97316;
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn-nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 2px 8px rgba(249,115,22,0.25);
            white-space: nowrap;
        }

        .btn-nav-cta:hover {
            box-shadow: 0 4px 16px rgba(249,115,22,0.4);
            transform: translateY(-1px);
        }

        /* Mobile menu toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: #475569;
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: #f1f5f9;
        }

        /* Main layout */
        .page-main {
            max-width: 1280px;
            margin: 0 auto;
            padding: 28px 24px 60px;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 32px;
            align-items: start;
        }

        /* Breadcrumb */
        .breadcrumb {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: #64748b;
            flex-wrap: wrap;
            padding-bottom: 4px;
        }

        .breadcrumb a {
            color: #64748b;
            transition: color var(--transition-fast);
        }

        .breadcrumb a:hover {
            color: #f97316;
        }

        .breadcrumb .separator {
            color: #cbd5e1;
            font-size: 0.7rem;
        }

        .breadcrumb .current {
            color: #0f172a;
            font-weight: 500;
        }

        .breadcrumb .crumb-tag {
            display: inline-block;
            padding: 3px 10px;
            background: #fff7ed;
            color: #f97316;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Article content area */
        .article-main {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 36px 40px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 18px;
            font-size: 0.875rem;
            color: #64748b;
        }

        .article-meta .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta .meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #cbd5e1;
        }

        .article-category-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #fff7ed;
            color: #f97316;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #fed7aa;
        }

        .article-h1 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.35;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .article-featured-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 28px;
            box-shadow: var(--shadow-card);
        }

        .article-featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16 / 9;
        }

        .article-content {
            font-size: 1.05rem;
            line-height: 1.85;
            color: #334155;
        }

        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-top: 36px;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f1f5f9;
        }

        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-top: 28px;
            margin-bottom: 10px;
        }

        .article-content p {
            margin-bottom: 16px;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 16px;
            padding-left: 24px;
        }

        .article-content li {
            margin-bottom: 8px;
        }

        .article-content blockquote {
            border-left: 4px solid #f97316;
            padding: 14px 20px;
            margin: 20px 0;
            background: #fff7ed;
            border-radius: 0 8px 8px 0;
            color: #7c2d12;
            font-style: italic;
        }

        .article-content img {
            border-radius: 8px;
            margin: 20px 0;
        }

        .article-content strong {
            color: #0f172a;
            font-weight: 700;
        }

        .article-content a {
            color: #f97316;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .article-content a:hover {
            color: #ea580c;
        }

        /* Article footer area */
        .article-footer-actions {
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: #f1f5f9;
            color: #475569;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: all var(--transition-fast);
            border: 1px solid #e2e8f0;
        }

        .btn-back:hover {
            background: #e2e8f0;
            color: #0f172a;
        }

        .btn-share-group {
            display: flex;
            gap: 8px;
        }

        .btn-share {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
            color: #64748b;
            transition: all var(--transition-fast);
            cursor: pointer;
            background: #fff;
            font-size: 0.95rem;
        }

        .btn-share:hover {
            background: #f1f5f9;
            color: #0f172a;
            border-color: #cbd5e1;
        }

        /* Sidebar */
        .article-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
        }

        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sidebar-card h3 .icon-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #f97316;
            flex-shrink: 0;
        }

        .sidebar-related-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .sidebar-related-item:last-child {
            border-bottom: none;
        }

        .sidebar-related-item:hover {
            opacity: 0.8;
        }

        .sidebar-related-thumb {
            width: 72px;
            height: 52px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f1f5f9;
        }

        .sidebar-related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sidebar-related-info {
            flex: 1;
            min-width: 0;
        }

        .sidebar-related-info .rel-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .sidebar-related-info .rel-date {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: 4px;
        }

        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .sidebar-tag {
            display: inline-block;
            padding: 6px 14px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #475569;
            transition: all var(--transition-fast);
            cursor: pointer;
            font-weight: 500;
        }

        .sidebar-tag:hover {
            background: #fff7ed;
            border-color: #fed7aa;
            color: #f97316;
        }

        .sidebar-cta-card {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            color: #fff;
            text-align: center;
            border: none;
        }

        .sidebar-cta-card h3 {
            color: #fff;
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .sidebar-cta-card p {
            font-size: 0.875rem;
            color: #cbd5e1;
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .btn-sidebar-cta {
            display: inline-block;
            padding: 10px 24px;
            background: #f97316;
            color: #fff;
            font-weight: 700;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all var(--transition-smooth);
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(249,115,22,0.4);
        }

        .btn-sidebar-cta:hover {
            background: #fb923c;
            box-shadow: 0 4px 20px rgba(249,115,22,0.55);
            transform: translateY(-2px);
        }

        /* Not found state */
        .not-found-area {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: 60px 40px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            grid-column: 1 / -1;
        }

        .not-found-icon {
            font-size: 4rem;
            color: #f97316;
            margin-bottom: 20px;
        }

        .not-found-area h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .not-found-area p {
            color: #64748b;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        .btn-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border-radius: 10px;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 14px rgba(249,115,22,0.3);
            border: none;
            cursor: pointer;
        }

        .btn-home:hover {
            box-shadow: 0 6px 22px rgba(249,115,22,0.45);
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #0f172a;
            color: #e2e8f0;
            padding: 48px 24px 28px;
            margin-top: 40px;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .footer-links h4 {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 14px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 8px;
        }

        .footer-links ul li a {
            color: #94a3b8;
            font-size: 0.875rem;
            transition: color var(--transition-fast);
        }

        .footer-links ul li a:hover {
            color: #f97316;
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 32px auto 0;
            padding-top: 20px;
            border-top: 1px solid #1e293b;
            text-align: center;
            color: #64748b;
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-main {
                grid-template-columns: 1fr 280px;
                gap: 24px;
            }
            .article-main {
                padding: 28px 24px;
            }
            .article-h1 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                height: 56px;
                padding: 0 16px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 56px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 16px;
                box-shadow: var(--shadow-elevated);
                border-bottom: 1px solid var(--color-border);
                z-index: 99;
                gap: 2px;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .nav-links a.active::after {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .header-actions .btn-nav-cta {
                display: none;
            }
            .page-main {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px 16px 40px;
            }
            .article-main {
                padding: 24px 18px;
            }
            .article-h1 {
                font-size: 1.4rem;
            }
            .article-content {
                font-size: 1rem;
            }
            .article-sidebar {
                gap: 16px;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 520px) {
            .article-main {
                padding: 20px 14px;
                border-radius: 12px;
            }
            .article-h1 {
                font-size: 1.25rem;
            }
            .article-meta {
                font-size: 0.8rem;
                gap: 8px;
            }
            .article-content {
                font-size: 0.95rem;
            }
            .article-footer-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-back {
                justify-content: center;
            }
            .btn-share-group {
                justify-content: center;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar-cta-card {
                padding: 22px 18px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --primary-light: #ff6b6b;
            --secondary: #1d3557;
            --secondary-dark: #0d1b2a;
            --accent: #f4a261;
            --accent-glow: #ffb703;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --bg-gray: #f1f3f5;
            --bg-dark: #0f1419;
            --bg-card: #ffffff;
            --text-primary: #1a1a2e;
            --text-secondary: #495057;
            --text-weak: #868e96;
            --text-white: #ffffff;
            --text-on-dark: #e9ecef;
            --border-light: #e9ecef;
            --border-medium: #dee2e6;
            --border-strong: #ced4da;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
            --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.3);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 50px;
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
            --max-width: 1280px;
            --header-height: 68px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* Header & Navigation */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--secondary);
            white-space: nowrap;
            transition: color var(--transition-fast);
        }

        .header-logo:hover {
            color: var(--primary);
        }

        .header-logo .logo-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: nowrap;
        }

        .nav-links li a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }

        .nav-links li a:hover {
            color: var(--primary);
            background: rgba(230, 57, 70, 0.06);
        }

        .nav-links li a.active {
            color: var(--primary);
            background: rgba(230, 57, 70, 0.1);
            font-weight: 600;
        }

        .header-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--bg-gray);
            border-radius: var(--radius-full);
            padding: 0 4px 0 16px;
            border: 2px solid transparent;
            transition: all var(--transition-fast);
            min-width: 180px;
        }

        .header-search:focus-within {
            border-color: var(--primary-light);
            background: var(--bg-white);
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.08);
        }

        .header-search input {
            border: none;
            background: transparent;
            padding: 9px 0;
            font-size: 0.875rem;
            color: var(--text-primary);
            width: 120px;
            flex: 1;
        }

        .header-search input::placeholder {
            color: var(--text-weak);
        }

        .header-search button {
            background: var(--primary);
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            flex-shrink: 0;
        }

        .header-search button:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 10px 20px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all var(--transition-fast);
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
        }

        .header-cta:hover {
            box-shadow: 0 6px 22px rgba(230, 57, 70, 0.5);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition-fast);
        }

        .mobile-menu-toggle:hover {
            background: var(--bg-gray);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--bg-dark);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 27, 42, 0.75) 0%, rgba(13, 27, 42, 0.9) 60%, rgba(15, 20, 25, 0.95) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0;
            max-width: 720px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230, 57, 70, 0.2);
            border: 1px solid rgba(230, 57, 70, 0.4);
            color: #ffb3b3;
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(230, 57, 70, 0);
            }
        }

        .hero-badge .live-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            animation: blink-dot 1s infinite;
        }

        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--primary-light), var(--accent-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 580px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary), #ff4757);
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-base);
            box-shadow: 0 6px 24px rgba(230, 57, 70, 0.45);
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(230, 57, 70, 0.6);
        }

        .btn-hero-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            padding: 14px 28px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all var(--transition-base);
        }

        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        /* Section Common */
        .section {
            padding: 70px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary);
            background: rgba(230, 57, 70, 0.08);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Sports Type Cards */
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .sport-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .sport-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-slow);
        }

        .sport-card:hover {
            border-color: transparent;
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }

        .sport-card:hover::before {
            transform: scaleX(1);
        }

        .sport-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            transition: all var(--transition-base);
        }

        .sport-card:hover .sport-icon {
            transform: scale(1.1);
        }

        .sport-icon.football {
            background: #e8f5e9;
            color: #2e7d32;
        }
        .sport-icon.basketball {
            background: #fff3e0;
            color: #e65100;
        }
        .sport-icon.tennis {
            background: #fce4ec;
            color: #c62828;
        }
        .sport-icon.esports {
            background: #e3f2fd;
            color: #1565c0;
        }

        .sport-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .sport-card p {
            font-size: 0.85rem;
            color: var(--text-weak);
            line-height: 1.5;
        }

        /* Countdown / Live Status Bar */
        .live-status-bar {
            background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
            color: #fff;
            padding: 20px 0;
            overflow: hidden;
        }

        .live-status-inner {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .live-match-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.08);
            padding: 12px 20px;
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }

        .live-match-item:hover {
            background: rgba(255, 255, 255, 0.14);
        }

        .live-indicator {
            width: 10px;
            height: 10px;
            background: #00ff88;
            border-radius: 50%;
            animation: blink-dot 1s infinite;
            flex-shrink: 0;
        }

        .live-match-teams {
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .live-match-score {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--accent-glow);
        }

        .live-match-time {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* Content Cards */
        .content-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .content-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
        }

        .content-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: transparent;
        }

        .content-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .content-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .content-card:hover .content-card-image img {
            transform: scale(1.06);
        }

        .content-card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--primary);
            color: #fff;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .content-card-body {
            padding: 20px;
        }

        .content-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .content-card-body p {
            font-size: 0.85rem;
            color: var(--text-weak);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .content-card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--text-weak);
        }

        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .advantage-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            border: 1px solid var(--border-light);
            transition: all var(--transition-base);
            text-align: center;
        }

        .advantage-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
            transform: translateY(-4px);
        }

        .advantage-icon-wrap {
            width: 64px;
            height: 64px;
            margin: 0 auto 18px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(244, 162, 97, 0.1));
            color: var(--primary);
            transition: all var(--transition-base);
        }

        .advantage-card:hover .advantage-icon-wrap {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            transform: rotateY(180deg);
        }

        .advantage-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .advantage-card p {
            font-size: 0.9rem;
            color: var(--text-weak);
            line-height: 1.6;
        }

        /* Stats */
        .stats-section {
            background: linear-gradient(135deg, var(--secondary-dark), #1a2a3a);
            padding: 60px 0;
            color: #fff;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-glow), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
        }

        .stat-item .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: all var(--transition-fast);
        }

        .faq-item:hover {
            border-color: var(--border-medium);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            width: 100%;
            background: none;
            padding: 20px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            transition: color var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question .faq-icon {
            font-size: 0.85rem;
            color: var(--text-weak);
            transition: all var(--transition-base);
            flex-shrink: 0;
            margin-left: 12px;
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-question .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-item.open {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.06);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #c0392b);
            padding: 70px 0;
            text-align: center;
            color: #fff;
        }

        .cta-section .section-title {
            color: #fff;
        }

        .cta-section .section-desc {
            color: rgba(255, 255, 255, 0.85);
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1.1rem;
            transition: all var(--transition-base);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
        }

        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
            background: #fffef5;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-dark);
            color: #cbd5e1;
            padding: 50px 0 0;
        }

        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #94a3b8;
        }

        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-links ul li {
            margin-bottom: 8px;
        }

        .footer-links ul li a {
            font-size: 0.9rem;
            color: #94a3b8;
            transition: color var(--transition-fast);
        }

        .footer-links ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .sports-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .content-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-title {
                font-size: 2.4rem;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            .header-search {
                min-width: 140px;
            }
            .header-search input {
                width: 80px;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                gap: 10px;
            }
            .nav-links {
                order: 3;
                width: 100%;
                justify-content: center;
                overflow-x: auto;
                gap: 2px;
                padding-bottom: 4px;
            }
            .nav-links li a {
                padding: 7px 12px;
                font-size: 0.8rem;
            }
            .header-search {
                order: 2;
                min-width: auto;
                flex: 1;
                max-width: 200px;
            }
            .header-cta {
                order: 2;
                padding: 8px 14px;
                font-size: 0.8rem;
            }
            .mobile-menu-toggle {
                display: block;
                order: 3;
            }
            .header-search,
            .header-cta {
                display: none;
            }
            .mobile-menu-open .header-search,
            .mobile-menu-open .header-cta {
                display: flex;
            }
            .hero-title {
                font-size: 1.9rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .hero-content {
                padding: 50px 0;
            }
            .hero-section {
                min-height: 400px;
            }
            .sports-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
            .content-cards-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .section {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .live-status-inner {
                gap: 14px;
            }
            .live-match-item {
                padding: 10px 14px;
            }
            .stat-item .stat-number {
                font-size: 2rem;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 22px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.5rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                width: 100%;
                justify-content: center;
            }
            .sports-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-item .stat-number {
                font-size: 1.7rem;
            }
            .section-title {
                font-size: 1.4rem;
            }
            .sport-card {
                padding: 24px 18px;
            }
            .btn-cta-large {
                padding: 14px 24px;
                font-size: 0.95rem;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #e63946;
            --primary-dark: #c1121f;
            --primary-light: #ff6b6b;
            --secondary: #1d3557;
            --secondary-dark: #0d1b2a;
            --accent: #f4a261;
            --accent-glow: #ffb703;
            --bg: #f8f9fa;
            --bg-card: #ffffff;
            --bg-dark: #1a1a2e;
            --bg-darker: #0f0f1a;
            --text: #1a1a2e;
            --text-weak: #6b7280;
            --text-light: #9ca3af;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(0, 0, 0, 0.08);
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            outline: none;
        }

        input {
            font-family: inherit;
            outline: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container-narrow {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER / NAV ============ */
        .site-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--transition);
        }

        .site-header.scrolled {
            box-shadow: var(--shadow);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 16px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--secondary);
            letter-spacing: -0.01em;
            white-space: nowrap;
            font-family: var(--font-heading);
        }

        .header-logo .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 4px;
            margin: 0;
            padding: 0;
        }

        .nav-links li a {
            display: block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.925rem;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition);
            white-space: nowrap;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--secondary);
            background: #f1f5f9;
        }

        .nav-links li a.active {
            color: #ffffff;
            background: var(--primary);
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
        }

        .nav-links li a.active:hover {
            background: var(--primary-dark);
            color: #ffffff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .header-search {
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 7px 14px;
            gap: 8px;
            transition: all var(--transition);
            width: 200px;
        }

        .header-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.08);
            background: #fff;
        }

        .header-search input {
            border: none;
            background: transparent;
            width: 100%;
            font-size: 0.875rem;
            color: var(--text);
        }

        .header-search input::placeholder {
            color: var(--text-light);
        }

        .header-search .search-icon {
            color: var(--text-weak);
            font-size: 0.9rem;
        }

        .btn-nav-cta {
            background: var(--primary);
            color: #fff;
            padding: 9px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.875rem;
            white-space: nowrap;
            transition: all var(--transition);
            box-shadow: 0 2px 10px rgba(230, 57, 70, 0.25);
        }

        .btn-nav-cta:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 6px 10px;
            border-radius: 8px;
            transition: background var(--transition);
        }

        .mobile-menu-toggle:hover {
            background: #f1f5f9;
        }

        /* ============ HERO ============ */
        .hero-category {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: var(--bg-darker);
        }

        .hero-category .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            z-index: 0;
        }

        .hero-category .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(15, 15, 26, 0.95) 100%);
            z-index: 1;
        }

        .hero-category .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 20px;
            max-width: 700px;
        }

        .hero-category .hero-badge {
            display: inline-block;
            background: rgba(230, 57, 70, 0.2);
            color: var(--primary-light);
            border: 1px solid rgba(230, 57, 70, 0.35);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 20px;
        }

        .hero-category h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 16px;
            font-family: var(--font-heading);
            letter-spacing: -0.02em;
        }

        .hero-category h1 .highlight {
            background: linear-gradient(135deg, var(--primary-light), var(--accent-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-category .hero-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-category .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-hero-primary {
            background: var(--primary);
            color: #fff;
            padding: 14px 32px;
            border-radius: 28px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition);
            box-shadow: 0 6px 24px rgba(230, 57, 70, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 8px 32px rgba(230, 57, 70, 0.5);
            transform: translateY(-2px);
        }

        .btn-hero-outline {
            background: transparent;
            color: #fff;
            padding: 14px 32px;
            border-radius: 28px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 72px 0;
        }

        .section-dark {
            background: var(--bg-dark);
            color: #fff;
            padding: 72px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
            font-family: var(--font-heading);
            letter-spacing: -0.01em;
        }

        .section-dark .section-title {
            color: #fff;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-weak);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.7;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.65);
        }

        .text-center {
            text-align: center;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* ============ CARDS ============ */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .card-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--border);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 16px;
            flex-shrink: 0;
        }

        .card .card-icon.red {
            background: #fef2f2;
            color: var(--primary);
        }
        .card .card-icon.blue {
            background: #eff6ff;
            color: #3b82f6;
        }
        .card .card-icon.green {
            background: #f0fdf4;
            color: #22c55e;
        }
        .card .card-icon.amber {
            background: #fffbeb;
            color: #f59e0b;
        }

        .card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
            font-family: var(--font-heading);
        }

        .card p {
            font-size: 0.925rem;
            color: var(--text-weak);
            line-height: 1.65;
        }

        .card-image-top {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border);
            transition: all var(--transition);
        }

        .card-image-top:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: transparent;
        }

        .card-image-top img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .card-image-top .card-body {
            padding: 20px;
        }

        .card-image-top h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text);
            font-family: var(--font-heading);
        }

        .card-image-top p {
            font-size: 0.875rem;
            color: var(--text-weak);
            line-height: 1.6;
        }

        .card-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        .card-tag.red {
            background: #fef2f2;
            color: var(--primary);
        }
        .card-tag.blue {
            background: #eff6ff;
            color: #3b82f6;
        }
        .card-tag.green {
            background: #f0fdf4;
            color: #22c55e;
        }

        /* ============ STEPS / TIMELINE ============ */
        .steps-list {
            list-style: none;
            padding: 0;
            counter-reset: step;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .steps-list li {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            counter-increment: step;
            transition: all var(--transition);
        }

        .steps-list li:last-child {
            border-bottom: none;
        }

        .steps-list li .step-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .steps-list li:nth-child(even) .step-number {
            background: var(--secondary);
        }

        .steps-list li .step-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
            font-family: var(--font-heading);
        }

        .steps-list li .step-content p {
            font-size: 0.925rem;
            color: var(--text-weak);
            line-height: 1.6;
        }

        .section-dark .steps-list li {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }
        .section-dark .steps-list li .step-content h4 {
            color: #fff;
        }
        .section-dark .steps-list li .step-content p {
            color: rgba(255, 255, 255, 0.65);
        }

        /* ============ FAQ ============ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition);
        }

        .faq-item:hover {
            border-color: #d1d5db;
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            background: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            gap: 16px;
            transition: background var(--transition);
            cursor: pointer;
            font-family: var(--font-heading);
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-question .faq-toggle-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            transition: all var(--transition);
            color: var(--text-weak);
        }

        .faq-item.open .faq-toggle-icon {
            background: var(--primary);
            color: #fff;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 22px 18px;
        }

        .faq-answer p {
            font-size: 0.925rem;
            color: var(--text-weak);
            line-height: 1.7;
        }

        /* ============ CTA ============ */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
            color: #fff;
            text-align: center;
            padding: 64px 20px;
            border-radius: var(--radius-xl);
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(244, 162, 97, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .cta-section .cta-inner {
            position: relative;
            z-index: 1;
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
            font-family: var(--font-heading);
        }

        .cta-section p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: #fff;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all var(--transition);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45);
        }

        .btn-cta-large:hover {
            background: var(--primary-dark);
            box-shadow: 0 12px 40px rgba(230, 57, 70, 0.55);
            transform: translateY(-3px);
        }

        /* ============ FOOTER ============ */
        .site-footer {
            background: var(--bg-darker);
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 20px 24px;
            margin-top: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            font-family: var(--font-heading);
        }

        .footer-brand p {
            font-size: 0.875rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-links h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            font-family: var(--font-heading);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links ul li a {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.55);
            transition: color var(--transition);
        }

        .footer-links ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 32px auto 0;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ============ STATS ROW ============ */
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .stat-item {
            text-align: center;
            padding: 20px 28px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            min-width: 140px;
            transition: all var(--transition);
        }

        .stat-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }

        .stat-item .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            font-family: var(--font-heading);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-item .stat-label {
            font-size: 0.85rem;
            color: var(--text-weak);
            font-weight: 500;
        }

        .section-dark .stat-item {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .section-dark .stat-item .stat-number {
            color: var(--accent-glow);
        }
        .section-dark .stat-item .stat-label {
            color: rgba(255, 255, 255, 0.6);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .card-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .header-search {
                width: 150px;
            }
            .hero-category h1 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                height: auto;
                padding: 10px 0;
                gap: 10px;
            }
            .header-logo {
                font-size: 1.05rem;
                gap: 6px;
            }
            .header-logo .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
            .header-actions {
                display: none;
            }
            .nav-links {
                order: 3;
                width: 100%;
                overflow-x: auto;
                gap: 2px;
                padding-bottom: 6px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .nav-links::-webkit-scrollbar {
                display: none;
            }
            .nav-links li a {
                font-size: 0.8rem;
                padding: 7px 12px;
                border-radius: 16px;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .hero-category {
                min-height: 420px;
            }
            .hero-category h1 {
                font-size: 1.8rem;
            }
            .hero-category .hero-desc {
                font-size: 0.95rem;
            }
            .section {
                padding: 48px 0;
            }
            .section-dark {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .card-grid-3 {
                grid-template-columns: 1fr;
            }
            .cta-section {
                margin: 0 12px;
                padding: 40px 16px;
                border-radius: var(--radius-lg);
            }
            .cta-section h2 {
                font-size: 1.5rem;
            }
            .stats-row {
                gap: 12px;
            }
            .stat-item {
                min-width: 110px;
                padding: 14px 16px;
            }
            .stat-item .stat-number {
                font-size: 1.6rem;
            }
            .steps-list li {
                flex-direction: column;
                gap: 10px;
                padding: 16px 0;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .btn-hero-primary,
            .btn-hero-outline {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .btn-cta-large {
                padding: 14px 30px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 520px) {
            .hero-category h1 {
                font-size: 1.5rem;
            }
            .hero-category .hero-desc {
                font-size: 0.85rem;
            }
            .hero-category .hero-btns {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }
            .hero-category .hero-btns a {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            .section-title {
                font-size: 1.3rem;
            }
            .faq-question {
                font-size: 0.9rem;
                padding: 14px 16px;
            }
            .faq-answer {
                padding: 0 16px;
            }
            .faq-item.open .faq-answer {
                padding: 0 16px 14px;
            }
        }
