/* roulang page: index */
:root {
            --primary: #E4482E;
            --dark: #15181D;
            --accent: #FFC63F;
            --bgsoft: #F6F4F1;
            --muted: #7A7A7A;
            --line: #E5E1DB;
            --primarysoft: #FDEBE7;
            --success: #2EA56C;
            --warning: #C2591E;
            --radius: 12px;
            --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
            --container: 1200px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: #f6f4f1;
            color: #15181d;
            line-height: 1.7;
            font-size: 15px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button,
        input {
            font-family: inherit;
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 8px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.2;
            cursor: pointer;
            border: 1.5px solid transparent;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .btn:focus-visible {
            outline: 3px solid rgba(228, 72, 46, 0.3);
            outline-offset: 2px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            padding-right: 28px;
            padding-left: 22px;
        }
        .btn-primary:hover {
            background: #c7381f;
            transform: translateY(-1px);
        }
        .btn-primary:active {
            background: #b0301a;
            transform: translateY(1px);
        }
        .btn-accent {
            background: var(--accent);
            color: #15181d;
            clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
            padding-right: 30px;
            padding-left: 24px;
            box-shadow: 0 4px 14px rgba(255, 198, 63, 0.35);
        }
        .btn-accent:hover {
            background: #ffb41f;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(255, 198, 63, 0.45);
        }
        .btn-accent:active {
            transform: translateY(1px);
        }
        .btn-outline {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.8);
            color: #fff;
            border-radius: 8px;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }
        .btn-outline-dark {
            background: transparent;
            border-color: var(--primary);
            color: var(--primary);
            border-radius: 8px;
        }
        .btn-outline-dark:hover {
            background: var(--primarysoft);
        }
        .btn-outline-dark:active {
            background: var(--primary);
            color: #fff;
        }
        .btn-disabled,
        .btn:disabled {
            opacity: 0.5;
            pointer-events: none;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.4;
        }
        .badge-primary {
            background: var(--primarysoft);
            color: var(--primary);
        }
        .badge-dark {
            background: var(--dark);
            color: #fff;
        }
        .badge-accent {
            background: var(--accent);
            color: #15181d;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
        }
        .link-underline {
            position: relative;
            display: inline-block;
        }
        .link-underline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .link-underline:hover::after {
            width: 100%;
        }
        .section-pad {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section-pad {
                padding: 48px 0;
            }
        }
        .table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .table-scroll table {
            min-width: 640px;
        }
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            color: var(--muted);
            font-size: 14px;
            gap: 12px;
        }
        .empty-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #f0edea;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        .faq-item {
            border-bottom: 1px solid var(--line);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.2s;
            gap: 16px;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primarysoft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--primary);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: var(--primary);
            color: #fff;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0;
            font-size: 14.5px;
            color: #5a5a5a;
            line-height: 1.75;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 0 20px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--line);
        }
        .nav-link {
            font-size: 14.5px;
            font-weight: 600;
            color: #444;
            padding: 6px 2px;
            position: relative;
            transition: color 0.25s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            height: 2px;
            width: 0;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .nav-link.active {
            color: var(--primary);
            font-weight: 700;
        }
        .nav-link.active::after {
            width: 100%;
            background: var(--primary);
        }
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-box svg {
            position: absolute;
            left: 14px;
            width: 16px;
            height: 16px;
            color: #9a9a9a;
            pointer-events: none;
        }
        .search-box input {
            width: 140px;
            height: 38px;
            border-radius: 999px;
            border: 1.5px solid transparent;
            background: #f1efec;
            padding: 0 16px 0 38px;
            font-size: 13px;
            color: #333;
            outline: none;
            transition: all 0.2s ease;
        }
        .search-box input::placeholder {
            color: #a0a0a0;
        }
        .search-box input:focus {
            width: 200px;
            background: #fff;
            border-color: var(--primary);
        }
        .logo-badge {
            width: 36px;
            height: 36px;
            background: var(--dark);
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 800;
            border-radius: 4px 0 6px 0;
        }
        .hero-section {
            background: var(--dark);
            position: relative;
            overflow: hidden;
            color: #fff;
            padding: 72px 0 90px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 62%;
            height: 100%;
            background: linear-gradient(135deg, rgba(228, 72, 46, 0.35) 0%, rgba(228, 72, 46, 0.05) 70%);
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }
        .hero-watermark {
            position: absolute;
            bottom: -30px;
            left: 20px;
            font-size: 110px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.04);
            letter-spacing: 0.05em;
            line-height: 1;
            z-index: 1;
            pointer-events: none;
            white-space: nowrap;
        }
        .hero-content {
            position: relative;
            z-index: 5;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(4px);
        }
        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }
        .hero-img-wrap {
            position: relative;
            z-index: 5;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
            transform: rotate(1.5deg);
        }
        .hero-img-wrap img {
            width: 100%;
            height: 360px;
            object-fit: cover;
        }
        .hero-ornament {
            position: absolute;
            bottom: 24px;
            right: 24px;
            width: 90px;
            height: 90px;
            background: var(--primary);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
            z-index: 6;
            opacity: 0.9;
        }
        .benefit-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .benefit-table th {
            padding: 16px 20px;
            background: var(--dark);
            color: #fff;
            font-weight: 600;
            text-align: left;
            font-size: 14px;
        }
        .benefit-table th.member-col {
            background: var(--primary);
            color: #fff;
            position: relative;
        }
        .benefit-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--line);
            background: #fff;
            color: #555;
        }
        .benefit-table td.member-cell {
            background: var(--primarysoft);
            color: #333;
            font-weight: 500;
        }
        .benefit-table td.free-cell {
            color: #9a9a9a;
        }
        .benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            margin-right: 6px;
        }
        .icon-check {
            background: rgba(46, 165, 108, 0.15);
            color: #2EA56C;
        }
        .icon-cross {
            background: rgba(228, 72, 46, 0.12);
            color: #E4482E;
        }
        .level-card {
            border-radius: 12px;
            padding: 32px 24px 28px;
            background: #fff;
            border: 1.5px solid var(--line);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .level-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .level-card.featured {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(228, 72, 46, 0.12);
            transform: translateY(-8px);
            background: linear-gradient(180deg, #fff 0%, #fff7f5 100%);
        }
        .level-card.featured:hover {
            transform: translateY(-12px);
        }
        .level-tag {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 14px;
            background: #f1f1f1;
            color: #666;
        }
        .level-tag.bronze {
            background: #f0e6d6;
            color: #8a6d3b;
        }
        .level-tag.silver {
            background: #e8eaf0;
            color: #5a6b8c;
        }
        .level-tag.gold {
            background: #fff3d6;
            color: #b3791f;
        }
        .level-feature {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 13.5px;
            color: #666;
            line-height: 1.6;
            margin-top: 10px;
        }
        .level-feature::before {
            content: '●';
            color: var(--primary);
            font-size: 8px;
            flex-shrink: 0;
            margin-top: 6px;
        }
        .content-card {
            flex-shrink: 0;
            width: 280px;
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .content-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
        }
        .content-cover {
            position: relative;
            height: 158px;
            overflow: hidden;
        }
        .content-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .content-card:hover .content-cover img {
            transform: scale(1.05);
        }
        .content-lock {
            position: absolute;
            inset: 0;
            background: rgba(21, 24, 29, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        .lock-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-size: 18px;
        }
        .content-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 3;
            background: var(--primary);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
        }
        .scroll-row {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--line) transparent;
        }
        .scroll-row::-webkit-scrollbar {
            height: 6px;
        }
        .scroll-row::-webkit-scrollbar-thumb {
            background: var(--line);
            border-radius: 6px;
        }
        .news-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 16px;
            border-bottom: 1px solid var(--line);
            border-radius: 8px;
            transition: background 0.2s;
        }
        .news-item:hover {
            background: #faf9f7;
        }
        .news-item:hover .news-title {
            color: var(--primary);
        }
        .news-item:hover .news-arrow {
            transform: translateX(4px);
            color: var(--primary);
        }
        .news-cat {
            flex-shrink: 0;
            width: 62px;
            text-align: center;
            background: var(--primarysoft);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 5px 8px;
            border-radius: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-title {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.2s;
        }
        .news-excerpt {
            display: block;
            font-size: 13px;
            color: #9a9a9a;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-top: 4px;
        }
        .news-time {
            flex-shrink: 0;
            font-size: 12px;
            color: #b0b0b0;
            white-space: nowrap;
        }
        .news-arrow {
            flex-shrink: 0;
            font-size: 16px;
            color: #ccc;
            transition: all 0.2s;
        }
        .cta-banner {
            position: relative;
            background: var(--dark);
            overflow: hidden;
            border-radius: 16px;
            padding: 56px 24px;
            text-align: center;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: var(--accent);
            clip-path: polygon(0 0, 100% 0, 0 100%);
            opacity: 0.8;
        }
        .cta-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 90px;
            height: 90px;
            background: var(--primary);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            opacity: 0.7;
        }
        .cta-line {
            position: absolute;
            width: 120%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            left: -10%;
        }
        .cta-line:nth-of-type(1) {
            top: 30px;
        }
        .cta-line:nth-of-type(2) {
            bottom: 40px;
        }
        footer {
            background: var(--dark);
            color: #9a9a9a;
            padding-top: 60px;
            font-size: 13.5px;
        }
        footer .footer-title {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        footer a {
            color: #9a9a9a;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            text-align: center;
            font-size: 12.5px;
            color: #7a7a7a;
            margin-top: 40px;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid var(--line);
            padding: 16px 20px;
            z-index: 99;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        }
        .mobile-menu.open {
            display: block;
        }
        .mobile-menu .nav-link {
            display: block;
            padding: 12px 4px;
            font-size: 15px;
            border-bottom: 1px solid #f0edea;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 48px 0 64px;
            }
            .hero-watermark {
                font-size: 60px;
                bottom: -10px;
            }
            .btn {
                width: 100%;
            }
            .scroll-row {
                gap: 14px;
            }
            .content-card {
                width: 240px;
            }
            .news-item {
                flex-wrap: wrap;
                gap: 10px;
                padding: 16px 12px;
            }
            .news-cat {
                width: auto;
            }
            .news-time {
                display: none;
            }
            .news-arrow {
                display: none;
            }
        }
        @media (max-width: 520px) {
            .container-site {
                padding: 0 16px;
            }
            .search-box input {
                width: 40px;
                padding: 0 0 0 36px;
                cursor: pointer;
            }
            .search-box input:focus {
                width: 120px;
            }
        }
        @media print {
            header,
            footer,
            .cta-banner,
            .mobile-menu {
                display: none !important;
            }
            body {
                background: #fff;
            }
        }

/* roulang page: category1 */
:root {
        --primary: #E4482E;
        --primary-hover: #C7381F;
        --primary-light: #FDEBE7;
        --dark: #15181D;
        --dark-soft: #1E2228;
        --accent: #FFC63F;
        --accent-hover: #FFB41F;
        --bg: #F6F4F1;
        --card: #FFFFFF;
        --text: #1A1D21;
        --text-secondary: #7A7A7A;
        --border: #E5E1DB;
        --radius: 12px;
        --shadow: 0 4px 16px rgba(0,0,0,0.06);
        --shadow-hover: 0 8px 24px rgba(0,0,0,0.10);
        --font: system-ui, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font);
        background: var(--bg);
        color: var(--text);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .container-site {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(21, 24, 29, 0.96);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .logo-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #E4482E, #C7381F);
        border-radius: 6px 6px 6px 12px;
        color: #fff;
        flex-shrink: 0;
    }

    .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.72);
        padding: 6px 2px;
        position: relative;
        transition: color 0.2s ease;
    }

    .nav-link:hover {
        color: #fff;
    }

    .nav-link.active {
        color: #fff;
        font-weight: 600;
    }

    .nav-link.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
    }

    .search-input {
        width: 140px;
        height: 38px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid transparent;
        border-radius: 999px;
        padding: 0 14px 0 36px;
        font-size: 13px;
        color: #fff;
        outline: none;
        transition: all 0.25s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a4ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 12px center;
        background-size: 16px;
    }

    .search-input:focus {
        width: 200px;
        background-color: #fff;
        color: var(--text);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(228, 72, 46, 0.15);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E4482E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    }

    .search-input::placeholder {
        color: #a0a4ab;
    }

    .btn-outline-light {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 20px;
        border-radius: 6px 6px 6px 12px;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        font-weight: 600;
        background: transparent;
        transition: all 0.22s ease;
        cursor: pointer;
    }

    .btn-outline-light:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .btn-highlight {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 22px;
        border-radius: 6px 6px 6px 12px;
        background: var(--accent);
        color: #15181D;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(255, 198, 63, 0.22);
        transition: all 0.22s ease;
        cursor: pointer;
        white-space: nowrap;
    }

    .btn-highlight:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(255, 198, 63, 0.30);
    }

    .btn-highlight:active {
        transform: translateY(1px);
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px;
        padding: 0 28px;
        border-radius: 6px 6px 6px 12px;
        background: var(--primary);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(228, 72, 46, 0.25);
        transition: all 0.22s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(228, 72, 46, 0.30);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

    .btn-accent {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        padding: 0 32px;
        border-radius: 6px 6px 6px 14px;
        background: var(--accent);
        color: #15181D;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 4px 18px rgba(255, 198, 63, 0.28);
        transition: all 0.22s ease;
        cursor: pointer;
        border: none;
    }

    .btn-accent:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 198, 63, 0.36);
    }

    .btn-accent:active {
        transform: translateY(0);
    }

    .section-title {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 15px;
        color: var(--text-secondary);
        line-height: 1.7;
        max-width: 600px;
    }

    .badge-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.88);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .badge-pill.dot::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        display: inline-block;
    }

    .hero-section {
        position: relative;
        background: var(--dark);
        overflow: hidden;
        padding: 80px 0 96px;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -10%;
        width: 55%;
        height: 140%;
        background: var(--primary);
        transform: skewX(-12deg);
        opacity: 0.16;
    }

    .hero-section::after {
        content: "华体会hth体育登录";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 120px;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.03);
        white-space: nowrap;
        pointer-events: none;
        letter-spacing: -0.02em;
        z-index: 0;
    }

    .hero-image-wrap {
        position: relative;
        border-radius: 50%;
        overflow: hidden;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
        margin-left: auto;
    }

    .hero-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent 40%, rgba(228, 72, 46, 0.18));
        border-radius: 50%;
    }

    .stat-block {
        background: var(--card);
        border-radius: var(--radius);
        padding: 24px 20px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(229, 225, 219, 0.7);
        text-align: center;
        transition: all 0.25s ease;
    }

    .stat-block:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
    }

    .stat-number {
        font-size: 36px;
        font-weight: 800;
        color: var(--primary);
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 13px;
        color: var(--text-secondary);
        margin-top: 6px;
        font-weight: 500;
    }

    .feature-card {
        background: var(--card);
        border-radius: var(--radius);
        padding: 28px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(229, 225, 219, 0.6);
        transition: all 0.25s ease;
        height: 100%;
    }

    .feature-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
        border-color: rgba(228, 72, 46, 0.3);
    }

    .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: var(--primary-light);
        color: var(--primary);
        margin-bottom: 16px;
    }

    .flow-step {
        text-align: center;
        position: relative;
        padding: 0 16px;
    }

    .flow-step::after {
        content: "";
        position: absolute;
        top: 32px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px);
    }

    .flow-step:last-child::after {
        display: none;
    }

    .flow-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-size: 24px;
        font-weight: 800;
        box-shadow: 0 6px 20px rgba(228, 72, 46, 0.28);
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
    }

    .flow-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .flow-desc {
        font-size: 13px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    .tag-chip {
        display: inline-flex;
        align-items: center;
        padding: 8px 18px;
        border-radius: 999px;
        background: var(--card);
        border: 1px solid var(--border);
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .tag-chip:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        padding: 0;
        text-align: left;
        font-family: var(--font);
        transition: color 0.2s ease;
    }

    .faq-question:hover {
        color: var(--primary);
    }

    .faq-question .icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-left: 16px;
        position: relative;
        transition: transform 0.25s ease;
    }

    .faq-question .icon::before,
    .faq-question .icon::after {
        content: "";
        position: absolute;
        background: currentColor;
        border-radius: 2px;
    }

    .faq-question .icon::before {
        width: 2px;
        height: 16px;
        top: 2px;
        left: 9px;
    }

    .faq-question .icon::after {
        width: 16px;
        height: 2px;
        top: 9px;
        left: 2px;
    }

    .faq-item.open .faq-question {
        color: var(--primary);
    }

    .faq-item.open .faq-question .icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .faq-item.open .faq-answer {
        max-height: 300px;
        padding-top: 12px;
    }

    .cta-band {
        position: relative;
        background: var(--dark);
        overflow: hidden;
        padding: 72px 0;
    }

    .cta-band::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 140px;
        height: 140px;
        background: var(--accent);
        clip-path: polygon(0 0, 100% 0, 0 100%);
        opacity: 0.12;
    }

    .cta-band::after {
        content: "";
        position: absolute;
        bottom: -40px;
        right: -20px;
        width: 260px;
        height: 120px;
        background: var(--primary);
        transform: skewX(-18deg);
        opacity: 0.16;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 22px 0;
        text-align: center;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
    }

    .footer-title {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: 0.01em;
    }

    footer ul li a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.58);
        transition: color 0.2s ease;
    }

    footer ul li a:hover {
        color: #fff;
    }

    .burger-btn {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .burger-btn:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    @media (max-width: 1023px) {
        .hero-section {
            padding: 56px 0 72px;
        }

        .hero-image-wrap {
            width: 280px;
            height: 280px;
            margin: 40px auto 0;
        }

        .section-title {
            font-size: 26px;
        }

        .flow-step::after {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .container-site {
            padding: 0 16px;
        }

        .hero-section {
            padding: 40px 0 56px;
        }

        .hero-section::after {
            font-size: 64px;
        }

        .hero-image-wrap {
            width: 220px;
            height: 220px;
        }

        .stat-number {
            font-size: 28px;
        }

        .btn-primary,
        .btn-accent {
            width: 100%;
        }

        .faq-question {
            font-size: 15px;
        }
    }

    @media print {
        .site-header,
        .cta-band,
        footer {
            display: none !important;
        }

        body {
            background: #fff;
        }

        .hero-section {
            background: #fff;
            color: #000;
        }
    }

/* roulang page: article */
:root {
            --primary: #E4482E;
            --primary-dark: #C7381F;
            --dark: #15181D;
            --accent: #FFC63F;
            --accent-hover: #FFB41F;
            --bg: #F6F4F1;
            --card: #FFFFFF;
            --text: #1F2329;
            --text-secondary: #6B7280;
            --border: #E5E1DB;
            --primary-light: #FDEBE7;
            --radius: 12px;
            --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.10);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: system-ui, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input {
            font-family: inherit;
            border: none;
            outline: none;
            background: none;
        }

        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--dark);
            color: #fff;
            border-radius: 6px 0 6px 6px;
            clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
            flex-shrink: 0;
        }

        .nav-link {
            position: relative;
            font-size: 14px;
            font-weight: 500;
            color: #4B5563;
            padding: 6px 2px;
            transition: color .2s;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width .25s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            padding: 0 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            transition: all .2s ease;
            cursor: pointer;
            white-space: nowrap;
            min-height: 40px;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-primary:active {
            transform: translateY(1px);
            background: #B02E18;
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(228, 72, 46, .3);
            outline-offset: 2px;
        }

        .btn-accent {
            background: var(--accent);
            color: var(--dark);
            border-radius: 10px 6px 10px 10px;
            box-shadow: 0 2px 10px rgba(255, 198, 63, .35);
        }

        .btn-accent:hover {
            background: var(--accent-hover);
        }

        .btn-accent:active {
            transform: translateY(1px);
        }

        .btn-accent:focus-visible {
            outline: 3px solid rgba(255, 198, 63, .4);
            outline-offset: 2px;
        }

        .btn-outline {
            border: 1.5px solid var(--primary);
            color: var(--primary);
            background: #fff;
        }

        .btn-outline:hover {
            background: var(--primary-light);
        }

        .btn-outline:active {
            background: var(--primary);
            color: #fff;
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(228, 72, 46, .25);
            outline-offset: 2px;
        }

        .btn-sm {
            height: 34px;
            padding: 0 14px;
            font-size: 13px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #F3F4F6;
            border-radius: 999px;
            padding: 0 14px;
            height: 36px;
            width: 140px;
            transition: width .2s ease, background .2s ease, box-shadow .2s ease;
        }

        .search-box:focus-within {
            width: 200px;
            background: #fff;
            box-shadow: 0 0 0 2px rgba(228, 72, 46, .25);
        }

        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 13px;
            width: 100%;
            margin-left: 8px;
            color: var(--text);
        }

        .search-box input::placeholder {
            color: #9CA3AF;
        }

        .breadcrumb {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 4px;
        }

        .breadcrumb a {
            color: var(--primary);
            font-weight: 500;
            transition: color .2s;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .breadcrumb .sep {
            color: #D1D5DB;
            margin: 0 2px;
        }

        .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 12px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            background: #fff;
            transition: all .2s;
            cursor: pointer;
        }

        .share-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
            transform: translateY(-2px);
        }

        .share-btn:active {
            transform: translateY(0);
        }

        .share-btn:focus-visible {
            outline: 2px solid rgba(228, 72, 46, .3);
            outline-offset: 2px;
        }

        .article-body {
            max-width: 720px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.7;
            color: #2D3748;
        }

        .article-body>*+* {
            margin-top: 24px;
        }

        .article-body p {
            line-height: 1.8;
            margin: 0 0 4px;
        }

        .article-body h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-top: 44px;
            margin-bottom: 16px;
            padding-left: 14px;
            border-left: 4px solid var(--primary);
            line-height: 1.4;
        }

        .article-body h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-top: 34px;
            margin-bottom: 12px;
            line-height: 1.45;
        }

        .article-body h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-top: 26px;
            margin-bottom: 10px;
        }

        .article-body blockquote {
            background: #F9FAFB;
            border-left: 4px solid var(--primary);
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            color: #4B5563;
            font-style: italic;
            margin: 28px 0;
        }

        .article-body blockquote p {
            margin: 0;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 32px auto;
        }

        .article-body ul,
        .article-body ol {
            padding-left: 26px;
            margin: 16px 0;
        }

        .article-body ul {
            list-style: disc;
        }

        .article-body ol {
            list-style: decimal;
        }

        .article-body li {
            margin: 6px 0;
            line-height: 1.75;
            padding-left: 4px;
        }

        .article-body a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 1px;
            transition: color .2s;
        }

        .article-body a:hover {
            color: var(--primary-dark);
        }

        .article-body pre {
            background: var(--dark);
            color: #E5E7EB;
            padding: 20px;
            border-radius: 10px;
            overflow-x: auto;
            font-size: 14px;
            line-height: 1.6;
            margin: 28px 0;
        }

        .article-body code {
            background: #F3F4F6;
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 14px;
            color: #C0392B;
        }

        .article-body pre code {
            background: transparent;
            padding: 0;
            color: inherit;
            font-size: 14px;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            font-size: 14px;
        }

        .article-body table th,
        .article-body table td {
            border: 1px solid var(--border);
            padding: 10px 14px;
            text-align: left;
        }

        .article-body table th {
            background: #F9FAFB;
            font-weight: 600;
            color: var(--dark);
        }

        .card-hover {
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .link-underline {
            position: relative;
            display: inline-block;
        }

        .link-underline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .link-underline:hover::after {
            transform: scaleX(1);
        }

        .related-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform .3s ease, box-shadow .3s ease;
            display: block;
            border: 1px solid rgba(229, 225, 219, 0.6);
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .related-card .related-cover {
            position: relative;
            overflow: hidden;
            height: 160px;
        }

        .related-card .related-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease;
        }

        .related-card:hover .related-cover img {
            transform: scale(1.04);
        }

        .footer-title {
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 18px;
        }

        footer ul li a,
        footer ul li {
            font-size: 14px;
            color: #8A8F98;
            transition: color .2s;
            list-style: none;
        }

        footer ul li a:hover {
            color: #fff;
        }

        .mobile-menu-link {
            display: block;
            padding: 12px 0;
            font-size: 15px;
            font-weight: 500;
            color: #374151;
            border-bottom: 1px solid #F3F4F6;
            transition: color .2s;
        }

        .mobile-menu-link:hover {
            color: var(--primary);
        }

        .mobile-menu-link.active {
            color: var(--primary);
            font-weight: 700;
        }

        @media print {
            header,
            footer,
            .no-print {
                display: none !important;
            }
            body {
                background: #fff;
            }
            .article-body {
                max-width: 100%;
            }
            .article-body h2 {
                page-break-after: avoid;
            }
        }

        @media (max-width: 767px) {
            .search-box {
                display: none;
            }
            .article-body {
                font-size: 15px;
            }
            .article-body h2 {
                font-size: 20px;
            }
            .article-body h3 {
                font-size: 17px;
            }
            .article-body blockquote {
                padding: 14px 16px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #E4482E;
            --dark: #15181D;
            --accent: #FFC63F;
            --bg-warm: #F6F4F1;
            --card-bg: #FFFFFF;
            --text-sub: #7A7A7A;
            --line: #E5E1DB;
            --primary-light: #FDEBE7;
            --success: #2EA56C;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            background-color: var(--bg-warm);
            color: #1a1d21;
            line-height: 1.7;
            font-size: 16px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            cursor: pointer;
            font-family: inherit;
        }
        input {
            font-family: inherit;
        }
        .container-site {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-link {
            position: relative;
            font-weight: 600;
            font-size: 15px;
            color: #3d3d3d;
            padding: 6px 2px;
            transition: color 0.2s ease;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        .nav-link.active {
            color: var(--primary);
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--dark);
            color: #fff;
            border-radius: 8px 2px 8px 2px;
            flex-shrink: 0;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 24px;
            min-height: 40px;
            border-radius: 10px 4px 10px 4px;
            transition: all 0.2s ease;
            border: none;
        }
        .btn-primary:hover {
            background: #C7381F;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(228, 72, 46, 0.25);
        }
        .btn-primary:active {
            background: #B32F18;
            transform: translateY(1px);
            box-shadow: none;
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(228, 72, 46, 0.3);
            outline-offset: 2px;
        }
        .btn-accent {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--dark);
            font-weight: 700;
            font-size: 15px;
            padding: 10px 28px;
            min-height: 42px;
            border-radius: 10px 4px 10px 4px;
            transition: all 0.2s ease;
            border: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .btn-accent:hover {
            background: #FFB41F;
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(255, 196, 63, 0.3);
        }
        .btn-accent:active {
            transform: translateY(1px);
            box-shadow: none;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            padding: 9px 24px;
            min-height: 40px;
            border-radius: 10px 4px 10px 4px;
            border: 1.5px solid var(--primary);
            transition: all 0.2s ease;
        }
        .btn-outline:hover {
            background: rgba(228, 72, 46, 0.08);
        }
        .btn-outline:active {
            background: var(--primary);
            color: #fff;
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        }
        .search-box {
            display: flex;
            align-items: center;
            background: #f0eeeb;
            border-radius: 50px;
            padding: 0 14px;
            height: 38px;
            width: 140px;
            transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
            border: 1.5px solid transparent;
        }
        .search-box:focus-within {
            width: 200px;
            background: #fff;
            border-color: rgba(228, 72, 46, 0.6);
        }
        .search-box input {
            border: none;
            outline: none;
            background: transparent;
            width: 100%;
            font-size: 14px;
            color: #1a1d21;
            margin-left: 8px;
        }
        .search-box input::placeholder {
            color: #9a9a9a;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.7;
        }
        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
        }
        .tag-outline {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 50px;
            border: 1px solid var(--line);
            font-size: 13px;
            font-weight: 500;
            color: var(--text-sub);
            transition: all 0.2s ease;
        }
        .tag-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(228, 72, 46, 0.04);
        }
        .faq-item {
            border-bottom: 1px solid var(--line);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s ease;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            color: #1a1d21;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            width: 20px;
            height: 20px;
            position: relative;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 2px;
            transition: transform 0.25s ease;
        }
        .faq-icon::before {
            width: 14px;
            height: 2px;
            top: 9px;
            left: 3px;
        }
        .faq-icon::after {
            width: 2px;
            height: 14px;
            top: 3px;
            left: 9px;
        }
        .faq-item.open .faq-icon::after {
            transform: scaleY(0);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.25s ease;
            color: #4a4a4a;
            font-size: 15px;
            line-height: 1.7;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }
        .footer-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-links a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .match-card {
            transition: all 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.10);
            border-color: rgba(228, 72, 46, 0.4);
        }
        .timeline-item {
            position: relative;
            padding-left: 28px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px rgba(228, 72, 46, 0.3);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 24px;
            width: 2px;
            background: var(--line);
            bottom: -8px;
        }
        .timeline-item:last-child::after {
            display: none;
        }
        @media (max-width: 1024px) {
            .search-box {
                width: 120px;
            }
            .search-box:focus-within {
                width: 160px;
            }
            .section-title {
                font-size: 28px;
            }
        }
        @media (max-width: 767px) {
            .container-site {
                padding: 0 16px;
            }
            .section-title {
                font-size: 24px;
            }
            .section-subtitle {
                font-size: 15px;
            }
            .btn-primary,
            .btn-accent,
            .btn-outline {
                width: 100%;
                max-width: 320px;
            }
        }
