/* roulang page: index */
:root {
        --bg: #0C120F;
        --bg-2: #121A16;
        --card: #17211B;
        --raised: #202D25;
        --border: rgba(230, 224, 208, 0.14);
        --gold: #CDA15F;
        --gold-hi: #E2BC78;
        --sage: #6F9A82;
        --text: #F2EFE7;
        --text-2: #A4AFA7;
        --muted: #6F7A73;
        --r-lg: 14px;
        --r-md: 10px;
        --r-pill: 999px;
        --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.18);
        --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.14);
        --pad-lg: 96px;
        --pad-sm: 56px;
        --ease: 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        margin: 0;
        background: var(--bg);
        color: var(--text);
        font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
        font-size: 16px;
        line-height: 1.75;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    a {
        color: var(--gold);
        text-decoration: none;
        transition: color var(--ease), border-color var(--ease), background var(--ease), opacity var(--ease);
    }

    a:hover {
        color: var(--gold-hi);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
        outline: 3px solid rgba(205, 161, 95, 0.4);
        outline-offset: 2px;
        border-radius: 6px;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .container {
        max-width: 1340px;
        margin: 0 auto;
        padding: 0 32px;
    }

    .section {
        padding: var(--pad-lg) 0;
        position: relative;
    }

    .section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 42px;
    }

    .section-head h2 {
        font-size: clamp(1.6rem, 2.6vw, 2.3rem);
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin: 0;
    }

    .section-head p {
        color: var(--text-2);
        margin: 8px 0 0;
        max-width: 640px;
    }

    .kicker,
    .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .kicker::before {
        content: "";
        width: 24px;
        height: 2px;
        background: var(--gold);
        border-radius: 4px;
        display: inline-block;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 13px 28px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
        border-radius: var(--r-pill);
        cursor: pointer;
        white-space: nowrap;
        border: 1px solid transparent;
        transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
        font-family: inherit;
    }

    .btn i {
        font-size: 15px;
    }

    .btn-primary {
        background: var(--gold);
        color: #0B0E0C;
        box-shadow: 0 6px 18px rgba(205, 161, 95, 0.2);
    }

    .btn-primary:hover {
        background: var(--gold-hi);
        color: #0B0E0C;
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(205, 161, 95, 0.3);
    }

    .btn-ghost {
        background: transparent;
        color: var(--text);
        border-color: rgba(230, 224, 208, 0.35);
        backdrop-filter: blur(6px);
    }

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold-hi);
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.04);
    }

    .btn-lg {
        padding: 16px 34px;
        font-size: 16px;
    }

    .btn-sm {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-block {
        width: 100%;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(12, 18, 15, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border);
    }

    .top-strip {
        background: rgba(18, 26, 22, 0.8);
        border-bottom: 1px solid rgba(230, 224, 208, 0.06);
        font-size: 13px;
        padding: 8px 0;
    }

    .top-strip-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        min-height: 36px;
        color: var(--text-2);
    }

    .top-note {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .top-note i {
        color: var(--sage);
    }

    .top-links {
        display: flex;
        gap: 18px;
    }

    .top-links a {
        color: var(--text-2);
        font-size: 13px;
        border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    }

    .top-links a:hover {
        color: var(--gold-hi);
        border-bottom-style: solid;
    }

    .main-nav {
        position: relative;
    }

    .main-nav-inner {
        display: grid;
        grid-template-columns: 220px minmax(340px, 620px) 220px;
        align-items: center;
        gap: 20px;
        padding: 20px 32px;
    }

    .site-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        line-height: 1;
        min-width: 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex: 0 0 auto;
        border-radius: 50%;
        border: 1.5px solid var(--gold);
        position: relative;
        background: radial-gradient(circle at 35% 35%, rgba(205, 161, 95, 0.25), transparent 60%);
    }

    .brand-mark::before {
        content: "";
        position: absolute;
        inset: 7px;
        border: 1px solid rgba(205, 161, 95, 0.5);
        border-radius: 50%;
    }

    .brand-mark::after {
        content: "";
        position: absolute;
        inset: 13px;
        background: var(--gold);
        border-radius: 50%;
        opacity: 0.85;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        font-weight: 700;
        font-size: 24px;
        letter-spacing: 0.02em;
        color: var(--text);
        line-height: 1.15;
    }

    .brand-text em {
        font-style: normal;
        font-size: 12px;
        font-weight: 500;
        color: var(--gold);
        letter-spacing: 0.22em;
        margin-top: 2px;
    }

    .nav-search {
        position: relative;
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .nav-search .search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-2);
        font-size: 15px;
        z-index: 2;
        pointer-events: none;
    }

    .nav-search input {
        width: 100%;
        height: 48px;
        border-radius: var(--r-pill);
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        font-size: 15px;
        padding: 0 22px 0 50px;
        transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
        outline: none;
        font-family: inherit;
    }

    .nav-search input::placeholder {
        color: var(--muted);
    }

    .nav-search input:focus {
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(205, 161, 95, 0.18);
    }

    .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }

    .login-btn {
        padding: 11px 24px;
        font-size: 14px;
    }

    .nav-icon-btn {
        display: none;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color var(--ease), background var(--ease), color var(--ease);
    }

    .nav-icon-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

    .nav-links-bar {
        border-top: 1px solid rgba(230, 224, 208, 0.05);
        background: rgba(18, 26, 22, 0.72);
    }

    .nav-links-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        min-height: 56px;
    }

    .nav-links-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        color: var(--text-2);
        font-size: 15px;
        font-weight: 500;
        padding: 13px 20px;
        border-radius: var(--r-pill);
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        border-bottom: 2px solid transparent;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 8px;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform var(--ease);
        border-radius: 4px;
    }

    .nav-link:hover {
        color: var(--text);
    }

    .nav-link.is-active {
        color: var(--gold);
    }

    .nav-link.is-active::after {
        transform: scaleX(1);
    }

    .mobile-drawer {
        display: none;
    }

    .mobile-drawer.open {
        display: block;
        border-top: 1px solid var(--border);
        background: #101712;
        padding: 18px 0 26px;
        box-shadow: 0 28px 50px rgba(0, 0, 0, 0.4);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .mobile-drawer-inner {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-drawer a {
        color: var(--text-2);
        font-size: 17px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(230, 224, 208, 0.06);
    }

    .mobile-drawer a:hover {
        color: var(--gold);
    }

    .mobile-drawer .mobile-login {
        margin-top: 18px;
        background: var(--gold);
        color: #0B0E0C;
        text-align: center;
        border-radius: var(--r-pill);
        border: none;
        font-weight: 600;
    }

    .mobile-drawer .mobile-login:hover {
        background: var(--gold-hi);
    }

    .mobile-search {
        display: none;
        padding: 14px 0;
    }

    .mobile-search.visible {
        display: block;
    }

    .mobile-search .nav-search {
        width: 100%;
        max-width: none;
    }

    .hero-section {
        min-height: min(720px, 88vh);
        display: flex;
        align-items: center;
        background: var(--bg) url('/assets/images/backpic/back-1.png') no-repeat center top / cover;
        position: relative;
        isolation: isolate;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(95deg, rgba(12, 18, 15, 0.96) 0%, rgba(12, 18, 15, 0.78) 30%, rgba(18, 26, 22, 0.4) 60%, rgba(18, 26, 22, 0.10) 100%);
        z-index: -1;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 180px;
        background: linear-gradient(180deg, transparent, rgba(12, 18, 15, 0.85));
        z-index: -1;
        pointer-events: none;
    }

    .hero-content {
        max-width: 760px;
        padding: 120px 0;
    }

    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 9px 18px;
        border-radius: 999px;
        border: 1px solid rgba(205, 161, 95, 0.4);
        background: rgba(18, 26, 22, 0.6);
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        margin-bottom: 28px;
        backdrop-filter: blur(8px);
    }

    .hero-eyebrow::before {
        content: "";
        width: 7px;
        height: 7px;
        background: var(--gold);
        border-radius: 50%;
    }

    .hero-h1 {
        font-size: clamp(2.4rem, 5.6vw, 5rem);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: var(--text);
        margin: 0 0 24px;
        text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
    }

    .hero-lead {
        font-size: clamp(1rem, 1.6vw, 1.2rem);
        line-height: 1.85;
        color: rgba(242, 239, 231, 0.9);
        max-width: 620px;
        margin: 0 0 34px;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 56px;
    }

    .hero-mini {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 22px 0 0;
        border-top: 1px solid rgba(230, 224, 208, 0.14);
    }

    .hero-mini li {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--text-2);
        font-size: 14px;
        font-weight: 500;
    }

    .hero-mini i {
        color: var(--gold);
        font-size: 14px;
    }

    .section-shelf {
        padding: var(--pad-lg) 0 calc(var(--pad-lg) - 12px);
    }

    .shelf-arrows {
        display: flex;
        gap: 8px;
    }

    .arrow-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--ease);
        flex: 0 0 auto;
    }

    .arrow-btn:hover {
        background: var(--raised);
        border-color: var(--gold);
        color: var(--gold);
    }

    .shelf-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 2px 2px 18px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        position: relative;
    }

    .shelf-track::-webkit-scrollbar {
        display: none;
    }

    .shelf-track::after {
        content: "";
        flex: 0 0 1px;
    }

    .shelf-card {
        flex: 0 0 190px;
        scroll-snap-align: start;
        max-width: 190px;
    }

    .shelf-cover {
        position: relative;
        border-radius: var(--r-md);
        overflow: hidden;
        aspect-ratio: 3 / 4;
        margin-bottom: 12px;
        box-shadow: var(--shadow-md);
        background: var(--card);
    }

    .shelf-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: transform 0.55s var(--ease), filter 0.3s;
    }

    .shelf-card:hover .shelf-cover img {
        transform: scale(1.06);
        filter: brightness(1.08);
    }

    .shelf-cover::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.45));
        pointer-events: none;
    }

    .tag {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 3;
        font-size: 11px;
        padding: 5px 10px;
        background: rgba(18, 26, 22, 0.78);
        backdrop-filter: blur(8px);
        color: var(--gold);
        border-radius: 999px;
        letter-spacing: 0.05em;
        line-height: 1;
        border: 1px solid rgba(205, 161, 95, 0.28);
    }

    .play-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(205, 161, 95, 0.92);
        color: #0B0E0C;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        z-index: 3;
        opacity: 0;
        transition: opacity var(--ease), transform var(--ease);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .shelf-card:hover .play-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04);
    }

    .shelf-card h3 {
        font-size: 15px;
        color: var(--text);
        line-height: 1.45;
        font-weight: 500;
        margin: 0 0 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shelf-card .meta {
        font-size: 12px;
        color: var(--muted);
    }

    .hot-section {
        background: linear-gradient(180deg, transparent, rgba(18, 26, 22, 0.65));
    }

    .hot-feature-link {
        position: relative;
        display: block;
        border-radius: var(--r-lg);
        overflow: hidden;
        min-height: 480px;
        box-shadow: var(--shadow-lg);
    }

    .hot-feature-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .hot-feature-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(20deg, rgba(10, 15, 12, 0.95) 0%, rgba(12, 18, 15, 0.35) 55%, transparent 80%);
    }

    .hot-feature-content {
        position: absolute;
        left: 34px;
        right: 30px;
        bottom: 30px;
        z-index: 2;
    }

    .hot-feature-content .tag {
        position: static;
        display: inline-flex;
        margin-bottom: 10px;
        background: rgba(205, 161, 95, 0.14);
    }

    .hot-feature-content h3 {
        color: #fff;
        font-size: clamp(1.5rem, 2.4vw, 2.2rem);
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 10px;
    }

    .hot-feature-content p {
        color: rgba(242, 239, 231, 0.78);
        margin-bottom: 20px;
        max-width: 420px;
        font-size: 15px;
    }

    .rank-panel {
        background: var(--card);
        border-radius: var(--r-lg);
        padding: 28px 28px 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        height: 100%;
    }

    .rank-panel h3 {
        font-size: 22px;
        font-weight: 600;
        margin: 0 0 6px;
    }

    .rank-panel .rank-sub {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 18px;
    }

    .rank-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .rank-item {
        display: flex;
        gap: 16px;
        align-items: center;
        padding: 16px 0;
        border-top: 1px solid var(--border);
        transition: background var(--ease);
    }

    .rank-item:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .rank-num {
        font-size: 26px;
        font-weight: 700;
        color: var(--gold);
        font-variant-numeric: tabular-nums;
        min-width: 48px;
        line-height: 1;
    }

    .rank-item-content {
        flex: 1;
        min-width: 0;
    }

    .rank-item-content h4 {
        font-size: 15px;
        margin: 0 0 4px;
        color: var(--text);
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rank-item-content span {
        font-size: 12px;
        color: var(--muted);
    }

    .rank-arrow {
        color: var(--text-2);
        font-size: 14px;
        opacity: 0.4;
        transition: opacity var(--ease), transform var(--ease);
    }

    .rank-item:hover .rank-arrow {
        opacity: 1;
        transform: translateX(4px);
        color: var(--gold);
    }

    .editorial-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 24px;
    }

    .editorial-main {
        position: relative;
        border-radius: var(--r-lg);
        overflow: hidden;
        min-height: 460px;
        background: var(--card);
        box-shadow: var(--shadow-lg);
    }

    .editorial-main img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .editorial-main-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(12, 18, 15, 0.92));
    }

    .editorial-main-content {
        position: absolute;
        left: 28px;
        right: 22px;
        bottom: 24px;
    }

    .editorial-main-content .tag {
        position: static;
        display: inline-flex;
        margin-bottom: 14px;
    }

    .editorial-main-content h3 {
        color: #fff;
        font-size: 26px;
        line-height: 1.3;
        font-weight: 600;
        margin: 0 0 8px;
    }

    .editorial-main-content p {
        color: rgba(242, 239, 231, 0.75);
        font-size: 14px;
        margin: 0;
    }

    .editorial-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .editorial-item {
        display: flex;
        gap: 16px;
        align-items: stretch;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        padding: 14px;
        transition: background var(--ease), border-color var(--ease), transform var(--ease);
    }

    .editorial-item:hover {
        background: var(--raised);
        border-color: rgba(205, 161, 95, 0.3);
        transform: translateY(-2px);
    }

    .editorial-item-thumb {
        width: 96px;
        flex: 0 0 96px;
        border-radius: 8px;
        overflow: hidden;
        background: #0f1612;
    }

    .editorial-item-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .editorial-item-body {
        flex: 1;
        min-width: 0;
    }

    .editorial-item-body .item-tag {
        font-size: 11px;
        color: var(--sage);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .editorial-item-body h4 {
        font-size: 15px;
        line-height: 1.5;
        margin: 4px 0 4px;
        color: var(--text);
        font-weight: 500;
    }

    .editorial-item-body p {
        font-size: 13px;
        color: var(--text-2);
        margin: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .cta-section {
        background: var(--bg) url('/assets/images/backpic/back-2.webp') no-repeat center center / cover;
        border-radius: 0;
        padding: 120px 0;
        position: relative;
        isolation: isolate;
    }

    .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(12, 18, 15, 0.76);
        z-index: -1;
    }

    .cta-inner {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .cta-inner h2 {
        font-size: clamp(1.8rem, 3.8vw, 3rem);
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 16px;
        color: var(--text);
    }

    .cta-inner p {
        color: rgba(242, 239, 231, 0.78);
        font-size: 16px;
        margin: 0 auto 36px;
        max-width: 540px;
        line-height: 1.8;
    }

    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .latest-section {
        background:
            linear-gradient(180deg, rgba(12, 18, 15, 0.95), rgba(12, 18, 15, 0.98)),
            url('/assets/images/backpic/back-3.png') center / cover;
        padding: var(--pad-lg) 0;
    }

    .latest-grid {
        display: grid;
        grid-template-columns: 0.9fr 2fr;
        gap: 40px;
        align-items: start;
    }

    .latest-intro p {
        color: var(--text-2);
        margin: 16px 0 0;
        font-size: 15px;
        line-height: 1.8;
    }

    .latest-list {
        overflow: hidden;
        border-radius: var(--r-lg);
        background: rgba(23, 33, 27, 0.75);
        border: 1px solid var(--border);
        backdrop-filter: blur(10px);
        padding: 0 4px;
    }

    .latest-item {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 20px 22px;
        border-bottom: 1px solid var(--border);
        transition: background var(--ease);
        color: var(--text);
        border-radius: 0;
    }

    .latest-item:last-child {
        border-bottom: none;
    }

    .latest-item:hover {
        background: rgba(255, 255, 255, 0.045);
        color: var(--text);
    }

    .latest-tag {
        background: rgba(205, 161, 95, 0.13);
        color: var(--gold);
        font-size: 12px;
        border-radius: 999px;
        padding: 6px 13px;
        flex: 0 0 auto;
        border: 1px solid rgba(205, 161, 95, 0.18);
        white-space: nowrap;
    }

    .latest-title {
        font-weight: 500;
        font-size: 15px;
        line-height: 1.4;
        flex: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--text);
        transition: color var(--ease);
    }

    .latest-item:hover .latest-title {
        color: var(--gold-hi);
    }

    .latest-meta {
        display: flex;
        gap: 14px;
        align-items: center;
        flex-shrink: 0;
    }

    .latest-date {
        color: var(--text-2);
        font-size: 13px;
        font-variant-numeric: tabular-nums;
    }

    .latest-cat {
        color: var(--sage);
        font-size: 12px;
        padding: 3px 10px;
        border: 1px solid rgba(111, 154, 130, 0.25);
        border-radius: 4px;
        background: rgba(111, 154, 130, 0.08);
    }

    .empty-tip {
        padding: 52px 20px;
        text-align: center;
        color: var(--text-2);
        font-size: 15px;
    }

    .empty-tip i {
        display: block;
        font-size: 38px;
        color: var(--muted);
        margin-bottom: 12px;
    }

    .faq-section {
        padding: var(--pad-lg) 0;
        background: linear-gradient(180deg, transparent, rgba(18, 26, 22, 0.55));
    }

    .faq-intro h2 {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 600;
        line-height: 1.25;
        margin: 0 0 18px;
    }

    .faq-intro p {
        color: var(--text-2);
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .faq-link-help {
        font-size: 14px;
        color: var(--gold);
        border-bottom: 1px dashed rgba(205, 161, 95, 0.45);
        padding-bottom: 2px;
    }

    .faq-accordion .accordion-item {
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 12px;
        transition: background var(--ease), border-color var(--ease);
        overflow: hidden;
    }

    .faq-accordion .accordion-item.is-active {
        background: #1B2721;
        border-color: rgba(205, 161, 95, 0.25);
    }

    .faq-accordion .accordion-title {
        background: transparent;
        width: 100%;
        color: var(--text);
        padding: 22px 58px 22px 22px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        border-bottom: none;
        display: block;
        position: relative;
        transition: color var(--ease);
    }

    .faq-accordion .accordion-title:hover,
    .faq-accordion .accordion-item.is-active > .accordion-title {
        color: var(--gold-hi);
        background: transparent;
    }

    .faq-accordion .accordion-title::after {
        content: "+";
        position: absolute;
        right: 22px;
        top: 18px;
        font-size: 24px;
        font-weight: 300;
        color: var(--gold);
        transition: transform 0.35s var(--ease);
        line-height: 1;
    }

    .faq-accordion .accordion-item.is-active > .accordion-title::after {
        transform: rotate(45deg);
    }

    .faq-accordion .accordion-content {
        background: transparent;
        color: var(--text-2);
        border-top: 1px solid rgba(230, 224, 208, 0.08);
        font-size: 15px;
        padding: 4px 22px 22px;
    }

    .faq-accordion .accordion-content p {
        margin: 0;
        line-height: 1.85;
        padding-top: 10px;
    }

    .site-footer {
        background: #080D0A;
        border-top: 1px solid rgba(230, 224, 208, 0.08);
        padding-top: 72px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 48px;
    }

    .footer-brand {
        max-width: 380px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 26px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 16px;
    }

    .footer-logo i {
        color: var(--gold);
        font-size: 26px;
    }

    .footer-brand p {
        color: var(--text-2);
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 18px;
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        color: var(--text-2);
        font-size: 14px;
    }

    .footer-social a:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(205, 161, 95, 0.08);
    }

    .footer-col h4 {
        color: var(--text);
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 18px;
    }

    .footer-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-col ul a {
        color: var(--text-2);
        font-size: 14px;
        border-bottom: 1px dotted transparent;
    }

    .footer-col ul a:hover {
        color: var(--gold-hi);
        border-bottom-color: rgba(205, 161, 95, 0.6);
    }

    .footer-bottom {
        border-top: 1px solid rgba(230, 224, 208, 0.08);
        padding: 22px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 13px;
        color: var(--muted);
    }

    .footer-bottom span {
        color: var(--text-2);
    }

    @media (max-width: 1023.98px) {
        .main-nav-inner {
            grid-template-columns: 1fr auto auto;
            padding: 16px 20px;
            gap: 12px;
        }

        .nav-search {
            display: none;
        }

        .nav-actions {
            grid-column: 3;
        }

        .nav-icon-btn {
            display: inline-flex;
        }

        .login-btn {
            display: none;
        }

        .nav-links-bar {
            display: none;
        }

        .mobile-drawer.open {
            display: block;
        }

        .mobile-search.visible {
            display: block;
        }

        .latest-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 639.98px) {
        .container {
            padding: 0 20px;
        }

        .top-strip {
            display: none;
        }

        .main-nav-inner {
            grid-template-columns: 1fr auto;
            padding: 12px 20px;
        }

        .brand-text {
            font-size: 21px;
        }

        .brand-text em {
            font-size: 11px;
        }

        .brand-mark {
            width: 36px;
            height: 36px;
        }

        .brand-mark::before {
            inset: 5px;
        }

        .brand-mark::after {
            inset: 11px;
        }

        .section {
            padding: 52px 0;
        }

        .section-head {
            margin-bottom: 28px;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-content {
            padding: 78px 0 64px;
        }

        .hero-h1 {
            font-size: clamp(2rem, 10vw, 3.2rem);
        }

        .hero-actions {
            margin-bottom: 34px;
        }

        .btn-lg {
            padding: 14px 24px;
            font-size: 15px;
        }

        .hero-mini {
            gap: 14px 20px;
        }

        .shelf-card {
            flex-basis: 160px;
            max-width: 160px;
        }

        .hot-feature-link {
            min-height: 380px;
        }

        .editorial-grid {
            grid-template-columns: 1fr;
        }

        .editorial-main {
            min-height: 360px;
        }

        .latest-item {
            flex-wrap: wrap;
            gap: 10px;
            padding: 16px 16px;
        }

        .latest-title {
            white-space: normal;
            flex-basis: 100%;
            order: 2;
        }

        .latest-meta {
            margin-left: auto;
        }

        .cta-section {
            padding: 72px 0;
        }

        .faq-accordion .accordion-title {
            padding-right: 54px;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 26px;
            padding-bottom: 30px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (min-width: 640px) and (max-width: 1023px) {
        .section {
            padding: 72px 0;
        }

        .main-nav-inner {
            padding: 16px 24px;
        }

        .footer-brand {
            max-width: none;
        }
    }

    @media (min-width: 1024px) {
        .mobile-drawer,
        .mobile-search {
            display: none !important;
        }
    }

/* roulang page: category1 */
:root {
            --bg:#0C120F;
            --bg-deep:#0A0F0C;
            --bg-soft:#121A16;
            --card:#17211B;
            --surface:#202D25;
            --line:rgba(230,224,208,0.14);
            --gold:#CDA15F;
            --gold-hover:#E2BC78;
            --sage:#6F9A82;
            --text:#F2EFE7;
            --text-1:#A4AFA7;
            --text-2:#6F7A73;
            --radius-lg:20px;
            --radius:16px;
            --radius-sm:10px;
            --shadow:0 12px 32px rgba(0,0,0,0.18);
            --transition:.25s ease;
            --font:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing:border-box;
        }

        html {
            scroll-behavior:smooth;
        }

        body {
            margin:0;
            font-family:var(--font);
            background:var(--bg);
            color:var(--text);
            font-size:16px;
            line-height:1.75;
            -webkit-font-smoothing:antialiased;
            overflow-x:hidden;
        }

        img {
            display:block;
            max-width:100%;
        }

        ul {
            list-style:none;
            margin:0;
            padding:0;
        }

        a {
            color:inherit;
            text-decoration:none;
        }

        a:hover {
            color:var(--gold);
        }

        button,
        input {
            font-family:inherit;
        }

        input:focus,
        button:focus {
            outline:none;
        }

        .container {
            max-width:1360px;
            margin:0 auto;
            padding-left:20px;
            padding-right:20px;
        }

        .skip-link {
            position:absolute;
            left:-999px;
            top:0;
            background:var(--gold);
            color:#0C120F;
            padding:10px 18px;
            border-radius:0 0 10px 0;
            z-index:9999;
            font-weight:600;
        }

        .skip-link:focus {
            left:0;
            color:#0C120F;
        }

        .button {
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:8px;
            height:48px;
            padding:0 26px;
            background:var(--gold);
            color:#0C120F;
            font-weight:700;
            font-size:.96rem;
            line-height:1;
            border:1px solid transparent;
            border-radius:999px;
            box-shadow:none;
            margin:0;
            cursor:pointer;
            transition:background var(--transition),transform var(--transition),box-shadow var(--transition),border-color var(--transition),color var(--transition);
        }

        .button:hover,
        .button:focus {
            background:var(--gold-hover);
            color:#0C120F;
            transform:translateY(-2px);
            box-shadow:0 10px 26px rgba(205,161,95,0.18);
        }

        .button.ghost {
            background:rgba(255,255,255,0.04);
            border-color:rgba(230,224,208,0.3);
            color:var(--text);
        }

        .button.ghost:hover,
        .button.ghost:focus {
            background:rgba(255,255,255,0.08);
            border-color:rgba(230,224,208,0.5);
            color:#fff;
            box-shadow:0 8px 24px rgba(0,0,0,0.18);
        }

        .site-header {
            position:sticky;
            top:0;
            z-index:200;
            background:rgba(12,18,15,0.96);
            border-bottom:1px solid var(--line);
            backdrop-filter:blur(10px);
        }

        .header-aux {
            background:var(--bg-deep);
            border-bottom:1px solid rgba(230,224,208,0.08);
            font-size:.82rem;
            color:var(--text-1);
            min-height:36px;
        }

        .header-aux-inner {
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:18px;
            min-height:36px;
        }

        .header-aux a {
            color:var(--text-1);
            transition:color var(--transition);
        }

        .header-aux a:hover {
            color:var(--gold);
        }

        .header-main {
            display:flex;
            align-items:center;
            gap:28px;
            min-height:82px;
            flex-wrap:wrap;
        }

        .logo {
            display:inline-flex;
            align-items:center;
            gap:10px;
            color:var(--text);
            font-weight:700;
            font-size:1.08rem;
            letter-spacing:.01em;
            line-height:1.2;
            flex-shrink:0;
        }

        .logo i {
            color:var(--gold);
            font-size:1.7rem;
        }

        .logo:hover {
            color:var(--text);
        }

        .logo span {
            max-width:230px;
        }

        .header-search {
            display:flex;
            align-items:center;
            gap:10px;
            background:rgba(255,255,255,0.06);
            border:1px solid var(--line);
            border-radius:999px;
            height:46px;
            padding:0 20px;
            flex:1 1 420px;
            max-width:620px;
            margin-left:auto;
            margin-right:auto;
            transition:background var(--transition),border-color var(--transition),box-shadow var(--transition);
        }

        .header-search i {
            color:var(--gold);
            font-size:.96rem;
        }

        .header-search input {
            flex:1;
            background:transparent;
            border:0;
            outline:none;
            color:var(--text);
            font-size:.95rem;
            line-height:1;
            min-width:0;
        }

        .header-search input::placeholder {
            color:var(--text-2);
        }

        .header-search:focus-within {
            background:rgba(255,255,255,0.08);
            border-color:var(--gold);
            box-shadow:0 0 0 3px rgba(205,161,95,0.18);
        }

        .header-cta {
            flex-shrink:0;
            height:42px;
            padding:0 22px;
        }

        .nav-toggle {
            display:none;
            align-items:center;
            justify-content:center;
            width:42px;
            height:42px;
            border:1px solid var(--line);
            border-radius:10px;
            background:rgba(255,255,255,0.04);
            color:var(--text);
            font-size:1.1rem;
            cursor:pointer;
            transition:border-color var(--transition),color var(--transition);
        }

        .nav-toggle:hover {
            color:var(--gold);
            border-color:rgba(205,161,95,0.4);
        }

        .header-nav {
            background:rgba(18,26,22,0.92);
            backdrop-filter:blur(8px);
        }

        .nav-links-inner {
            display:flex;
            align-items:center;
            justify-content:center;
            gap:34px;
            min-height:52px;
        }

        .nav-link {
            position:relative;
            display:inline-flex;
            align-items:center;
            height:52px;
            color:var(--text-1);
            font-size:.97rem;
            font-weight:500;
            letter-spacing:.02em;
            transition:color var(--transition);
        }

        .nav-link:hover {
            color:var(--text);
        }

        .nav-link.is-active {
            color:var(--gold);
            font-weight:600;
        }

        .nav-link.is-active::after {
            content:"";
            position:absolute;
            left:0;
            right:0;
            bottom:-1px;
            height:2px;
            border-radius:2px 2px 0 0;
            background:var(--gold);
        }

        main {
            overflow:visible;
        }

        .content-section {
            padding:86px 0;
        }

        .section-heading {
            margin-bottom:44px;
        }

        .section-heading .eyebrow,
        .hero-eyebrow {
            display:inline-flex;
            align-items:center;
            gap:8px;
            color:var(--gold);
            font-size:.77rem;
            letter-spacing:.12em;
            margin-bottom:12px;
            text-transform:uppercase;
        }

        .section-heading .eyebrow i {
            color:var(--sage);
        }

        .section-heading h2,
        .subsection-title {
            margin:0;
            font-size:clamp(1.6rem,2.6vw,2.3rem);
            font-weight:600;
            line-height:1.2;
            letter-spacing:-.01em;
            color:var(--text);
        }

        .section-heading p {
            color:var(--text-1);
            font-size:1rem;
            max-width:680px;
            margin:16px 0 0;
        }

        .page-hero {
            position:relative;
            background:
                linear-gradient(100deg,rgba(12,18,15,0.98) 10%,rgba(12,18,15,0.86) 45%,rgba(12,18,15,0.45) 100%),
                url('/assets/images/backpic/back-1.png') center 15% / cover no-repeat;
            padding:112px 0 92px;
        }

        .hero-content {
            max-width:760px;
            position:relative;
            z-index:2;
        }

        .hero-eyebrow {
            margin-bottom:18px;
            background:rgba(205,161,95,0.1);
            border:1px solid rgba(205,161,95,0.2);
            border-radius:999px;
            padding:7px 16px;
            font-size:.78rem;
            text-transform:none;
            letter-spacing:.02em;
        }

        .hero-eyebrow i {
            color:var(--gold);
        }

        .page-hero h1 {
            margin:0;
            font-size:clamp(2.35rem,5vw,4.1rem);
            font-weight:600;
            line-height:1.12;
            letter-spacing:-.02em;
            color:var(--text);
        }

        .hero-lead {
            margin:24px 0 0;
            max-width:640px;
            color:var(--text-1);
            font-size:1.05rem;
            line-height:1.8;
        }

        .hero-actions {
            display:flex;
            flex-wrap:wrap;
            gap:14px;
            margin-top:36px;
        }

        .hero-meta {
            display:flex;
            flex-wrap:wrap;
            align-items:center;
            gap:18px 30px;
            margin-top:44px;
            padding-top:28px;
            border-top:1px solid var(--line);
            color:var(--text-1);
            font-size:.86rem;
        }

        .hero-meta i {
            color:var(--gold);
            margin-right:7px;
        }

        .entry-list .entry-item {
            margin-bottom:26px;
        }

        .entry-card {
            position:relative;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            padding:32px 28px 28px;
            height:100%;
            overflow:hidden;
            transition:background var(--transition),transform var(--transition),border-color var(--transition),box-shadow var(--transition);
        }

        .entry-card::after {
            content:"";
            position:absolute;
            left:0;
            top:0;
            width:100%;
            height:2px;
            background:linear-gradient(90deg,rgba(205,161,95,0.8),rgba(205,161,95,0) 70%);
            opacity:.45;
        }

        .entry-card:hover {
            background:#1A2620;
            border-color:rgba(205,161,95,0.28);
            transform:translateY(-6px);
            box-shadow:var(--shadow);
        }

        .entry-icon {
            display:grid;
            place-items:center;
            width:50px;
            height:50px;
            background:rgba(205,161,95,0.12);
            border-radius:14px;
            color:var(--gold);
            font-size:1.2rem;
            margin-bottom:20px;
        }

        .entry-card h3 {
            margin:0 0 10px;
            font-size:1.16rem;
            font-weight:600;
            color:var(--text);
        }

        .entry-card p {
            margin:0;
            color:var(--text-1);
            font-size:.95rem;
            line-height:1.7;
        }

        .entry-note {
            color:var(--text-1);
            font-size:.9rem;
            margin-top:20px;
            padding-top:18px;
            border-top:1px solid rgba(230,224,208,0.08);
            display:flex;
            gap:8px;
            align-items:center;
        }

        .entry-note i {
            color:var(--sage);
        }

        .steps-section {
            background:linear-gradient(180deg,rgba(18,26,22,0.45),rgba(12,18,15,0));
            border-top:1px solid rgba(230,224,208,0.06);
        }

        .login-steps {
            display:grid;
            grid-template-columns:repeat(4,1fr);
            gap:22px;
        }

        .step-card {
            position:relative;
            background:var(--bg-soft);
            border:1px solid var(--line);
            border-radius:var(--radius);
            padding:30px 24px 26px;
            min-height:220px;
            transition:transform var(--transition),border-color var(--transition),background var(--transition);
        }

        .step-card:hover {
            border-color:rgba(205,161,95,0.3);
            background:#121A16;
            transform:translateY(-4px);
        }

        .step-number {
            display:block;
            color:rgba(205,161,95,0.24);
            font-size:2.7rem;
            font-weight:800;
            line-height:1;
            letter-spacing:-.05em;
            margin-bottom:22px;
        }

        .step-card h3 {
            margin:0 0 10px;
            color:var(--text);
            font-weight:600;
            font-size:1.08rem;
        }

        .step-card p {
            margin:0;
            color:var(--text-1);
            font-size:.92rem;
            line-height:1.7;
        }

        .scene-section {
            padding:86px 0;
        }

        .scene-media img {
            width:100%;
            border-radius:var(--radius-lg);
            object-fit:cover;
            aspect-ratio:5/4;
            box-shadow:var(--shadow);
            border:1px solid var(--line);
        }

        .scene-copy {
            padding-right:30px;
        }

        .scene-copy h2 {
            margin:0 0 18px;
            font-size:clamp(1.5rem,2.2vw,2rem);
            line-height:1.35;
        }

        .scene-copy>p {
            color:var(--text-1);
            margin:0 0 26px;
            max-width:620px;
        }

        .scene-list li {
            padding:20px 0;
            border-bottom:1px solid rgba(230,224,208,0.1);
            display:flex;
            gap:16px;
            align-items:flex-start;
        }

        .scene-list li:first-child {
            padding-top:0;
        }

        .scene-list li:last-child {
            border-bottom:0;
        }

        .scene-list-icon {
            display:grid;
            place-items:center;
            width:38px;
            height:38px;
            border-radius:10px;
            background:rgba(205,161,95,0.12);
            color:var(--gold);
            flex-shrink:0;
            margin-top:2px;
        }

        .scene-list h3 {
            font-size:1.02rem;
            font-weight:600;
            margin:0 0 6px;
        }

        .scene-list p {
            margin:0;
            color:var(--text-1);
            font-size:.93rem;
        }

        .service-floor {
            padding:80px 0;
        }

        .service-floor .grid-x {
            align-items:stretch;
        }

        .service-panel-one,
        .service-panel-two {
            height:100%;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:var(--radius);
            padding:30px 28px;
            height:100%;
            display:flex;
            flex-direction:column;
            justify-content:space-between;
        }

        .service-panel-one h3,
        .service-panel-two h3 {
            margin:0 0 12px;
            font-size:1.2rem;
        }

        .service-panel-one p,
        .service-panel-two p {
            color:var(--text-1);
            font-size:.95rem;
            margin:0 0 18px;
        }

        .tag-row {
            display:flex;
            flex-wrap:wrap;
            gap:8px;
            margin-top:16px;
        }

        .tag {
            display:inline-flex;
            align-items:center;
            gap:6px;
            border-radius:999px;
            background:rgba(111,154,130,0.12);
            color:var(--sage);
            padding:4px 12px;
            font-size:.76rem;
        }

        .tag.gold-tag {
            background:rgba(205,161,95,0.1);
            color:var(--gold);
        }

        .panel-link {
            margin-top:20px;
            font-weight:600;
            color:var(--gold);
            display:inline-flex;
            align-items:center;
            gap:7px;
        }

        .panel-link i {
            transition:transform var(--transition);
        }

        .panel-link:hover i {
            transform:translateX(4px);
        }

        .faq-section {
            background:var(--bg-deep);
            border-top:1px solid var(--line);
            border-bottom:1px solid var(--line);
            padding:86px 0;
        }

        .faq-intro {
            padding-right:32px;
        }

        .faq-intro h2 {
            font-size:clamp(1.6rem,2.6vw,2.2rem);
            margin:0 0 14px;
        }

        .faq-intro p {
            color:var(--text-1);
            margin:0;
        }

        .faq-list-holder .accordion {
            background:transparent;
        }

        .faq-list-holder .accordion-item {
            background:transparent;
            border:0;
            margin-bottom:12px;
        }

        .faq-list-holder .accordion-title {
            position:relative;
            display:block;
            background:var(--bg-soft);
            color:var(--text);
            padding:22px 62px 22px 26px;
            border:1px solid var(--line);
            border-radius:16px;
            font-size:1.03rem;
            font-weight:600;
            line-height:1.5;
            transition:border-color var(--transition),background var(--transition),color var(--transition);
        }

        .faq-list-holder .accordion-title:hover,
        .faq-list-holder .accordion-item.is-active .accordion-title {
            background:var(--card);
            border-color:rgba(205,161,95,0.3);
            color:#fff;
        }

        .faq-list-holder .accordion-item.is-active .accordion-title {
            border-bottom-color:rgba(205,161,95,0.1);
            border-radius:16px 16px 0 0;
        }

        .faq-list-holder .accordion-title::before {
            content:"+";
            position:absolute;
            right:22px;
            top:50%;
            transform:translateY(-50%);
            color:var(--gold);
            font-size:1.5rem;
            font-weight:400;
            line-height:1;
            transition:transform .3s ease;
        }

        .faq-list-holder .accordion-item.is-active .accordion-title::before {
            transform:translateY(-50%) rotate(45deg);
        }

        .faq-list-holder .accordion-content {
            background:var(--card);
            border:1px solid var(--line);
            border-top:0;
            margin:0;
            padding:0 28px 24px;
            border-radius:0 0 16px 16px;
            color:var(--text-1);
            font-size:.96rem;
            line-height:1.8;
        }

        .faq-list-holder .accordion-content p {
            margin:0;
        }

        .faq-list-holder .accordion-content[data-tab-content] {
            color:var(--text-1);
        }

        .final-cta {
            padding:88px 0;
            background:linear-gradient(135deg,rgba(18,26,22,0.92),rgba(12,18,15,0.98)),url('/assets/images/backpic/back-3.png') center / cover no-repeat;
        }

        .final-cta-inner {
            text-align:center;
            background:var(--card);
            border:1px solid var(--line);
            border-radius:26px;
            padding:66px 30px;
            position:relative;
            overflow:hidden;
        }

        .final-cta-inner::before {
            content:"";
            position:absolute;
            left:0;
            top:0;
            width:100%;
            height:2px;
            background:linear-gradient(90deg,transparent,var(--gold),transparent);
        }

        .final-cta h2 {
            margin:0 0 16px;
            font-size:clamp(1.6rem,2.6vw,2.3rem);
            font-weight:600;
            line-height:1.3;
        }

        .final-cta p {
            color:var(--text-1);
            max-width:660px;
            margin:0 auto 32px;
            font-size:1rem;
        }

        .final-cta .button {
            margin:0 7px 8px;
        }

        .site-footer {
            background:#090E0B;
            padding:72px 0 0;
            color:var(--text-1);
        }

        .footer-grid {
            display:grid;
            grid-template-columns:1.5fr 1fr 1fr 1fr;
            gap:42px;
            padding-bottom:44px;
            border-bottom:1px solid rgba(230,224,208,0.08);
        }

        .footer-logo {
            display:flex;
            align-items:center;
            gap:10px;
            font-weight:700;
            color:var(--text);
            font-size:1.06rem;
            line-height:1.3;
        }

        .footer-logo i {
            color:var(--gold);
            font-size:1.45rem;
        }

        .footer-brand p {
            font-size:.9rem;
            color:var(--text-1);
            margin:18px 0 20px;
            line-height:1.8;
            max-width:400px;
        }

        .footer-social {
            display:flex;
            gap:8px;
        }

        .footer-social a {
            display:grid;
            place-items:center;
            width:38px;
            height:38px;
            background:rgba(255,255,255,0.05);
            border-radius:10px;
            border:1px solid rgba(230,224,208,0.08);
            color:var(--text-1);
            transition:background var(--transition),color var(--transition),border-color var(--transition);
        }

        .footer-social a:hover {
            color:var(--gold);
            border-color:rgba(205,161,95,0.3);
            background:rgba(205,161,95,0.08);
        }

        .footer-col h4 {
            color:var(--text);
            font-size:.95rem;
            font-weight:600;
            margin:4px 0 18px;
        }

        .footer-col ul {
            display:grid;
            gap:10px;
        }

        .footer-col a {
            color:var(--text-1);
            font-size:.9rem;
            transition:color var(--transition),padding-left var(--transition);
        }

        .footer-col a:hover {
            color:var(--gold);
            padding-left:4px;
        }

        .footer-bottom {
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:14px;
            flex-wrap:wrap;
            padding:22px 0;
            color:var(--text-2);
            font-size:.82rem;
        }

        .footer-bottom a {
            color:var(--text-1);
        }

        .footer-bottom a:hover {
            color:var(--gold);
        }

        img:not([alt]) {
            outline:3px solid var(--gold);
        }

        :focus-visible {
            outline:3px solid var(--gold);
            outline-offset:2px;
            border-radius:4px;
        }

        @media screen and (max-width:1023px) {
            .content-section {
                padding:64px 0;
            }

            .footer-grid {
                grid-template-columns:1fr 1fr;
                gap:36px;
            }

            .login-steps {
                grid-template-columns:1fr 1fr;
            }

            .header-main {
                gap:16px;
                min-height:70px;
            }

            .header-search {
                order:9;
                flex:1 1 100%;
                max-width:100%;
                margin:0;
            }

            .header-cta {
                order:3;
                margin-left:auto;
            }

            .nav-toggle {
                order:4;
                display:inline-flex;
            }

            .header-nav {
                order:10;
                flex-basis:100%;
                display:none;
            }

            .header-nav.open {
                display:block;
            }

            .nav-links-inner {
                flex-direction:column;
                align-items:stretch;
                gap:0;
                padding:12px 20px 20px;
            }

            .nav-link {
                height:48px;
                line-height:48px;
                justify-content:flex-start;
                border-bottom:1px solid rgba(230,224,208,0.08);
                color:var(--text-1);
            }

            .nav-link.is-active {
                color:var(--gold);
            }

            .nav-link.is-active::after {
                display:none;
            }

            .scene-copy {
                padding-right:0;
                margin-bottom:34px;
            }

            .page-hero {
                padding:84px 0 72px;
            }
        }

        @media screen and (max-width:639px) {
            .header-main {
                flex-wrap:wrap;
                gap:10px;
            }

            .logo {
                font-size:.98rem;
                flex:1 1 auto;
            }

            .logo span {
                white-space:normal;
            }

            .header-search {
                height:44px;
                padding:0 16px;
            }

            .header-cta {
                display:none;
            }

            .nav-toggle {
                width:40px;
                height:40px;
            }

            .content-section,
            .faq-section {
                padding:50px 0;
            }

            .page-hero h1 {
                font-size:2rem;
                line-height:1.18;
            }

            .hero-lead {
                font-size:.98rem;
            }

            .hero-meta {
                flex-direction:column;
                align-items:flex-start;
                gap:8px;
            }

            .hero-actions .button {
                width:100%;
            }

            .entry-card {
                padding:24px 22px;
            }

            .login-steps {
                grid-template-columns:1fr;
            }

            .step-card {
                min-height:auto;
            }

            .scene-media img {
                aspect-ratio:16/12;
            }

            .footer-grid {
                grid-template-columns:1fr;
                gap:28px;
            }

            .footer-logo,
            .footer-col h4 {
                margin-top:0;
            }

            .footer-bottom {
                justify-content:center;
                text-align:center;
            }

            .final-cta-inner {
                padding:44px 20px;
            }
        }

        @media screen and (max-width:520px) {
            .nav-toggle {
                width:38px;
                height:38px;
            }
        }

        @media screen and (max-width:359px) {
            .logo {
                font-size:.88rem;
            }
        }

/* roulang page: article */
:root {
    --bg: #0C120F;
    --bg-deep: #090F0C;
    --surface: #121A16;
    --card: #17211B;
    --surface2: #202D25;
    --line: rgba(230, 224, 208, 0.14);
    --accent: #CDA15F;
    --accent-hover: #E2BC78;
    --green: #6F9A82;
    --text: #F2EFE7;
    --text2: #A4AFA7;
    --text3: #6F7A73;
    --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-pill: 999px;
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    --transition: 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(205, 161, 95, 0.45);
    outline-offset: 2px;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 100;
}

.header-utility {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(230, 224, 208, 0.06);
}

.header-utility-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text3);
}

.header-utility-inner i {
    margin-right: 6px;
    color: var(--accent);
}

.utility-link {
    color: var(--text2);
}

.utility-link:hover {
    color: var(--accent-hover);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(205, 161, 95, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(205, 161, 95, 0.14), transparent 70%);
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-logo .logo-text strong {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text);
}

.site-logo .logo-text em {
    font-style: normal;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.header-search {
    width: min(600px, 46vw);
    margin-left: auto;
    margin-right: auto;
    height: 46px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(205, 161, 95, 0.18);
}

.header-search .search-icon {
    color: var(--text3);
    font-size: 15px;
    padding-left: 18px;
}

.header-search input {
    flex: 1;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: 0;
    outline: none;
    padding: 0 14px;
    color: var(--text);
    font-size: 15px;
    box-shadow: none;
}

.header-search input::placeholder {
    color: var(--text3);
}

.header-search button {
    height: 32px;
    min-width: 64px;
    margin-right: 7px;
    background: var(--accent);
    color: #14201A;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header-search button:hover {
    background: var(--accent-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn i {
    margin-right: 8px;
}

.btn-gold {
    background: var(--accent);
    color: #14201A;
}

.btn-gold:hover {
    background: var(--accent-hover);
    color: #14201A;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(205, 161, 95, 0.22);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-hover);
    transform: translateY(-1px);
}

.search-toggle-btn,
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.header-nav {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(230, 224, 208, 0.05);
}

.nav-links-inner {
    display: flex;
    justify-content: center;
    gap: 10px 36px;
    flex-wrap: wrap;
    align-items: center;
    min-height: 54px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    min-height: 54px;
    padding: 0 4px;
    font-size: 15px;
    color: var(--text2);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link.is-active {
    color: var(--accent);
}

.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.article-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 96px 0 84px;
    border-bottom: 1px solid var(--line);
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 18, 15, 0.97) 0%, rgba(12, 18, 15, 0.82) 45%, rgba(12, 18, 15, 0.46) 100%);
    z-index: 1;
}

.article-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70%;
    background: linear-gradient(180deg, rgba(12, 18, 15, 0), var(--bg) 95%);
    z-index: 1;
}

.article-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--text3);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--text2);
}

.breadcrumb a:hover {
    color: var(--accent-hover);
}

.breadcrumb .sep {
    color: var(--text3);
}

.breadcrumb-current {
    color: var(--text2);
}

.article-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(205, 161, 95, 0.12);
    color: var(--accent);
    border: 1px solid rgba(205, 161, 95, 0.28);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
}

.article-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 940px;
    margin: 0 0 20px;
    color: var(--text);
}

.article-summary {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text2);
    max-width: 860px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.article-meta-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    color: var(--text2);
    font-size: 14px;
    margin-top: 26px;
}

.article-meta-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-meta-list i {
    color: var(--accent);
    font-size: 14px;
}

.article-content-wrap {
    padding: 56px 0 20px;
}

.article-two-col {
    align-items: flex-start;
}

.article-maincol {
    max-width: 100%;
}

.article-body {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 48px);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body p {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(242, 239, 231, 0.92);
    margin: 0 0 1.6em;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--text);
    line-height: 1.35;
    margin: 2.2em 0 0.8em;
    scroll-margin-top: 20px;
}

.article-body h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    border-left: 4px solid var(--accent);
    padding-left: 18px;
}

.article-body h3 {
    font-size: 1.28rem;
    color: var(--accent-hover);
}

.article-body a {
    color: var(--accent);
    border-bottom: 1px dashed rgba(205, 161, 95, 0.6);
}

.article-body a:hover {
    color: var(--accent-hover);
    border-bottom-style: solid;
}

.article-body ul,
.article-body ol {
    padding-left: 1.3em;
    margin: 0 0 1.6em;
    color: rgba(242, 239, 231, 0.9);
}

.article-body li {
    margin-bottom: 0.5em;
}

.article-body blockquote {
    margin: 2em 0;
    padding: 22px 26px;
    background: rgba(205, 161, 95, 0.07);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    color: var(--text2);
    font-size: 17px;
}

.article-body img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    margin: 2em 0;
}

.article-body figure {
    margin: 2em 0;
}

.article-body figure img {
    margin: 0;
}

.article-body figcaption {
    font-size: 13px;
    color: var(--text3);
    text-align: center;
    margin-top: 10px;
}

.article-body pre {
    background: #0A0F0D;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px;
    overflow-x: auto;
}

.article-body code {
    font-family: "SFMono-Regular", Consolas, monospace;
    color: var(--accent-hover);
}

.article-source-note {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--text3);
    font-size: 13px;
    line-height: 1.8;
}

.article-backlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.article-backlinks .btn {
    min-height: 46px;
}

.article-sidebar {
    max-width: 100%;
}

.side-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.side-box h3 {
    margin: 0 0 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-box h3 i {
    color: var(--accent);
    font-size: 16px;
}

.side-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.side-feature:hover {
    background: rgba(205, 161, 95, 0.06);
    border-color: rgba(205, 161, 95, 0.2);
    transform: translateY(-2px);
}

.side-feature .side-thumb {
    flex: 0 0 88px;
    width: 88px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
}

.side-feature .side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.side-feature .side-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-feature .side-content strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.4;
}

.side-feature .side-content small {
    color: var(--text3);
    font-size: 12px;
    line-height: 1.6;
}

.side-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-links li {
    border-bottom: 1px solid rgba(230, 224, 208, 0.08);
}

.side-links li:last-child {
    border-bottom: 0;
}

.side-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 4px;
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.side-links a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--text3);
    font-size: 13px;
}

.side-links a:hover {
    color: var(--accent-hover);
    padding-left: 10px;
}

.side-helper {
    background: linear-gradient(135deg, rgba(205, 161, 95, 0.12), rgba(111, 154, 130, 0.08));
    border: 1px solid rgba(205, 161, 95, 0.18);
}

.side-helper p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.side-helper .btn {
    width: 100%;
}

.related-strip {
    padding: 16px 0 10px;
}

.related-strip-title h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin: 0 0 8px;
    color: var(--text);
}

.related-strip-title p {
    color: var(--text3);
    font-size: 15px;
    margin: 0 0 30px;
}

.relation-card {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 150px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.relation-card:hover {
    border-color: rgba(205, 161, 95, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.relation-card .thumb {
    flex: 0 0 180px;
    width: 180px;
    height: 150px;
    overflow: hidden;
}

.relation-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.relation-card:hover .thumb img {
    transform: scale(1.04);
}

.relation-card .content {
    padding: 18px 24px 18px 0;
}

.relation-card .content span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(205, 161, 95, 0.1);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.relation-card .content h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--text);
}

.relation-card .content p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-faq {
    padding: 70px 0 30px;
    border-top: 1px solid rgba(230, 224, 208, 0.07);
}

.faq-intro h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    margin: 0 0 16px;
    color: var(--text);
}

.faq-intro p {
    color: var(--text3);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(205, 161, 95, 0.2);
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--accent-hover);
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: var(--text2);
    font-size: 14px;
    line-height: 1.75;
}

.article-cta {
    position: relative;
    margin: 64px auto 0;
    max-width: 1360px;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(205, 161, 95, 0.14);
}

.article-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(12, 18, 15, 0.96), rgba(12, 18, 15, 0.74) 60%, rgba(12, 18, 15, 0.5));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 72px 48px;
    text-align: center;
}

.cta-content span {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 14px;
    color: var(--text);
    line-height: 1.2;
}

.cta-content p {
    color: var(--text2);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.missing-section {
    padding: 100px 0 120px;
    min-height: 55vh;
}

.missing-card {
    max-width: 620px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 64px 40px;
}

.missing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(205, 161, 95, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.missing-card h1 {
    font-size: 2rem;
    margin: 0 0 16px;
    color: var(--text);
}

.missing-card p {
    color: var(--text2);
    font-size: 16px;
    margin: 0 0 28px;
}

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    margin-top: 80px;
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1fr;
    gap: 40px 60px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(230, 224, 208, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.footer-logo i {
    color: var(--accent);
    font-size: 22px;
}

.footer-brand p {
    color: var(--text3);
    font-size: 14px;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text2);
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: var(--accent-hover);
    border-color: rgba(205, 161, 95, 0.4);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    color: var(--text);
    margin: 12px 0 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text3);
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-hover);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 26px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--text3);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent);
}

.footer-bottom a:hover {
    color: var(--accent-hover);
}

@media screen and (max-width: 1023px) {
    .header-search {
        order: 5;
        width: 100%;
        margin: 2px 0 0;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-main {
        flex-wrap: wrap;
    }

    .article-sidebar {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .relation-card {
        flex-direction: column;
        align-items: stretch;
    }

    .relation-card .thumb {
        flex: none;
        width: 100%;
        height: 180px;
    }

    .relation-card .content {
        padding: 0 24px 22px;
    }
}

@media screen and (max-width: 639px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-utility {
        display: none;
    }

    .header-main {
        flex-wrap: nowrap;
        gap: 12px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .site-logo {
        gap: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 17px;
    }

    .site-logo .logo-text strong {
        font-size: 18px;
    }

    .site-logo .logo-text em {
        font-size: 11px;
    }

    .header-search {
        display: none;
        order: 5;
        width: calc(100% - 40px);
        margin: 0;
        position: absolute;
        top: 68px;
        left: 20px;
        right: 20px;
        z-index: 60;
        box-shadow: var(--shadow);
        background: rgba(18, 26, 22, 0.97);
    }

    .header-search.is-open {
        display: flex;
    }

    .search-toggle-btn {
        display: inline-flex;
    }

    .header-actions {
        margin-left: 0;
    }

    .header-actions .header-login {
        min-height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none;
    }

    .header-nav.is-open {
        display: block;
        border-top: 1px solid var(--line);
    }

    .nav-links-inner {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 8px 0;
    }

    .nav-link {
        min-height: 48px;
        border-bottom: 1px solid rgba(230, 224, 208, 0.06);
        font-size: 16px;
        padding: 0 4px;
    }

    .nav-link::after {
        top: 0;
        bottom: auto;
        width: 2px;
        height: auto;
        left: 0;
        right: auto;
        transform: none;
        opacity: 0;
    }

    .nav-link.is-active::after {
        opacity: 1;
    }

    .article-hero {
        padding: 60px 0 60px;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .article-summary {
        font-size: 15px;
    }

    .article-meta-list {
        gap: 10px 16px;
        font-size: 13px;
    }

    .article-content-wrap {
        padding-top: 34px;
    }

    .article-body {
        padding: 22px 18px;
    }

    .article-body p {
        font-size: 16px;
        line-height: 1.8;
    }

    .article-backlinks .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .side-box {
        padding: 20px;
    }

    .article-faq {
        padding-top: 52px;
    }

    .faq-item {
        padding: 20px;
    }

    .cta-content {
        padding: 48px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .site-footer {
        margin-top: 60px;
        padding-top: 50px;
    }
}

/* roulang page: category2 */
:root{
  --bg:#0C120F;
  --deep:#0A0F0C;
  --surface:#121A16;
  --card:#17211B;
  --lift:#202D25;
  --line:rgba(230,224,208,0.14);
  --line-strong:rgba(230,224,208,0.24);
  --accent:#CDA15F;
  --accent-hover:#E2BC78;
  --green:#6F9A82;
  --text:#F2EFE7;
  --muted:#A4AFA7;
  --faint:#6F7A73;
  --radius-lg:14px;
  --radius-md:10px;
  --radius-pill:999px;
  --shadow:0 12px 32px rgba(0,0,0,0.18);
  --font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",-apple-system,sans-serif;
  --transition:all .22s ease;
}
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:var(--font-family);
  background:var(--bg);
  color:var(--text);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto;}
a{color:var(--accent);text-decoration:none;transition:var(--transition);}
a:hover{color:var(--accent-hover);}
p{margin:0 0 1.1rem;}
ul{margin:0 0 1rem;padding-left:1.2rem;}
h1,h2,h3,h4,h5{margin:0 0 .6em;font-weight:600;line-height:1.25;color:var(--text);}
h1{font-size:clamp(2.4rem,5.2vw,4.8rem);line-height:1.08;letter-spacing:-.02em;}
h2{font-size:clamp(1.6rem,2.6vw,2.3rem);line-height:1.2;margin-bottom:.35em;}
h3{font-size:1.18rem;line-height:1.4;font-weight:500;}
.container{max-width:1360px;margin:0 auto;padding-left:20px;padding-right:20px;position:relative;}
@media(min-width:1024px){
  .container{padding-left:32px;padding-right:32px;}
}
.is-hidden{display:none!important;}
.visually-hidden{
  position:absolute!important;width:1px!important;height:1px!important;
  padding:0!important;margin:-1px!important;overflow:hidden!important;
  clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;
}
.section{padding:72px 0;background:var(--bg);}
.section-dark{background:var(--deep);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
@media(max-width:640px){
  .section{padding:56px 0;}
}
.eyebrow{
  display:flex;align-items:center;gap:10px;font-size:.78rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--accent);
  margin-bottom:14px;font-weight:500;
}
.eyebrow::before{content:"";width:24px;height:2px;background:var(--accent);flex:none;}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:32px;}
.section-head h2{margin-bottom:.2em;}
.section-lead{color:var(--muted);max-width:560px;font-size:16px;line-height:1.75;margin:0;}
@media(max-width:768px){
  .section-head{flex-direction:column;align-items:flex-start;gap:14px;}
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 26px;border-radius:var(--radius-pill);
  font-weight:500;font-size:.95rem;line-height:1;cursor:pointer;
  border:1px solid transparent;transition:var(--transition);white-space:nowrap;
}
.btn:focus-visible,button:focus-visible,a:focus-visible{
  outline:3px solid rgba(205,161,95,.45);outline-offset:3px;
}
.btn-gold{background:var(--accent);color:var(--deep);}
.btn-gold:hover{background:var(--accent-hover);color:var(--deep);box-shadow:0 10px 28px rgba(205,161,95,.18);transform:translateY(-1px);}
.btn-ghost{background:transparent;color:var(--text);border-color:rgba(255,255,255,.28);}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent-hover);background:rgba(205,161,95,.06);}
.btn-sm{height:38px;padding:0 16px;font-size:.85rem;}

/* Topbar */
.topbar{background:var(--deep);border-bottom:1px solid var(--line);font-size:13px;}
.topbar-inner{height:36px;display:flex;justify-content:space-between;align-items:center;color:var(--faint);}
.topbar-inner a{color:var(--muted);font-weight:500;}
.topbar-inner a:hover{color:var(--accent-hover);}
@media(max-width:640px){
  .topbar-inner span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:68%;}
}

/* Header */
.site-header{position:relative;z-index:20;background:var(--bg);}
.header-main{background:var(--bg);}
.header-main-inner{
  display:flex;align-items:center;gap:20px;
  padding:16px 0;flex-wrap:nowrap;
}
@media(max-width:899px){
  .header-main-inner{flex-wrap:wrap;gap:12px;}
}
.brand{display:inline-flex;align-items:center;gap:10px;flex-shrink:0;}
.brand-icon{
  font-size:36px;color:var(--accent);line-height:1;display:inline-flex;
  transition:transform .5s ease;flex:none;
}
.brand:hover .brand-icon{transform:rotate(90deg);}
.brand-text{
  font-size:18px;font-weight:700;color:var(--text);letter-spacing:.02em;
  white-space:nowrap;line-height:1.2;
}
@media(max-width:1023px){
  .brand-text{font-size:16px;}
}
.header-search{
  position:relative;flex:1 1 auto;max-width:640px;min-width:240px;
  margin-left:auto;margin-right:auto;
}
.header-search .search-glyph{position:absolute;left:18px;top:50%;transform:translateY(-50%);color:var(--faint);font-size:15px;pointer-events:none;}
.header-search input[type="search"]{
  width:100%;height:46px;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.055);border:1px solid var(--line);
  padding:0 82px 0 44px;color:var(--text);font-size:15px;
  font-family:inherit;transition:var(--transition);appearance:none;
}
.header-search input[type="search"]::placeholder{color:var(--faint);}
.header-search input[type="search"]:focus{
  outline:none;border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(205,161,95,.22);background:rgba(255,255,255,.075);
}
.search-submit{
  position:absolute;right:5px;top:5px;bottom:5px;background:rgba(255,255,255,.08);
  color:var(--text);border:0;border-radius:var(--radius-pill);
  padding:0 16px;font-size:.85rem;cursor:pointer;font-family:inherit;
  transition:var(--transition);
}
.search-submit:hover{background:var(--accent);color:var(--deep);}
.header-actions{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.header-actions .btn-login{height:42px;padding:0 22px;}
.icon-square{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  background:transparent;color:var(--text);display:none;
  align-items:center;justify-content:center;cursor:pointer;transition:var(--transition);font-size:16px;
}
.icon-square:hover{border-color:var(--accent);color:var(--accent);}
@media(max-width:899px){
  .header-search{order:5;flex-basis:100%;max-width:100%;min-width:0;display:none;margin-top:2px;}
  .header-search.is-open{display:block;}
  .icon-square{display:inline-flex;}
}
@media(max-width:520px){
  .header-actions .btn-login{padding:0 12px;font-size:.83rem;height:38px;}
  .brand-text{font-size:15px;}
  .brand-icon{font-size:30px;}
}

/* Main nav */
.nav-bar{background:var(--deep);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.nav-links-inner{
  display:flex;align-items:center;gap:32px;min-height:50px;
  overflow-x:auto;scrollbar-width:none;white-space:nowrap;
}
.nav-links-inner::-webkit-scrollbar{display:none;}
.nav-link{
  position:relative;display:block;line-height:50px;font-size:15px;
  color:var(--muted);padding:0 2px;border:0;background:transparent;
}
.nav-link:hover{color:var(--text);}
.nav-link.is-active{color:var(--text);font-weight:600;}
.nav-link.is-active::after{
  content:"";position:absolute;left:50%;bottom:11px;transform:translateX(-50%);
  width:6px;height:6px;border-radius:50%;background:var(--accent);
}
@media(max-width:899px){
  .nav-bar{display:none;border-bottom:0;}
  .nav-bar.open{display:block;border-bottom:1px solid var(--line);max-height:calc(100vh - 70px);overflow:auto;}
  .nav-links-inner{flex-direction:column;align-items:flex-start;gap:0;padding:10px 0;min-height:0;overflow-x:visible;}
  .nav-link,.nav-link.is-active{line-height:44px;font-size:16px;width:fit-content;}
}

/* Breadcrumb */
.breadcrumbs{padding:14px 0 0;font-size:.82rem;color:var(--faint);}
.breadcrumbs a{color:var(--muted);}
.breadcrumbs a:hover{color:var(--accent-hover);}
.breadcrumbs .sep{display:inline-block;margin:0 10px;color:var(--faint);}

/* Page hero */
.page-hero{
  position:relative;color:var(--text);overflow:hidden;
  border-bottom:1px solid var(--line);
  background:var(--deep);
}
.page-hero-bg{
  position:absolute;inset:0;background-size:cover;background-position:center 32%;
  transform:scale(1.02);
}
.page-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(8,12,10,.96) 0%,rgba(8,12,10,.86) 42%,rgba(8,12,10,.55) 100%),
             linear-gradient(0deg,rgba(12,18,15,.6) 0%,rgba(12,18,15,0) 42%);
}
.page-hero-inner{position:relative;z-index:2;padding:82px 0 82px;}
@media(max-width:768px){.page-hero-inner{padding:54px 0 56px;}}
.page-kicker{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(205,161,95,.12);border:1px solid rgba(205,161,95,.32);
  border-radius:var(--radius-pill);padding:6px 14px;font-size:.82rem;
  color:var(--accent);letter-spacing:.04em;
}
.page-hero h1{margin:20px 0 14px;max-width:860px;}
.page-hero .hero-intro{
  max-width:820px;font-size:1.06rem;line-height:1.9;color:var(--muted);margin-bottom:26px;
}
.hero-note{
  display:flex;flex-wrap:wrap;gap:14px 30px;margin-top:30px;padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);font-size:.88rem;color:var(--muted);
}
.hero-note i{color:var(--accent);margin-right:7px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:8px;}
@media(max-width:640px){
  .hero-actions .btn{width:100%;}
}

/* Announcement strip */
.announcement-sec{padding:34px 0 0;};
.announce-bar{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  background:linear-gradient(90deg,#17211B,#101812);
  border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:16px 22px;box-shadow:var(--shadow);
}
.announce-copy{display:flex;align-items:center;gap:14px;min-width:0;}
.announce-pill{
  background:var(--accent);color:var(--deep);border-radius:var(--radius-pill);
  padding:4px 13px;font-size:.78rem;font-weight:700;white-space:nowrap;letter-spacing:.04em;
}
.announce-text{color:#EDE8DA;font-size:.95rem;line-height:1.6;margin:0;}
@media(max-width:720px){
  .announce-bar{flex-direction:column;align-items:flex-start;}
  .announce-copy{flex-direction:column;align-items:flex-start;}
}

/* Shelf */
.shelf-section{overflow:hidden;}
.shelf-arrows{display:flex;gap:10px;flex-shrink:0;}
.shelf-arrow{
  width:42px;height:42px;border-radius:50%;border:1px solid var(--line-strong);
  background:rgba(255,255,255,.02);color:var(--text);font-size:14px;
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;transition:var(--transition);flex:none;
}
.shelf-arrow:hover{border-color:var(--accent);background:var(--accent);color:var(--deep);}
.scroll-shelf{
  display:flex;gap:20px;overflow-x:auto;
  margin-right:-32px;padding:2px 32px 18px 2px;
  scroll-snap-type:x mandatory;scrollbar-width:none;
}
.scroll-shelf::-webkit-scrollbar{display:none;}
.media-card{flex:0 0 188px;scroll-snap-align:start;position:relative;}
@media(max-width:640px){.media-card{flex-basis:158px;}}
.card-frame{
  position:relative;aspect-ratio:3/4;border-radius:var(--radius-md);
  overflow:hidden;border:1px solid var(--line);background:var(--surface);
}
.card-frame img{width:100%;height:100%;object-fit:cover;object-position:top center;transition:transform .55s ease;}
.media-card:hover .card-frame img{transform:scale(1.045);}
.card-tag{
  position:absolute;top:12px;left:12px;z-index:2;background:rgba(12,18,15,.74);
  border:1px solid rgba(255,255,255,.16);border-radius:var(--radius-pill);
  color:#F4EDDC;font-size:.74rem;padding:4px 10px;letter-spacing:.03em;
  backdrop-filter:blur(6px);max-width:calc(100% - 24px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.play-mask{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,12,10,.72),rgba(8,12,10,0) 45%);
  display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s ease;
}
.play-mask i{
  width:52px;height:52px;border-radius:50%;background:rgba(205,161,95,.92);
  color:var(--deep);border:2px solid rgba(255,255,255,.2);
  display:flex;align-items:center;justify-content:center;font-size:18px;transform:translateY(8px);transition:var(--transition);
}
.media-card:hover .play-mask{opacity:1;}
.media-card:hover .play-mask i{transform:translateY(0);}
.media-card h3{font-size:15px;font-weight:500;margin:10px 0 4px;color:var(--text);}
.media-card .card-meta{font-size:.8rem;color:var(--faint);display:flex;gap:8px;align-items:center;}
.media-card .card-meta i{font-size:.7rem;color:var(--green);}

/* Genre / cover grid */
.genre-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:1023px){.genre-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.genre-grid{grid-template-columns:1fr;}}
.genre-item{
  position:relative;min-height:190px;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);display:flex;align-items:flex-end;transition:var(--transition);
}
.genre-item:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
.genre-item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
.genre-item::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(8,12,10,.88) 0%,rgba(8,12,10,.12) 58%,rgba(8,12,10,.16) 100%);
}
.genre-copy{position:relative;z-index:2;padding:22px;color:#fff;width:100%;}
.genre-copy i{color:var(--accent);font-size:1.1rem;margin-bottom:6px;display:inline-flex;}
.genre-copy h3{font-size:1.06rem;margin:0 0 2px;}
.genre-copy span{font-size:.78rem;color:rgba(255,255,255,.66);}

/* Feature mixed */
.mixed-grid{display:grid;grid-template-columns:7fr 5fr;gap:26px;align-items:stretch;}
@media(max-width:899px){.mixed-grid{grid-template-columns:1fr;}}
.feature-main{
  position:relative;min-height:460px;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);display:flex;align-items:flex-end;
}
.feature-main img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
.feature-main::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(8,12,10,.94) 0%,rgba(8,12,10,.06) 75%,rgba(8,12,10,.18) 100%);
}
.feature-main .feature-copy{position:relative;z-index:2;padding:30px;max-width:600px;}
.feature-main h3{font-size:clamp(1.4rem,2.6vw,2.2rem);line-height:1.25;}
.feature-main p{color:rgba(255,255,255,.78);font-size:.98rem;}
.editor-list{
  display:flex;flex-direction:column;border-top:1px solid var(--line);
}
.editor-row{
  display:flex;gap:16px;align-items:center;padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.1);transition:var(--transition);
}
.editor-row:hover{background:rgba(255,255,255,.025);}
.editor-row .thumb{
  width:76px;height:92px;flex:none;border-radius:8px;object-fit:cover;
  border:1px solid var(--line);
}
.editor-row .editor-copy{min-width:0;}
.editor-row .editor-copy h3{font-size:.98rem;margin:0 0 3px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.editor-row .editor-copy p{font-size:.8rem;color:var(--faint);margin:0;display:flex;gap:10px;flex-wrap:wrap;}
.mini-label{display:inline-flex;align-items:center;background:rgba(111,154,130,.2);color:var(--green);font-size:.72rem;padding:2px 8px;border-radius:var(--radius-pill);}

/* Steps */
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
@media(max-width:899px){.steps-grid{grid-template-columns:1fr;gap:16px;}}
.step-card{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:26px;position:relative;transition:var(--transition);
}
.step-card:hover{background:var(--card);transform:translateY(-3px);box-shadow:var(--shadow);}
.step-num{
  font-family:inherit;font-size:1rem;font-weight:700;color:var(--accent);
  display:flex;align-items:center;justify-content:center;width:40px;height:40px;
  border:1px solid rgba(205,161,95,.35);border-radius:50%;background:rgba(205,161,95,.1);
  margin-bottom:16px;
}
.step-card h3{font-size:1.04rem;}
.step-card p{color:var(--muted);font-size:.9rem;margin:0;}

/* CTA wide */
.cta-wide{padding:0 0 72px;background:var(--bg);}
.cta-box{
  position:relative;overflow:hidden;border-radius:var(--radius-lg);
  background:url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  border:1px solid var(--line);padding:62px 40px;
}
.cta-box::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(8,12,10,.94) 0%,rgba(8,12,10,.68) 60%,rgba(8,12,10,.42) 100%);
}
.cta-box .cta-inner{position:relative;z-index:2;max-width:700px;}
.cta-box h2{font-size:clamp(1.6rem,3vw,2.5rem);}
.cta-box p{color:var(--muted);max-width:560px;}
@media(max-width:640px){
  .cta-box{padding:40px 22px;}
  .cta-box .btn{width:100%;}
}

/* FAQ */
.faq-layout{display:grid;grid-template-columns:4fr 8fr;gap:40px;align-items:start;}
@media(max-width:899px){.faq-layout{grid-template-columns:1fr;gap:22px;}}
.faq-left .eyebrow{text-transform:none;}
.faq-left p{color:var(--faint);}
.faq-left .faq-contact{color:var(--muted);font-size:.92rem;}
.faq-left .faq-contact a{color:var(--accent);}
.accordion{margin:0;background:transparent;border:0;}
.accordion-item{background:transparent;border:0;margin-bottom:14px;}
.accordion-title{
  background:var(--surface);border:1px solid var(--line);border-radius:12px;
  color:var(--text);font-size:1rem;line-height:1.6;padding:18px 54px 18px 22px;
  position:relative;transition:var(--transition);
}
.accordion-title:hover,.accordion-title:focus{background:var(--card);color:var(--text);}
.accordion-title::before{
  content:"+";position:absolute;right:20px;top:50%;transform:translateY(-50%);
  font-size:1.7rem;font-weight:400;color:var(--accent);line-height:1;transition:transform .25s ease;
}
.accordion-item.is-active > .accordion-title::before{transform:translateY(-50%) rotate(45deg);}
.accordion-content{
  background:var(--card);border:1px solid var(--line);border-top:0;
  color:var(--muted);padding:4px 22px 16px;border-radius:0 0 12px 12px;
}

/* footer */
.site-footer{
  background:var(--deep);border-top:1px solid var(--line);
  padding:58px 0 28px;margin-top:0;color:var(--faint);
}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1.1fr;gap:32px;
  padding-bottom:34px;border-bottom:1px solid rgba(255,255,255,.1);
}
@media(max-width:899px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr;gap:24px;}}
.footer-logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:17px;color:var(--text);}
.footer-logo i{font-size:30px;color:var(--accent);}
.footer-brand p{font-size:.9rem;margin:16px 0 18px;color:var(--faint);line-height:1.8;}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line-strong);
  display:inline-flex;align-items:center;justify-content:center;color:var(--muted);font-size:.9rem;
}
.footer-social a:hover{border-color:var(--accent);background:var(--accent);color:var(--deep);}
.footer-col h4{font-size:.95rem;color:var(--text);margin-bottom:12px;font-weight:600;}
.footer-col ul{list-style:none;padding:0;margin:0;}
.footer-col li{line-height:1.7;margin-bottom:8px;}
.footer-col a{color:var(--faint);font-size:.9rem;transition:var(--transition);}
.footer-col a:hover{color:var(--accent-hover);}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;
  padding-top:24px;font-size:.78rem;color:var(--faint);line-height:1.6;
}
.footer-bottom a{color:var(--muted);}
.footer-bottom a:hover{color:var(--accent-hover);}

/* Foundation override */
.button,.button.hollow,.button.clear{padding:12px 24px;border-radius:var(--radius-pill);}
input[type="search"],input[type="text"],textarea{box-shadow:none;}

/* roulang page: category3 */
:root {
  --bg: #0C120F;
  --bg-deep: #080C0A;
  --bg-secondary: #121A16;
  --card-surface: #17211B;
  --surface-raised: #202D25;
  --line: rgba(230, 224, 208, 0.14);
  --gold: #CDA15F;
  --gold-hover: #E2BC78;
  --sage: #6F9A82;
  --text: #F2EFE7;
  --text-secondary: #A4AFA7;
  --text-muted: #6F7A73;
  --radius-lg: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  --highlight: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --space-section: clamp(72px, 10vw, 104px);
  --space-section-mobile: clamp(52px, 8vw, 64px);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-container {
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

button,
input {
  font-family: inherit;
  font-size: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input:focus,
button:focus,
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 18, 15, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo > i {
  font-size: 26px;
  color: var(--gold);
}

.brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}

.brand-suffix {
  font-size: 12px;
  color: var(--text-secondary);
  border-left: 1px solid var(--line);
  padding-left: 10px;
  letter-spacing: 0.06em;
}

.header-search {
  position: relative;
  flex: 0 1 680px;
  margin: 0 auto;
  width: 100%;
}

.header-search .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 15px;
  pointer-events: none;
}

.header-search input {
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px 0 48px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 161, 95, 0.2);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.login-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: var(--gold);
  color: #0C120F;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-pill:hover {
  background: var(--gold-hover);
  color: #0C120F;
  transform: translateY(-2px);
}

.mobile-search-btn,
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
}

.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  border-top: 1px solid rgba(230, 224, 208, 0.07);
  padding-top: 0;
  padding-bottom: 0;
  overflow-x: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px 11px;
  color: var(--text-secondary);
  font-size: 15px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-hover);
}

.nav-link.is-active {
  color: var(--text);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #0C120F;
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: #0C120F;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(242, 239, 231, 0.28);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.category-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.95) 0%, rgba(8, 12, 10, 0.75) 48%, rgba(8, 12, 10, 0.45) 100%),
    url('/assets/images/backpic/back-2.webp') no-repeat center / cover;
  border-bottom: 1px solid var(--line);
}

.category-hero .container {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}

.inner-hero {
  min-height: 500px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(205, 161, 95, 0.36);
  background: rgba(205, 161, 95, 0.1);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.category-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 14em;
}

.category-hero .hero-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 42em;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(230, 224, 208, 0.12);
}

.mini-entry {
  color: var(--text-secondary);
  font-size: 14px;
}

.mini-entry i {
  color: var(--gold);
  margin-right: 6px;
}

/* ===== Section layout ===== */
.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 38px;
}

.section-head-left {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px dashed transparent;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--gold-hover);
  border-bottom-color: var(--gold);
}

/* ===== Main story + shorts ===== */
.feature-works {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.main-story {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-surface);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.main-story-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.main-story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.main-story-link:hover .main-story-img {
  transform: scale(1.04);
}

.main-story-overlay {
  margin-top: auto;
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(0deg, rgba(8, 12, 10, 0.96) 0%, rgba(8, 12, 10, 0.7) 52%, rgba(8, 12, 10, 0) 100%);
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(205, 161, 95, 0.16);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.main-story-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  max-width: 20em;
}

.main-story-text {
  color: var(--text-secondary);
  max-width: 56em;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

.short-stories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.short-story {
  flex: 1;
  display: flex;
  background: var(--card-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.short-story:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 161, 95, 0.5);
  background: var(--surface-raised);
}

.short-story-img {
  width: 150px;
  flex-shrink: 0;
  min-height: 210px;
}

.short-story-body {
  flex: 1;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.short-story-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.short-story-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.short-story-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

.short-story-link i {
  margin-left: 5px;
}

/* ===== Pull quote ===== */
.pullquote-wrap {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 0 16px;
}

.pullquote-wrap p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-top: 28px;
}

.pullquote-wrap p::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.pullquote-meta {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ===== Preview band ===== */
.preview-band {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.9) 0%, rgba(8, 12, 10, 0.55) 100%),
    url('/assets/images/backpic/back-3.png') no-repeat center / cover;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: clamp(28px, 5vw, 60px);
  margin-top: var(--space-section);
}

.preview-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.preview-info {
  flex: 1 1 380px;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}

.preview-info h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.preview-copy {
  color: var(--text-secondary);
  max-width: 480px;
}

.preview-time {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
  border-left: 1px solid rgba(205, 161, 95, 0.35);
  padding-left: 28px;
  margin-left: 12px;
}

.preview-time span {
  font-size: 16px;
  color: var(--text);
}

.preview-time strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.preview-time small {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ===== Journey path ===== */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.path-card {
  background: var(--card-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 161, 95, 0.45);
}

.path-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}

.path-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.path-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== Moments slider ===== */
.moment-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.moment-track::-webkit-scrollbar {
  display: none;
}

.moment-card {
  flex: 0 0 280px;
  background: var(--card-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.moment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 161, 95, 0.45);
}

.moment-media {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.moment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.moment-card:hover .moment-media img {
  transform: scale(1.05);
}

.moment-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 10, 0.3);
  color: #fff;
  font-size: 22px;
}

.moment-play i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(205, 161, 95, 0.9);
  color: #0C120F;
}

.moment-body {
  padding: 20px 20px 22px;
}

.moment-body h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

.moment-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== CTA band ===== */
.cta-band {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(100deg, rgba(8, 12, 10, 0.9) 0%, rgba(8, 12, 10, 0.62) 60%, rgba(8, 12, 10, 0.35) 100%),
    url('/assets/images/backpic/back-1.png') no-repeat center / cover;
  text-align: center;
  padding: clamp(44px, 8vw, 90px) 24px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-band .mini-footnote {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.faq-heading {
  grid-column: span 4;
}

.faq-list {
  grid-column: span 8;
}

.faq-item {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open {
  background: #1B2721;
  border-color: rgba(205, 161, 95, 0.32);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
}

.faq-q i {
  margin-left: auto;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-a {
  padding: 0 24px 22px;
  max-height: 460px;
  opacity: 1;
}

.faq-a p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(230, 224, 208, 0.08);
  padding-top: 70px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(230, 224, 208, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-logo i {
  color: var(--gold);
  font-size: 23px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(205, 161, 95, 0.08);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-col ul a:hover {
  color: var(--gold-hover);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 22px 0 26px;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-bottom a {
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--line);
}

.footer-bottom a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 1024px) {
  .short-story-img {
    width: 120px;
    min-height: 180px;
  }

  .path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-heading {
    grid-column: span 12;
  }

  .faq-list {
    grid-column: span 12;
  }
}

@media (max-width: 767px) {
  .header-main {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-text {
    font-size: 19px;
  }

  .brand-suffix {
    display: none;
  }

  .header-search {
    order: 4;
    flex: 1 0 100%;
    display: none;
  }

  .header-search.is-open {
    display: block;
  }

  .header-actions {
    margin-left: 0;
  }

  .login-pill {
    padding: 0 18px;
    height: 38px;
  }

  .mobile-search-btn,
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links-inner {
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-top: none;
    padding: 6px 20px 14px;
    background: var(--bg);
  }

  .nav-links-inner.is-open {
    display: flex;
  }

  .nav-link {
    border-bottom: none;
    padding: 12px 10px;
    font-size: 16px;
    border-left: 2px solid transparent;
  }

  .nav-link.is-active {
    border-left-color: var(--gold);
  }

  .nav-link.is-active::after {
    display: none;
  }

  .category-hero {
    min-height: 430px;
    background-position: 75% center;
  }

  .category-hero h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .category-hero .hero-lead {
    font-size: 16px;
  }

  .section {
    padding: var(--space-section-mobile) 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .short-stories {
    gap: 14px;
  }

  .short-story {
    flex-direction: column;
  }

  .short-story-img {
    width: 100%;
    height: 180px;
    min-height: 0;
  }

  .preview-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-time {
    border-left: none;
    border-top: 1px solid rgba(205, 161, 95, 0.35);
    padding-left: 0;
    padding-top: 18px;
    margin-left: 0;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .moment-card {
    flex-basis: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .main-story-link {
    min-height: 360px;
  }

  .main-story-overlay {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 17px;
  }

  .brand-logo > i {
    font-size: 22px;
  }

  .login-pill {
    padding: 0 14px;
    height: 34px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .short-story-img {
    height: 150px;
  }

  .feature-wrap .cell {
    margin-bottom: 16px;
  }
}

/* roulang page: category4 */
:root {
  --bg: #0C120F;
  --bg-deep: #080D0A;
  --bg-2: #121A16;
  --card: #17211B;
  --raised: #202D25;
  --line: rgba(230, 224, 208, 0.14);
  --gold: #CDA15F;
  --gold-2: #E2BC78;
  --green: #6F9A82;
  --text: #F2EFE7;
  --text-2: #A4AFA7;
  --text-3: #6F7A73;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  --inner-line: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
ul,
ol {
  list-style: none;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
a:hover {
  color: var(--gold-2);
}
button,
input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.grid-container {
  max-width: 1360px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .grid-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.section {
  padding: 72px 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 92px 0;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold);
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}
.section-heading {
  margin-bottom: 36px;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 12px;
}
.section-heading .section-desc {
  margin-top: 10px;
  color: var(--text-2);
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
}
.section-heading.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}
.section-heading.compact h2 {
  font-size: clamp(1.45rem, 1.9vw, 1.9rem);
  margin-top: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: var(--inner-line);
}
.btn-gold {
  background: var(--gold);
  color: #101509;
  border-color: rgba(255, 255, 255, 0.08);
}
.btn-gold i {
  color: #101509;
}
.btn-gold:hover {
  background: var(--gold-2);
  color: #101509;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(205, 161, 95, 0.16);
}
.btn-ghost {
  border-color: rgba(230, 224, 208, 0.22);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(205, 161, 95, 0.7);
  color: var(--gold-2);
  background: rgba(205, 161, 95, 0.06);
}
.tag-gold {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(205, 161, 95, 0.14);
  color: var(--gold-2);
  border: 1px solid rgba(205, 161, 95, 0.2);
  line-height: 1.2;
}
/* Header
----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(10, 16, 12, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar {
  display: none;
  border-bottom: 1px solid rgba(230, 224, 208, 0.08);
  font-size: 13px;
}
@media (min-width: 1024px) {
  .topbar {
    display: block;
  }
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
}
.topbar-inner p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-2);
}
.topbar-inner p i {
  color: var(--gold);
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-links a {
  color: var(--text-2);
}
.topbar-links a:hover {
  color: var(--gold);
}
.header-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1024px) {
  .header-main {
    min-height: 74px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(205, 161, 95, 0.3);
  border-radius: 50%;
  font-size: 18px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-text small {
  margin-top: 4px;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.18em;
}
@media (max-width: 639px) {
  .brand-text small {
    display: none;
  }
  .brand-text strong {
    font-size: 18px;
  }
}
.header-search {
  flex: 1 1 100%;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .header-search {
    order: 3;
  }
}
@media (min-width: 1024px) {
  .header-search {
    flex: 1 1 320px;
    max-width: 680px;
    margin: 0 auto;
  }
}
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 224, 208, 0.16);
  border-radius: 999px;
  height: 46px;
  padding: 0 6px 0 16px;
  box-shadow: var(--inner-line);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.search-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 161, 95, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.search-form > i {
  color: var(--text-3);
  font-size: 15px;
}
.search-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--text);
  font-size: 15px;
}
.search-form input::placeholder {
  color: var(--text-3);
}
.btn-search-submit {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.header-login {
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 19px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}
.header-bottom {
  border-top: 1px solid rgba(230, 224, 208, 0.06);
}
@media (max-width: 1023px) {
  .header-bottom {
    border-top: 0;
  }
  .header-bottom .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.main-nav {
  display: none;
}
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
  }
}
@media (max-width: 1023px) {
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 8px;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.nav-link.is-active {
  color: var(--gold);
  font-weight: 600;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
@media (max-width: 1023px) {
  .nav-link {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(230, 224, 208, 0.06);
    border-radius: 0;
  }
  .nav-link.is-active::after {
    left: auto;
    right: 6px;
    width: 3px;
    height: 18px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
  }
}
@media (max-width: 639px) {
  .header-login {
    display: none;
  }
}
/* Hero
----------------------------------------------- */
.cat-hero {
  position: relative;
  padding: 96px 0 88px;
  background: linear-gradient(90deg, rgba(12, 18, 15, 0.98) 0%, rgba(12, 18, 15, 0.88) 46%, rgba(12, 18, 15, 0.24) 100%),
              url("/assets/images/backpic/back-2.webp") center center / cover no-repeat;
  border-bottom: 1px solid rgba(230, 224, 208, 0.08);
}
@media (max-width: 768px) {
  .cat-hero {
    padding: 76px 0 70px;
  }
}
.cat-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.cat-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--text-2);
  font-size: 14px;
}
.hero-kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.cat-hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #F9F6EE;
  margin: 0 0 20px;
}
.cat-hero .lead {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.85;
  max-width: 660px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 14px;
}
.hero-note i {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(205, 161, 95, 0.28);
  background: rgba(205, 161, 95, 0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 14px;
  flex: 0 0 auto;
}
/* Quick path
----------------------------------------------- */
.quick-paths {
  background: var(--bg);
}
.path-card {
  position: relative;
  background: linear-gradient(180deg, rgba(32, 45, 37, 0.82), rgba(18, 26, 22, 0.86));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px 22px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 161, 95, 0.4);
  background: linear-gradient(180deg, rgba(38, 52, 44, 0.84), rgba(24, 34, 29, 0.92));
}
.path-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(205, 161, 95, 0.12);
  border: 1px solid rgba(205, 161, 95, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}
.path-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.path-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  flex: 1 1 auto;
}
.path-card .path-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
}
.path-card .path-link i {
  transition: transform 0.2s ease;
}
.path-card .path-link:hover i {
  transform: translateX(4px);
}
/* Support area
----------------------------------------------- */
.support-area {
  margin-top: -10px;
}
.support-aside .aside-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.support-aside {
  margin-bottom: 36px;
}
@media (min-width: 1024px) {
  .support-aside {
    margin-bottom: 0;
  }
}
.process-list {
  margin-top: 22px;
}
.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(230, 224, 208, 0.08);
}
.process-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.process-step {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(205, 161, 95, 0.36);
  background: rgba(205, 161, 95, 0.08);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.process-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.process-item p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
}
.aside-help-time {
  margin-top: 22px;
  background: rgba(205, 161, 95, 0.08);
  border: 1px solid rgba(205, 161, 95, 0.16);
  border-radius: 14px;
  padding: 20px;
}
.aside-help-time strong {
  color: var(--gold-2);
  font-size: 18px;
  display: block;
  margin-top: 6px;
  font-weight: 700;
}
.aside-help-time span {
  font-size: 13px;
  color: var(--text-2);
}
.support-main-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.support-main-heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.2;
}
.support-main-heading p {
  color: var(--text-2);
  font-size: 15px;
  max-width: 390px;
}
/* Accordion
----------------------------------------------- */
.faq-panel {
  margin: 0;
  border: 0;
}
.accordion {
  background: transparent !important;
}
.faq-panel .accordion-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background 0.2s ease, border 0.2s ease;
}
.faq-panel .accordion-item.is-active {
  background: #1B2721;
  border-color: rgba(205, 161, 95, 0.44);
}
.faq-panel .accordion-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  padding: 17px 18px;
  border: 0 !important;
}
.faq-panel .accordion-title::before,
.faq-panel .accordion-title::after {
  content: none !important;
}
.faq-panel .accordion-title:hover,
.faq-panel .accordion-title:focus {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-2);
}
.faq-panel .accordion-title:focus {
  outline: 2px solid rgba(205, 161, 95, 0.5);
  outline-offset: -2px;
}
.faq-panel .accordion-title .acc-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex: 0 0 auto;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-panel .accordion-title .acc-plus i {
  transition: transform 0.25s ease;
}
.faq-panel .accordion-item.is-active > .accordion-title .acc-plus {
  background: rgba(205, 161, 95, 0.16);
  transform: rotate(180deg);
}
.faq-panel .accordion-item.is-active > .accordion-title .acc-plus i {
  transform: rotate(45deg);
}
.faq-panel .accordion-content {
  background: rgba(10, 16, 12, 0.28);
  border-top: 1px solid rgba(230, 224, 208, 0.08);
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
  padding: 18px 20px;
}
.faq-panel .accordion-content p + p {
  margin-top: 10px;
}
/* Account tips
----------------------------------------------- */
.account-tips {
  background: linear-gradient(180deg, var(--bg) 0%, #0B110D 100%);
  border-top: 1px solid rgba(230, 224, 208, 0.06);
  border-bottom: 1px solid rgba(230, 224, 208, 0.06);
}
.tips-grid {
  margin-top: 6px;
}
.tips-grid .cell {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .tips-grid .cell {
    margin-bottom: 0;
  }
}
.tip-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tip-card:hover {
  border-color: rgba(205, 161, 95, 0.3);
  transform: translateY(-3px);
}
.tip-card i {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 16px;
}
.tip-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.tip-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}
/* Contact CTA
----------------------------------------------- */
.contact-block {
  padding: 72px 0;
}
@media (min-width: 1024px) {
  .contact-block {
    padding: 96px 0;
  }
}
.contact-wrap {
  background: linear-gradient(135deg, rgba(24, 35, 29, 0.96) 0%, rgba(12, 18, 15, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .contact-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
  }
}
.contact-copy {
  padding: 42px 30px;
}
@media (min-width: 768px) {
  .contact-copy {
    padding: 52px 46px;
  }
}
.contact-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.22;
  margin: 14px 0 16px;
}
.contact-copy p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-time {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
}
.contact-time li {
  color: var(--text-2);
  font-size: 14px;
}
.contact-time li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-visual {
  position: relative;
  min-height: 280px;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 1024px) {
  .contact-visual {
    min-height: 420px;
  }
}
.contact-visual::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg, rgba(12, 18, 15, 0.1) 0%, rgba(12, 18, 15, 0.06) 50%, rgba(12, 18, 15, 0) 100%);
}
/* Footer
----------------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(230, 224, 208, 0.07);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 36px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;
    gap: 24px;
  }
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .footer-logo i {
  color: var(--gold);
  font-size: 22px;
}
.footer-brand .footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.footer-brand > p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
  margin: 14px 0 16px;
  max-width: 380px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.footer-social a:hover {
  border-color: rgba(205, 161, 95, 0.45);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.footer-col ul a:hover {
  color: var(--gold-2);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(230, 224, 208, 0.06);
  padding-top: 20px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom a {
  color: var(--text-3);
  border-bottom: 1px dashed rgba(230, 224, 208, 0.2);
}
.footer-bottom a:hover {
  color: var(--gold);
  border-bottom-style: solid;
}
