/* roulang page: index */
:root {
            --bg: #07090c;
            --bg-soft: #0b0e12;
            --panel: #10141a;
            --panel-alt: #131820;
            --surface: rgba(14, 18, 24, 0.92);
            --surface-strong: rgba(20, 25, 33, 0.98);
            --line: rgba(219, 183, 97, 0.18);
            --line-strong: rgba(219, 183, 97, 0.35);
            --text: #f5f1e8;
            --muted: #adb5c2;
            --muted-2: #7f8998;
            --gold: #d8b35a;
            --gold-bright: #f0d48a;
            --gold-deep: #8b6a23;
            --wine: #542231;
            --teal: #184d57;
            --green: #244d41;
            --shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
            --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.28);
            --radius: 8px;
            --radius-sm: 6px;
            --space: 24px;
            --space-lg: 32px;
            --space-xl: 44px;
            --container: 1180px;
            --transition: 180ms ease;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--text);
            background:
                linear-gradient(180deg, rgba(9, 11, 14, 0.98) 0%, rgba(10, 13, 17, 0.98) 42%, rgba(7, 9, 12, 1) 100%),
                linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
            background-size: auto, 44px 44px, 44px 44px;
            font-family: "Inter", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(135deg, rgba(216, 179, 90, 0.08), transparent 28%),
                linear-gradient(315deg, rgba(36, 77, 65, 0.07), transparent 26%);
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input {
            font: inherit;
        }

        input,
        button {
            outline: none;
        }

        button {
            cursor: pointer;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible,
        summary:focus-visible {
            outline: 2px solid rgba(240, 212, 138, 0.9);
            outline-offset: 2px;
        }

        .site-shell {
            width: min(100% - 32px, var(--container));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 60;
            backdrop-filter: blur(14px);
            background: rgba(7, 9, 12, 0.84);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
        }

        .header-main {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 16px;
            align-items: center;
            padding: 16px 0 12px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.28);
            background: linear-gradient(180deg, rgba(216, 179, 90, 0.18), rgba(20, 25, 33, 0.98));
            color: var(--gold-bright);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
            flex: none;
        }

        .brand-copy {
            display: grid;
            min-width: 0;
        }

        .brand-copy strong {
            font-size: 1rem;
            letter-spacing: 0;
            line-height: 1.1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .brand-copy em {
            font-style: normal;
            font-size: 0.76rem;
            color: var(--muted);
            margin-top: 2px;
        }

        .search-bar {
            position: relative;
            display: flex;
            align-items: center;
            min-width: 0;
            border: 1px solid rgba(216, 179, 90, 0.18);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
            padding: 0 12px 0 42px;
            transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
        }

        .search-bar:focus-within {
            border-color: rgba(240, 212, 138, 0.48);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 3px rgba(216, 179, 90, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 14px;
            color: var(--gold);
            font-size: 0.95rem;
        }

        .search-bar input {
            width: 100%;
            min-width: 0;
            border: 0;
            background: transparent;
            color: var(--text);
            padding: 12px 0;
        }

        .search-bar input::placeholder {
            color: rgba(173, 181, 194, 0.85);
        }

        .search-clear {
            border: 0;
            background: transparent;
            color: var(--muted);
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            transition: background-color var(--transition), color var(--transition), transform var(--transition);
            flex: none;
        }

        .search-clear:hover {
            background: rgba(255, 255, 255, 0.06);
            color: var(--gold-bright);
            transform: translateY(-1px);
        }

        .header-tools {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tool-link,
        .menu-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text);
            border-radius: 8px;
            padding: 10px 12px;
            line-height: 1;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .tool-link:hover,
        .menu-toggle:hover {
            border-color: rgba(240, 212, 138, 0.34);
            background: rgba(216, 179, 90, 0.08);
            transform: translateY(-1px);
        }

        .tool-link span,
        .menu-toggle span {
            font-size: 0.92rem;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 0 16px;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 8px;
            border: 1px solid transparent;
            color: var(--muted);
            background: transparent;
        }

        .nav-link:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .nav-link.is-active {
            color: var(--gold-bright);
            background: rgba(216, 179, 90, 0.08);
            border-color: rgba(240, 212, 138, 0.28);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        .mobile-nav {
            display: none;
            padding: 0 0 18px;
        }

        .mobile-nav.is-open {
            display: block;
        }

        .mobile-search {
            margin-bottom: 12px;
        }

        .mobile-links {
            display: grid;
            gap: 10px;
        }

        .mobile-links .nav-link {
            justify-content: space-between;
            padding: 12px 14px;
        }

        .main {
            padding-bottom: 40px;
        }

        section {
            padding: 30px 0;
        }

        .hero {
            padding-top: 22px;
        }

        .flash-row {
            display: grid;
            grid-template-columns: auto auto minmax(0, 1fr);
            gap: 12px;
            align-items: center;
            margin-bottom: 18px;
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.18);
            background: linear-gradient(180deg, rgba(24, 20, 13, 0.68), rgba(14, 18, 24, 0.94));
            box-shadow: var(--shadow-soft);
        }

        .flash-label,
        .flash-countdown,
        .flash-note {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .flash-label {
            color: var(--gold-bright);
            font-weight: 700;
        }

        .flash-countdown span {
            color: var(--muted);
            font-size: 0.92rem;
        }

        .flash-countdown strong {
            font-size: 1rem;
            letter-spacing: 0;
            color: var(--text);
        }

        .flash-note {
            justify-content: flex-end;
            color: var(--muted);
            text-align: right;
        }

        .hero-grid {
            align-items: stretch;
        }

        .hero-copy {
            padding: 18px 0 8px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(216, 179, 90, 0.18);
            background: rgba(216, 179, 90, 0.08);
            color: var(--gold-bright);
            font-size: 0.84rem;
            letter-spacing: 0;
        }

        .hero h1 {
            margin: 0;
            font-size: clamp(2rem, 4vw, 3.55rem);
            line-height: 1.05;
            letter-spacing: 0;
        }

        .hero-lead {
            margin: 18px 0 0;
            max-width: 52ch;
            color: var(--muted);
            font-size: 1.02rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 22px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 44px;
            padding: 0 16px;
            border-radius: 8px;
            border: 1px solid transparent;
            background: transparent;
            color: var(--text);
            line-height: 1;
            box-shadow: none;
            transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
        }

        .button:hover {
            transform: translateY(-1px);
        }

        .primary-btn {
            background: linear-gradient(180deg, rgba(240, 212, 138, 0.98), rgba(216, 179, 90, 0.88));
            color: #130f05;
            border-color: rgba(255, 226, 154, 0.45);
            box-shadow: 0 10px 24px rgba(216, 179, 90, 0.18);
        }

        .primary-btn:hover {
            color: #110e06;
            box-shadow: 0 12px 28px rgba(216, 179, 90, 0.28);
        }

        .secondary-btn {
            border-color: rgba(240, 212, 138, 0.28);
            background: rgba(216, 179, 90, 0.08);
            color: var(--text);
        }

        .secondary-btn:hover {
            background: rgba(216, 179, 90, 0.14);
            border-color: rgba(240, 212, 138, 0.38);
        }

        .ghost-btn {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .ghost-btn:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(240, 212, 138, 0.28);
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .stat-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 12px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            font-size: 0.92rem;
        }

        .hero-stage {
            position: relative;
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.2);
            background:
                linear-gradient(180deg, rgba(17, 20, 26, 0.96), rgba(12, 15, 19, 0.98)),
                linear-gradient(135deg, rgba(216, 179, 90, 0.09), transparent 40%);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .hero-stage::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: 0.55;
            pointer-events: none;
        }

        .hero-stage-inner {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 14px;
        }

        .hero-stage-top {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-height: 30px;
            padding: 0 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.8rem;
            letter-spacing: 0;
        }

        .badge-gold {
            border-color: rgba(240, 212, 138, 0.28);
            background: rgba(216, 179, 90, 0.1);
            color: var(--gold-bright);
        }

        .badge-soft {
            border-color: rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
        }

        .hero-ticket {
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background:
                linear-gradient(180deg, rgba(216, 179, 90, 0.08), rgba(12, 15, 19, 0.95)),
                linear-gradient(135deg, rgba(84, 34, 49, 0.12), transparent 40%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .hero-ticket h3,
        .hero-ticket p {
            margin: 0;
        }

        .hero-ticket h3 {
            font-size: 1.18rem;
            margin-bottom: 8px;
        }

        .hero-ticket p {
            color: var(--muted);
            font-size: 0.96rem;
        }

        .ticket-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .ticket-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 10px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            font-size: 0.84rem;
        }

        .entry-matrix {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .matrix-cell {
            min-height: 86px;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
            display: grid;
            gap: 6px;
            align-content: center;
        }

        .matrix-cell:hover {
            border-color: rgba(240, 212, 138, 0.3);
            background: rgba(216, 179, 90, 0.08);
            transform: translateY(-1px);
        }

        .matrix-cell strong {
            font-size: 0.96rem;
        }

        .matrix-cell span {
            color: var(--muted);
            font-size: 0.82rem;
        }

        .section-head {
            display: grid;
            gap: 10px;
            margin-bottom: 20px;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(240, 212, 138, 0.18);
            background: rgba(216, 179, 90, 0.07);
            color: var(--gold-bright);
            font-size: 0.83rem;
        }

        .section-head h2 {
            margin: 0;
            font-size: clamp(1.4rem, 2vw, 2rem);
            line-height: 1.15;
        }

        .section-head p {
            margin: 0;
            color: var(--muted);
            max-width: 66ch;
        }

        .panel-block {
            padding: 22px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.16);
            background: linear-gradient(180deg, rgba(14, 18, 24, 0.94), rgba(11, 14, 18, 0.98));
            box-shadow: var(--shadow-soft);
        }

        .update-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.9fr;
            gap: 18px;
        }

        .update-list {
            display: grid;
            gap: 12px;
        }

        .update-item {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }

        .update-time {
            width: 74px;
            flex: none;
            color: var(--gold-bright);
            font-size: 0.84rem;
        }

        .update-copy {
            min-width: 0;
        }

        .update-copy strong {
            display: block;
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .update-copy p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .update-tag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            padding: 5px 8px;
            margin-bottom: 8px;
            border-radius: 999px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background: rgba(216, 179, 90, 0.08);
            color: var(--gold-bright);
            font-size: 0.74rem;
        }

        .spotlight-card {
            height: 100%;
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background:
                linear-gradient(180deg, rgba(27, 24, 20, 0.86), rgba(13, 16, 21, 0.98)),
                linear-gradient(135deg, rgba(36, 77, 65, 0.14), transparent 36%);
        }

        .spotlight-card h3 {
            margin: 0 0 10px;
            font-size: 1.18rem;
        }

        .spotlight-card p {
            margin: 0 0 14px;
            color: var(--muted);
        }

        .spotlight-list {
            display: grid;
            gap: 10px;
            margin: 0 0 16px;
            padding: 0;
            list-style: none;
        }

        .spotlight-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            color: var(--muted);
        }

        .spotlight-list i {
            color: var(--gold);
            margin-top: 3px;
        }

        .section-grid {
            display: grid;
            gap: 18px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .feature-card {
            display: grid;
            gap: 12px;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: linear-gradient(180deg, rgba(15, 19, 25, 0.96), rgba(13, 15, 20, 0.98));
            box-shadow: var(--shadow-soft);
            min-height: 100%;
        }

        .feature-card:hover {
            border-color: rgba(240, 212, 138, 0.28);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .card-art {
            position: relative;
            min-height: 130px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(216, 179, 90, 0.22), transparent 38%),
                linear-gradient(180deg, rgba(24, 29, 38, 0.96), rgba(11, 14, 18, 1));
        }

        .card-art::before {
            content: "";
            position: absolute;
            inset: 14px;
            border: 1px dashed rgba(240, 212, 138, 0.2);
            border-radius: 8px;
            opacity: 0.78;
        }

        .card-art::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            top: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(240, 212, 138, 0.32), transparent);
        }

        .card-art .card-art-label {
            position: absolute;
            left: 16px;
            top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 9px;
            border-radius: 999px;
            background: rgba(11, 14, 18, 0.8);
            border: 1px solid rgba(240, 212, 138, 0.18);
            color: var(--gold-bright);
            font-size: 0.78rem;
        }

        .card-body {
            display: grid;
            gap: 8px;
        }

        .card-body h3 {
            margin: 0;
            font-size: 1.04rem;
            line-height: 1.3;
        }

        .card-body p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            color: var(--muted-2);
            font-size: 0.82rem;
        }

        .card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
        }

        .inline-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold-bright);
        }

        .inline-link:hover {
            color: #fff0b8;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-height: 28px;
            padding: 0 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            font-size: 0.76rem;
        }

        .carousel-shell {
            position: relative;
            padding-top: 6px;
        }

        .carousel-actions {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-bottom: 12px;
        }

        .scroll-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.2);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-btn:hover {
            background: rgba(216, 179, 90, 0.1);
            border-color: rgba(240, 212, 138, 0.36);
            transform: translateY(-1px);
        }

        .review-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(280px, 1fr);
            gap: 14px;
            overflow-x: auto;
            padding-bottom: 8px;
            scroll-snap-type: x mandatory;
            scrollbar-color: rgba(240, 212, 138, 0.35) rgba(255, 255, 255, 0.06);
        }

        .review-track::-webkit-scrollbar {
            height: 8px;
        }

        .review-track::-webkit-scrollbar-thumb {
            background: rgba(240, 212, 138, 0.34);
            border-radius: 999px;
        }

        .review-track::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 999px;
        }

        .review-card {
            scroll-snap-align: start;
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: linear-gradient(180deg, rgba(16, 20, 26, 0.96), rgba(12, 15, 19, 0.98));
            box-shadow: var(--shadow-soft);
        }

        .review-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.2);
            background: linear-gradient(180deg, rgba(216, 179, 90, 0.22), rgba(25, 31, 40, 0.98));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-bright);
            font-weight: 700;
        }

        .review-meta {
            display: grid;
            gap: 2px;
            margin-left: 10px;
            flex: 1;
        }

        .review-meta strong {
            font-size: 0.98rem;
        }

        .review-meta span {
            color: var(--muted);
            font-size: 0.82rem;
        }

        .review-card p {
            margin: 0;
            color: var(--text);
            font-size: 0.96rem;
        }

        .review-quote {
            color: var(--gold);
            margin-right: 8px;
        }

        .trust-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .trust-card {
            padding: 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
        }

        .trust-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.2);
            background: rgba(216, 179, 90, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-bright);
            margin-bottom: 12px;
        }

        .trust-card strong {
            display: block;
            margin-bottom: 6px;
            font-size: 1rem;
        }

        .trust-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .quick-card {
            padding: 16px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .quick-card h3 {
            margin: 0 0 8px;
            font-size: 1rem;
        }

        .quick-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 18px;
        }

        .news-list {
            display: grid;
            gap: 10px;
        }

        .news-item {
            display: grid;
            gap: 5px;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }

        .news-item:hover {
            border-color: rgba(240, 212, 138, 0.28);
            background: rgba(216, 179, 90, 0.07);
        }

        .news-item strong {
            font-size: 0.98rem;
        }

        .news-item p {
            margin: 0;
            color: var(--muted);
            font-size: 0.91rem;
        }

        .news-item .pill {
            width: fit-content;
        }

        .trend-card {
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background: linear-gradient(180deg, rgba(13, 17, 22, 0.95), rgba(10, 12, 15, 0.98));
            height: 100%;
        }

        .trend-card h3 {
            margin: 0 0 10px;
            font-size: 1.12rem;
        }

        .trend-card p {
            margin: 0 0 14px;
            color: var(--muted);
        }

        .trend-bars {
            display: grid;
            gap: 12px;
            margin-bottom: 16px;
        }

        .trend-line {
            display: grid;
            gap: 6px;
        }

        .trend-line span {
            display: flex;
            justify-content: space-between;
            color: var(--muted);
            font-size: 0.84rem;
        }

        .bar {
            height: 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .bar > i {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(240, 212, 138, 0.9), rgba(216, 179, 90, 0.76));
        }

        .trend-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .safety-card {
            padding: 16px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: linear-gradient(180deg, rgba(16, 19, 24, 0.95), rgba(11, 14, 18, 0.98));
        }

        .safety-card strong {
            display: block;
            margin-bottom: 6px;
            font-size: 1rem;
        }

        .safety-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .mini-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        .metric {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background: rgba(216, 179, 90, 0.08);
            color: var(--gold-bright);
            font-size: 0.82rem;
        }

        .mobile-band {
            padding: 22px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.16);
            background:
                linear-gradient(180deg, rgba(20, 24, 31, 0.96), rgba(12, 15, 19, 0.98)),
                linear-gradient(135deg, rgba(36, 77, 65, 0.12), transparent 36%);
            box-shadow: var(--shadow-soft);
        }

        .mobile-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 18px;
        }

        .steps {
            display: grid;
            gap: 12px;
            margin: 18px 0 0;
            padding: 0;
            list-style: none;
        }

        .step-item {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 12px;
            align-items: start;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }

        .step-index {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(240, 212, 138, 0.2);
            background: rgba(216, 179, 90, 0.1);
            color: var(--gold-bright);
            font-weight: 700;
        }

        .step-item strong {
            display: block;
            margin-bottom: 4px;
        }

        .step-item p {
            margin: 0;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .mobile-side {
            padding: 18px;
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: rgba(255, 255, 255, 0.03);
        }

        .mobile-side h3 {
            margin: 0 0 10px;
            font-size: 1.08rem;
        }

        .mobile-side p {
            margin: 0 0 14px;
            color: var(--muted);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 14px;
        }

        .tag-cloud .pill {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-list {
            display: grid;
            gap: 12px;
        }

        .faq-item {
            border-radius: 8px;
            border: 1px solid rgba(216, 179, 90, 0.14);
            background: rgba(255, 255, 255, 0.03);
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            padding: 16px 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-weight: 700;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(240, 212, 138, 0.18);
            color: var(--gold-bright);
            flex: none;
        }

        .faq-item[open] summary {
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .faq-item[open] summary::after {
            content: "−";
        }

        .faq-item .faq-body {
            padding: 14px 18px 18px;
            color: var(--muted);
        }

        .cta-panel {
            position: relative;
            padding: 24px;
            border-radius: 8px;
            border: 1px solid rgba(240, 212, 138, 0.2);
            background:
                linear-gradient(180deg, rgba(16, 20, 26, 0.96), rgba(10, 13, 17, 0.98)),
                linear-gradient(135deg, rgba(84, 34, 49, 0.16), transparent 40%);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .cta-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
            background-size: 34px 34px;
            opacity: 0.48;
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 16px;
        }

        .cta-inner h2 {
            margin: 0;
            font-size: clamp(1.5rem, 2.2vw, 2.25rem);
            line-height: 1.12;
        }

        .cta-inner p {
            margin: 0;
            max-width: 60ch;
            color: var(--muted);
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer {
            margin-top: 28px;
            padding: 34px 0 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(5, 7, 10, 0.78);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .footer-block {
            display: grid;
            gap: 12px;
        }

        .footer-brand {
            display: grid;
            gap: 12px;
        }

        .footer-brand strong {
            font-size: 1.05rem;
        }

        .footer-brand p {
            margin: 0;
            color: var(--muted);
        }

        .footer-list {
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-list a {
            color: var(--muted);
        }

        .footer-list a:hover {
            color: var(--gold-bright);
        }

        .footer-block h3 {
            margin: 0;
            font-size: 0.96rem;
            color: var(--gold-bright);
        }

        .footer-note {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--muted-2);
            font-size: 0.86rem;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            justify-content: space-between;
            align-items: center;
        }

        .footer-note a {
            color: var(--muted);
        }

        .footer-note a:hover {
            color: var(--gold-bright);
        }

        @media (max-width: 1024px) {
            .header-main {
                grid-template-columns: auto 1fr auto;
            }

            .update-grid,
            .news-grid,
            .mobile-grid {
                grid-template-columns: 1fr;
            }

            .card-grid,
            .trust-strip,
            .quick-grid,
            .safety-grid,
            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-grid {
                gap: 18px;
            }
        }

        @media (max-width: 768px) {
            .site-shell {
                width: min(100% - 24px, var(--container));
            }

            .header-main {
                grid-template-columns: 1fr auto;
                gap: 12px;
            }

            .search-bar,
            .desktop-nav {
                display: none;
            }

            .mobile-nav {
                display: none;
            }

            .mobile-nav.is-open {
                display: grid;
                gap: 14px;
            }

            .mobile-search {
                display: flex;
            }

            .flash-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .flash-note {
                justify-content: flex-start;
                text-align: left;
            }

            .card-grid,
            .trust-strip,
            .quick-grid,
            .safety-grid,
            .footer-grid,
            .entry-matrix {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .cta-actions,
            .trend-actions,
            .header-tools {
                width: 100%;
            }

            .header-tools {
                justify-content: flex-end;
            }

            .review-track {
                grid-auto-columns: minmax(260px, 84%);
            }

            .section-head {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 520px) {
            .header-main {
                grid-template-columns: 1fr auto;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
            }

            .brand-copy strong {
                white-space: normal;
                font-size: 0.92rem;
            }

            .button,
            .tool-link,
            .menu-toggle,
            .nav-link {
                width: 100%;
                justify-content: center;
            }

            .hero h1 {
                font-size: 1.9rem;
            }

            .hero-lead {
                font-size: 0.96rem;
            }

            .hero-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .hero-stage,
            .panel-block,
            .mobile-band,
            .cta-panel {
                padding: 18px;
            }

            .update-item,
            .step-item {
                grid-template-columns: 1fr;
            }

            .update-time {
                width: auto;
            }

            .review-track {
                grid-auto-columns: minmax(260px, 92%);
            }

            .faq-item summary {
                padding: 14px 14px;
            }

            .faq-item .faq-body {
                padding: 12px 14px 16px;
            }

            .footer-note {
                justify-content: flex-start;
            }
        }

/* roulang page: category1 */
:root{
      --bg:#07090d;
      --bg-2:#0b0f15;
      --panel:#10151d;
      --panel-2:#151b25;
      --panel-3:#1b2230;
      --line:rgba(231,198,129,.18);
      --line-strong:rgba(231,198,129,.32);
      --text:#f5f1e8;
      --muted:#a6afb9;
      --soft:#7f8995;
      --gold:#cfa861;
      --gold-2:#f1d28a;
      --copper:#b47a47;
      --wine:#4a1b24;
      --teal:#14484a;
      --shadow:0 24px 60px rgba(0,0,0,.42);
      --shadow-soft:0 12px 28px rgba(0,0,0,.28);
      --radius:8px;
      --radius-sm:6px;
      --space:24px;
      --space-sm:14px;
      --max:1280px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      line-height:1.6;
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0) 18%),
        linear-gradient(135deg, rgba(207,168,97,.05), rgba(207,168,97,0) 28%),
        linear-gradient(180deg, #07090d 0%, #090b10 35%, #0b1017 100%);
      min-height:100vh;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.24;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 82%);
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:2px solid var(--gold-2);outline-offset:2px}
    .grid-container{
      max-width:var(--max);
      padding-left:18px;
      padding-right:18px;
    }
    .site-shell{position:relative;z-index:1}
    .site-header{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:blur(18px);
      background:rgba(7,9,13,.88);
      border-bottom:1px solid rgba(231,198,129,.12);
      box-shadow:0 10px 30px rgba(0,0,0,.22);
    }
    .header-main{
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      gap:16px;
      align-items:center;
      padding:14px 0 12px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
      color:var(--text);
    }
    .brand:hover{color:var(--gold-2)}
    .brand-mark{
      width:40px;height:40px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:
        linear-gradient(160deg, rgba(241,210,138,.18), rgba(241,210,138,.04)),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
      border:1px solid var(--line-strong);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08), var(--shadow-soft);
      color:var(--gold-2);
      flex:0 0 auto;
    }
    .brand-copy{display:flex;flex-direction:column;line-height:1.1;min-width:0}
    .brand-copy strong{
      font-size:18px;
      letter-spacing:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-copy em{
      font-style:normal;
      color:var(--muted);
      font-size:12px;
      margin-top:4px;
    }
    .search-bar{
      position:relative;
      display:flex;
      align-items:center;
      min-width:0;
      background:rgba(17,21,29,.95);
      border:1px solid rgba(231,198,129,.16);
      border-radius:999px;
      padding:0 12px 0 44px;
      height:50px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
      transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
    }
    .search-bar:focus-within{
      border-color:rgba(241,210,138,.55);
      box-shadow:0 0 0 3px rgba(207,168,97,.12);
      background:rgba(19,24,32,.98);
    }
    .search-icon{
      position:absolute;
      left:18px;
      color:var(--gold-2);
      font-size:15px;
      pointer-events:none;
    }
    .search-bar input{
      width:100%;
      background:transparent;
      border:0;
      color:var(--text);
      outline:none;
      padding:0;
      min-width:0;
    }
    .search-bar input::placeholder{color:#8d97a4}
    .search-clear{
      width:30px;
      height:30px;
      border-radius:50%;
      border:1px solid rgba(231,198,129,.18);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      margin-left:8px;
      display:grid;
      place-items:center;
      flex:0 0 auto;
    }
    .search-clear:hover{color:var(--text);border-color:rgba(241,210,138,.48);background:rgba(241,210,138,.08)}
    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      white-space:nowrap;
    }
    .tool-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      padding:8px 10px;
      border-radius:999px;
    }
    .tool-link:hover{color:var(--gold-2);background:rgba(255,255,255,.03)}
    .tool-link i{font-size:14px}
    .menu-toggle{
      display:none;
      align-items:center;
      gap:8px;
      border:1px solid rgba(231,198,129,.16);
      border-radius:999px;
      background:rgba(255,255,255,.02);
      color:var(--text);
      padding:10px 14px;
      line-height:1;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .menu-toggle:hover{border-color:rgba(241,210,138,.42);background:rgba(241,210,138,.06)}
    .desktop-nav{
      display:flex;
      gap:10px;
      padding:0 0 14px;
      align-items:center;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .desktop-nav::-webkit-scrollbar{display:none}
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid transparent;
      color:var(--muted);
      font-size:14px;
      background:transparent;
    }
    .nav-link:hover{color:var(--text);background:rgba(255,255,255,.03);border-color:rgba(231,198,129,.12)}
    .nav-link.is-active,
    .nav-link[aria-current="page"]{
      color:var(--gold-2);
      background:rgba(207,168,97,.12);
      border-color:rgba(207,168,97,.24);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    }
    .mobile-nav{
      display:none;
      padding:0 0 16px;
    }
    .mobile-search{
      width:100%;
      margin-bottom:12px;
    }
    .mobile-links{
      display:grid;
      gap:8px;
    }
    .mobile-links .nav-link{
      justify-content:flex-start;
      padding:12px 14px;
      background:rgba(255,255,255,.02);
    }

    main{padding-bottom:36px}
    .page-hero{
      padding:30px 0 16px;
    }
    .crumbs{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:13px;
      margin-bottom:18px;
    }
    .crumbs a{color:var(--muted)}
    .crumbs a:hover{color:var(--gold-2)}
    .crumbs i{font-size:10px;color:#768190}
    .hero-slab{
      border:1px solid rgba(231,198,129,.16);
      border-radius:18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        linear-gradient(135deg, rgba(183,122,69,.10), rgba(183,122,69,0) 38%),
        rgba(12,16,23,.96);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-grid{
      min-height:unset;
      align-items:stretch;
    }
    .hero-copy{
      padding:34px 28px 30px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:16px;
      position:relative;
    }
    .eyebrow,
    .section-kicker,
    .panel-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--gold-2);
      font-size:12px;
      letter-spacing:.04em;
      text-transform:none;
      width:max-content;
    }
    .eyebrow::before,
    .section-kicker::before,
    .panel-kicker::before{
      content:"";
      width:18px;
      height:1px;
      background:linear-gradient(90deg, rgba(241,210,138,.1), var(--gold-2));
      display:inline-block;
    }
    .hero-copy h1{
      margin:0;
      font-size:clamp(32px, 4vw, 56px);
      line-height:1.05;
      letter-spacing:0;
      color:var(--text);
    }
    .hero-copy p{
      margin:0;
      max-width:42rem;
      color:#d7dbe1;
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:4px;
    }
    .btn-ghost,
    .btn-gold,
    .btn-ink{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 18px;
      border:1px solid transparent;
      font-weight:600;
      font-size:14px;
      line-height:1;
    }
    .btn-gold{
      color:#16120a;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      border-color:rgba(255,255,255,.12);
      box-shadow:0 12px 28px rgba(207,168,97,.18);
    }
    .btn-gold:hover{transform:translateY(-1px);box-shadow:0 16px 30px rgba(207,168,97,.22)}
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.02);
      border-color:rgba(231,198,129,.18);
    }
    .btn-ghost:hover{border-color:rgba(241,210,138,.42);background:rgba(241,210,138,.06)}
    .btn-ink{
      color:var(--text);
      background:rgba(19,24,32,.9);
      border-color:rgba(231,198,129,.14);
    }
    .btn-ink:hover{background:rgba(25,31,42,.95);border-color:rgba(241,210,138,.32)}
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .pill,
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(231,198,129,.16);
      background:rgba(255,255,255,.03);
      color:#d7dbe1;
      font-size:12px;
      line-height:1;
    }
    .pill strong,
    .badge strong{color:var(--gold-2);font-weight:700}
    .hero-panel{
      padding:22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
        rgba(13,17,24,.96);
      border-left:1px solid rgba(231,198,129,.12);
      position:relative;
    }
    .hero-panel::after{
      content:"";
      position:absolute;
      inset:14px;
      border:1px solid rgba(231,198,129,.12);
      border-radius:14px;
      pointer-events:none;
    }
    .panel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:14px;
    }
    .panel-head h2,
    .panel-head h3{
      margin:0;
      font-size:16px;
      color:var(--text);
    }
    .panel-head span{
      color:var(--muted);
      font-size:12px;
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .entry-chip{
      min-height:74px;
      border-radius:var(--radius);
      padding:12px 12px 12px 14px;
      border:1px solid rgba(231,198,129,.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
        rgba(20,25,34,.92);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:8px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .entry-chip:hover{border-color:rgba(241,210,138,.3);transform:translateY(-1px)}
    .entry-chip b{font-size:14px;color:var(--text)}
    .entry-chip small{color:var(--muted);line-height:1.35}
    .ticket-panel{
      margin-top:12px;
      border-radius:16px;
      border:1px solid rgba(231,198,129,.18);
      background:
        linear-gradient(180deg, rgba(207,168,97,.08), rgba(255,255,255,.01)),
        rgba(13,16,22,.96);
      overflow:hidden;
      position:relative;
      z-index:1;
    }
    .ticket-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      padding:14px 16px;
      border-bottom:1px solid rgba(231,198,129,.12);
    }
    .ticket-top strong{color:var(--gold-2);font-size:15px}
    .ticket-top span{color:var(--muted);font-size:12px}
    .ticket-body{
      padding:14px 16px 16px;
      display:grid;
      gap:10px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
      margin-top:18px;
      padding:0 28px 26px;
    }
    .metric{
      background:rgba(16,21,29,.88);
      border:1px solid rgba(231,198,129,.12);
      border-radius:16px;
      padding:16px 15px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .metric strong{
      display:block;
      font-size:26px;
      line-height:1;
      color:var(--gold-2);
      margin-bottom:8px;
    }
    .metric span{color:var(--muted);font-size:13px}
    .section-band{
      padding:26px 0;
    }
    .section-head{
      display:flex;
      flex-wrap:wrap;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:8px 0 0;
      font-size:24px;
      line-height:1.1;
      color:var(--text);
      letter-spacing:0;
    }
    .section-note{
      margin:0;
      color:var(--muted);
      max-width:46rem;
    }
    .quick-bar{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }
    .quick-card{
      border-radius:16px;
      border:1px solid rgba(231,198,129,.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        rgba(15,19,26,.96);
      padding:16px;
      min-height:104px;
      box-shadow:var(--shadow-soft);
    }
    .quick-card i{
      color:var(--gold-2);
      font-size:18px;
      margin-bottom:10px;
      display:inline-block;
    }
    .quick-card strong{
      display:block;
      font-size:15px;
      margin-bottom:6px;
      color:var(--text);
    }
    .quick-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .catalog-wrap{
      display:grid;
      grid-template-columns:300px minmax(0,1fr);
      gap:18px;
      align-items:start;
    }
    .filter-panel{
      position:sticky;
      top:136px;
      border:1px solid rgba(231,198,129,.14);
      border-radius:18px;
      background:rgba(14,18,25,.96);
      padding:18px;
      box-shadow:var(--shadow-soft);
    }
    .filter-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:14px;
      gap:10px;
    }
    .filter-title strong{
      font-size:16px;
      color:var(--text);
    }
    .filter-title span{
      font-size:12px;
      color:var(--muted);
    }
    .filter-block{
      padding-top:14px;
      margin-top:14px;
      border-top:1px solid rgba(231,198,129,.10);
    }
    .filter-block h3{
      margin:0 0 10px;
      font-size:13px;
      color:var(--gold-2);
      letter-spacing:.03em;
    }
    .check-list{
      display:grid;
      gap:10px;
    }
    .check-item{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:14px;
    }
    .check-item input{
      accent-color:var(--gold);
      width:16px;
      height:16px;
      margin:0;
    }
    .range-row{
      display:grid;
      gap:8px;
    }
    .range-row input[type="range"]{
      width:100%;
      accent-color:var(--gold);
    }
    .range-row .range-labels{
      display:flex;
      justify-content:space-between;
      color:var(--muted);
      font-size:12px;
    }
    .mini-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .mini-tag{
      border-radius:999px;
      padding:7px 10px;
      border:1px solid rgba(231,198,129,.14);
      color:#d4dae1;
      background:rgba(255,255,255,.02);
      font-size:12px;
    }
    .results-panel{
      min-width:0;
    }
    .results-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 16px;
      border:1px solid rgba(231,198,129,.14);
      border-radius:16px;
      background:rgba(15,19,26,.94);
      margin-bottom:14px;
      box-shadow:var(--shadow-soft);
    }
    .results-head strong{
      font-size:15px;
      color:var(--text);
    }
    .results-head span{
      color:var(--muted);
      font-size:12px;
    }
    .sort-strip{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
    }
    .sort-chip{
      border-radius:999px;
      border:1px solid rgba(231,198,129,.14);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      padding:8px 11px;
      font-size:12px;
      line-height:1;
    }
    .sort-chip.is-active,
    .sort-chip:hover{
      color:var(--gold-2);
      border-color:rgba(241,210,138,.35);
      background:rgba(207,168,97,.08);
    }
    .catalog-grid{
      display:grid;
      gap:14px;
    }
    .catalog-card{
      display:grid;
      grid-template-columns:132px minmax(0,1fr);
      gap:16px;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(231,198,129,.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)),
        rgba(15,19,26,.96);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      position:relative;
    }
    .catalog-card:hover{
      border-color:rgba(241,210,138,.28);
      transform:translateY(-1px);
    }
    .thumb{
      border-radius:14px;
      min-height:132px;
      border:1px solid rgba(231,198,129,.18);
      background:
        linear-gradient(160deg, rgba(207,168,97,.22), rgba(20,72,74,.14) 55%, rgba(74,27,36,.18)),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
      position:relative;
      overflow:hidden;
    }
    .thumb::before{
      content:"";
      position:absolute;
      inset:10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(90deg, rgba(255,255,255,.08) 0 0) left 16px top 18px/70px 1px no-repeat,
        linear-gradient(90deg, rgba(255,255,255,.05) 0 0) left 16px top 34px/46px 1px no-repeat,
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
    }
    .thumb .thumb-copy{
      position:absolute;
      inset:auto 14px 14px 14px;
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:8px;
      color:var(--text);
    }
    .thumb .thumb-copy strong{
      font-size:28px;
      line-height:1;
      color:var(--gold-2);
    }
    .thumb .thumb-copy span{
      display:block;
      color:#ecdfc5;
      font-size:12px;
      line-height:1.35;
      max-width:64px;
      text-align:right;
    }
    .card-body{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .card-top{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
    }
    .card-title{
      margin:0;
      color:var(--text);
      font-size:18px;
      line-height:1.25;
    }
    .card-desc{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
      max-width:60rem;
    }
    .chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .status-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      border:1px solid rgba(231,198,129,.16);
      background:rgba(255,255,255,.03);
      color:#d8dde3;
      padding:7px 10px;
      font-size:12px;
      line-height:1;
    }
    .status-badge.hot{color:#f6d58e;border-color:rgba(246,213,142,.26);background:rgba(207,168,97,.10)}
    .status-badge.teal{color:#b9e5e2;border-color:rgba(20,72,74,.36);background:rgba(20,72,74,.16)}
    .card-meta{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      color:var(--muted);
      font-size:12px;
    }
    .card-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
    }
    .card-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:2px;
    }
    .card-actions .btn-ghost,
    .card-actions .btn-ink{
      padding:10px 14px;
      font-size:13px;
    }
    .recommendation{
      padding:26px 0;
    }
    .review-rail{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
    }
    .review-card{
      border-radius:18px;
      border:1px solid rgba(231,198,129,.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        rgba(15,19,26,.96);
      padding:18px;
      box-shadow:var(--shadow-soft);
      min-height:170px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .review-card p{
      margin:0;
      color:#dde2e8;
      font-size:14px;
      line-height:1.75;
    }
    .review-foot{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:12px;
    }
    .review-foot strong{color:var(--gold-2);font-size:13px}
    .safety-strip{
      padding:26px 0;
    }
    .safety-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }
    .safety-item{
      border-radius:16px;
      border:1px solid rgba(231,198,129,.14);
      background:rgba(15,19,26,.96);
      padding:16px 15px;
      display:grid;
      gap:10px;
      min-height:144px;
      box-shadow:var(--shadow-soft);
    }
    .safety-item i{
      color:var(--gold-2);
      font-size:18px;
    }
    .safety-item strong{
      color:var(--text);
      font-size:15px;
    }
    .safety-item p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .faq-band{
      padding:24px 0 32px;
    }
    .accordion{
      border:1px solid rgba(231,198,129,.14);
      border-radius:18px;
      overflow:hidden;
      background:rgba(15,19,26,.96);
      box-shadow:var(--shadow-soft);
    }
    .accordion-item{
      border-bottom:1px solid rgba(231,198,129,.10);
      background:transparent;
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      color:var(--text);
      background:transparent;
      border:0;
      font-size:15px;
      padding:18px 18px 18px 48px;
      line-height:1.45;
    }
    .accordion-title::before{
      left:18px;
      color:var(--gold-2);
      margin-top:-1px;
    }
    .accordion-content{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      padding:0 18px 18px 48px;
      background:rgba(255,255,255,.01);
    }
    .cta-band{
      padding:0 0 34px;
    }
    .cta-panel{
      border-radius:20px;
      border:1px solid rgba(231,198,129,.16);
      background:
        linear-gradient(145deg, rgba(207,168,97,.14), rgba(20,72,74,.08) 32%, rgba(255,255,255,.01)),
        rgba(14,18,25,.98);
      box-shadow:var(--shadow);
      padding:28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .cta-panel h2{
      margin:0 0 8px;
      font-size:24px;
      color:var(--text);
    }
    .cta-panel p{
      margin:0;
      color:#d3d8df;
      max-width:46rem;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      min-width:max-content;
    }

    .footer{
      border-top:1px solid rgba(231,198,129,.12);
      background:rgba(8,10,14,.96);
      padding:28px 0 20px;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .9fr .8fr .9fr;
      gap:20px;
      margin-bottom:18px;
    }
    .footer-brand strong{
      display:block;
      color:var(--text);
      font-size:18px;
      margin-bottom:10px;
    }
    .footer-brand p{
      margin:0 0 14px;
      color:var(--muted);
      line-height:1.7;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .footer-block h3{
      margin:0 0 12px;
      color:var(--gold-2);
      font-size:14px;
    }
    .footer-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-list a{
      color:var(--muted);
    }
    .footer-list a:hover{color:var(--gold-2)}
    .footer-note{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:10px;
      padding-top:16px;
      border-top:1px solid rgba(231,198,129,.10);
      font-size:12px;
      color:#8f98a5;
    }

    .mobile-only{display:none}

    @media (max-width: 1080px){
      .header-main{grid-template-columns:auto 1fr auto}
      .metric-row{grid-template-columns:repeat(2,minmax(0,1fr))}
      .quick-bar{grid-template-columns:repeat(2,minmax(0,1fr))}
      .catalog-wrap{grid-template-columns:1fr}
      .filter-panel{position:relative;top:auto}
      .review-rail{grid-template-columns:1fr}
      .safety-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width: 860px){
      .desktop-nav{display:none}
      .menu-toggle{display:inline-flex}
      .mobile-nav{display:none}
      .mobile-nav.is-open{display:block}
      .header-main{
        grid-template-columns:1fr auto;
        gap:12px;
      }
      .search-bar{
        order:3;
        grid-column:1/-1;
      }
      .header-tools{gap:8px}
      .tool-link{padding:7px 9px}
      .hero-grid{grid-template-columns:1fr}
      .hero-panel{border-left:0;border-top:1px solid rgba(231,198,129,.12)}
      .catalog-card{grid-template-columns:1fr}
      .thumb{min-height:124px}
      .cta-panel{flex-direction:column;align-items:flex-start}
      .cta-actions{justify-content:flex-start}
      .metric-row{padding-left:0;padding-right:0}
      .hero-copy{padding:28px 20px 22px}
      .hero-panel{padding:18px}
      .metric-row{gap:10px}
      .section-head h2{font-size:22px}
    }
    @media (max-width: 640px){
      .grid-container{padding-left:14px;padding-right:14px}
      .page-hero{padding-top:18px}
      .hero-copy h1{font-size:30px}
      .hero-copy p,.section-note,.cta-panel p,.card-desc{font-size:14px}
      .hero-actions,.card-actions,.sort-strip,.chip-row{gap:8px}
      .btn-gold,.btn-ghost,.btn-ink{width:100%;justify-content:center}
      .hero-actions .btn-gold,.hero-actions .btn-ghost,.hero-actions .btn-ink{width:auto}
      .metric-row{grid-template-columns:1fr}
      .quick-bar{grid-template-columns:1fr}
      .safety-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .review-card{min-height:unset}
      .results-head{flex-direction:column;align-items:flex-start}
      .cta-panel{padding:22px}
      .cta-panel h2{font-size:22px}
      .hero-meta{gap:8px}
      .entry-matrix{grid-template-columns:1fr}
    }

/* roulang page: category2 */
:root {
      --bg: #07090d;
      --bg-soft: #0d1118;
      --bg-panel: #111723;
      --bg-panel-2: #151c29;
      --text: #eef2f6;
      --muted: #aeb7c5;
      --gold: #d8b05f;
      --gold-soft: #f0d9a2;
      --copper: #b57d46;
      --wine: #5f2e37;
      --jade: #17423b;
      --line: rgba(216, 176, 95, .24);
      --line-strong: rgba(216, 176, 95, .44);
      --shadow: 0 20px 50px rgba(0, 0, 0, .38);
      --radius: 8px;
      --radius-sm: 6px;
      --gap: 1.25rem;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      line-height: 1.65;
      letter-spacing: 0;
      background:
        radial-gradient(1200px 700px at 15% -10%, rgba(215, 176, 95, .10), transparent 60%),
        radial-gradient(900px 600px at 85% 0%, rgba(95, 46, 55, .14), transparent 52%),
        linear-gradient(180deg, #05070b 0%, #090d13 40%, #07090d 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 100% 36px, 36px 100%;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 72%);
      opacity: .22;
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(216, 176, 95, .22);
      color: #fff;
    }

    .site-shell {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      z-index: 9999;
      padding: .7rem 1rem;
      border-radius: 8px;
      background: var(--gold);
      color: #150f08;
      font-weight: 700;
    }

    .skip-link:focus {
      left: 1rem;
      top: 1rem;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(16px);
      background: rgba(6, 8, 12, .82);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    }

    .header-main {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0 .75rem;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: .75rem;
      min-width: 210px;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(216, 176, 95, .92), rgba(181, 125, 70, .82));
      color: #130f08;
      box-shadow: 0 8px 24px rgba(216, 176, 95, .20);
    }

    .brand-copy strong {
      display: block;
      font-size: 1.02rem;
      line-height: 1.1;
    }

    .brand-copy em {
      display: block;
      font-style: normal;
      font-size: .78rem;
      color: var(--gold-soft);
      opacity: .9;
    }

    .search-bar {
      flex: 1 1 340px;
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .82rem .9rem;
      border: 1px solid rgba(216, 176, 95, .22);
      border-radius: 10px;
      background: rgba(12, 16, 23, .92);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
    }

    .search-bar:focus-within {
      border-color: rgba(216, 176, 95, .55);
      box-shadow: 0 0 0 3px rgba(216, 176, 95, .12), inset 0 1px 0 rgba(255, 255, 255, .04);
    }

    .search-icon,
    .search-clear {
      color: var(--gold-soft);
      opacity: .9;
    }

    .search-bar input {
      flex: 1;
      background: transparent;
      border: 0;
      outline: 0;
      color: var(--text);
      padding: 0;
      margin: 0;
      box-shadow: none;
    }

    .search-bar input::placeholder {
      color: rgba(238, 242, 246, .52);
    }

    .search-clear {
      width: 1.9rem;
      height: 1.9rem;
      border: 0;
      background: transparent;
      border-radius: 999px;
      display: grid;
      place-items: center;
      line-height: 1;
    }

    .search-clear:hover,
    .search-clear:focus-visible {
      background: rgba(216, 176, 95, .12);
      color: #fff;
    }

    .header-tools {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-left: auto;
    }

    .tool-link,
    .menu-toggle {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .72rem .92rem;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 10px;
      background: rgba(255, 255, 255, .02);
      color: var(--text);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .tool-link:hover,
    .menu-toggle:hover,
    .tool-link:focus-visible,
    .menu-toggle:focus-visible {
      border-color: rgba(216, 176, 95, .44);
      background: rgba(216, 176, 95, .08);
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
    }

    .desktop-nav {
      display: flex;
      gap: .6rem;
      padding: 0 0 1rem;
      overflow-x: auto;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: .58rem .95rem;
      border-radius: 999px;
      border: 1px solid transparent;
      color: var(--muted);
      white-space: nowrap;
      background: rgba(255, 255, 255, .02);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: var(--text);
      border-color: rgba(216, 176, 95, .28);
      background: rgba(216, 176, 95, .07);
      transform: translateY(-1px);
    }

    .nav-link.is-active {
      color: #120f09;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      border-color: transparent;
      box-shadow: 0 10px 24px rgba(216, 176, 95, .16);
    }

    .mobile-nav {
      display: none;
      padding: 0 0 1rem;
    }

    .mobile-nav.is-open {
      display: block;
    }

    .mobile-search {
      margin-bottom: .85rem;
    }

    .mobile-links {
      display: flex;
      gap: .5rem;
      overflow-x: auto;
      padding-bottom: .2rem;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .hero-section {
      padding: 2.2rem 0 1.2rem;
    }

    .section-breadcrumb {
      display: flex;
      align-items: center;
      gap: .5rem;
      color: var(--muted);
      font-size: .92rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .section-breadcrumb span {
      color: var(--gold-soft);
    }

    .hero-grid {
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
      padding: 1.4rem;
      box-shadow: var(--shadow);
    }

    .hero-copy h1 {
      margin: 0 0 .9rem;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.05;
    }

    .hero-copy p {
      margin: 0 0 1.2rem;
      color: var(--muted);
      max-width: 42rem;
      font-size: 1.03rem;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      margin-bottom: 1rem;
    }

    .pill,
    .badge-chip {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .43rem .7rem;
      border-radius: 999px;
      border: 1px solid rgba(216, 176, 95, .22);
      background: rgba(216, 176, 95, .06);
      color: var(--gold-soft);
      font-size: .84rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
      margin-bottom: 1.2rem;
    }

    .btn-line,
    .btn-fill {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .85rem 1.05rem;
      border-radius: 10px;
      border: 1px solid rgba(216, 176, 95, .3);
      transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .btn-fill {
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      color: #120f09;
      font-weight: 700;
    }

    .btn-line {
      background: rgba(255, 255, 255, .02);
      color: var(--text);
    }

    .btn-fill:hover,
    .btn-line:hover,
    .btn-fill:focus-visible,
    .btn-line:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .75rem;
    }

    .metric {
      padding: .8rem .9rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(9, 12, 18, .84);
    }

    .metric strong {
      display: block;
      font-size: 1.1rem;
      color: var(--gold-soft);
      margin-bottom: .18rem;
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: .86rem;
    }

    .poster-board {
      position: relative;
      padding: 1rem;
      min-height: 100%;
      border: 1px solid rgba(216, 176, 95, .22);
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(11, 14, 20, .96), rgba(16, 20, 29, .92));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .poster-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(216, 176, 95, .12), transparent 34%, rgba(181, 125, 70, .08) 64%, transparent);
      pointer-events: none;
    }

    .poster-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .5rem;
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
    }

    .poster-head strong {
      font-size: 1rem;
    }

    .poster-head em {
      font-style: normal;
      color: var(--gold-soft);
      font-size: .84rem;
    }

    .poster-main {
      position: relative;
      z-index: 1;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      padding: 1rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    }

    .poster-main h2 {
      margin: 0 0 .45rem;
      font-size: 1.35rem;
    }

    .poster-main p {
      margin: 0;
      color: var(--muted);
    }

    .poster-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .75rem;
      margin-top: .8rem;
      position: relative;
      z-index: 1;
    }

    .poster-tile {
      padding: .82rem .85rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(7, 10, 15, .72);
    }

    .poster-tile .tag {
      display: inline-flex;
      margin-bottom: .45rem;
      font-size: .76rem;
      color: var(--gold-soft);
    }

    .poster-tile strong {
      display: block;
      margin-bottom: .25rem;
      font-size: .92rem;
    }

    .poster-tile span {
      display: block;
      color: var(--muted);
      font-size: .83rem;
      line-height: 1.5;
    }

    .poster-ribbon {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
      margin-top: .85rem;
      position: relative;
      z-index: 1;
    }

    .poster-ribbon .pill {
      background: rgba(255, 255, 255, .03);
    }

    .content-band {
      padding: 1rem 0 .6rem;
    }

    .band-card {
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 14px;
      background: rgba(11, 15, 22, .82);
      padding: 1rem 1.1rem;
    }

    .band-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .8rem;
      margin-bottom: .9rem;
    }

    .band-head h2 {
      margin: 0;
      font-size: 1.3rem;
    }

    .band-head p {
      margin: 0;
      color: var(--muted);
    }

    .filter-bar {
      display: flex;
      gap: .55rem;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: .15rem;
    }

    .filter-chip {
      flex: 0 0 auto;
      padding: .6rem .85rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
      color: var(--text);
      white-space: nowrap;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    .filter-chip:hover {
      border-color: rgba(216, 176, 95, .42);
      background: rgba(216, 176, 95, .08);
      transform: translateY(-1px);
    }

    .filter-chip.is-active {
      background: linear-gradient(135deg, rgba(216, 176, 95, .25), rgba(216, 176, 95, .1));
      border-color: rgba(216, 176, 95, .46);
      color: var(--gold-soft);
    }

    .layout-section {
      padding: 1.2rem 0;
    }

    .split-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, .75fr);
      gap: 1rem;
    }

    .feature-panel,
    .side-panel,
    .reviews-panel,
    .cta-panel,
    .faq-shell {
      border: 1px solid rgba(255, 255, 255, .06);
      border-radius: 16px;
      background: rgba(11, 15, 22, .82);
      padding: 1.1rem;
    }

    .section-title {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .section-title h2 {
      margin: 0;
      font-size: 1.4rem;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      max-width: 44rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: .85rem;
    }

    .feature-card {
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
      padding: 1rem;
      min-height: 100%;
    }

    .feature-card.feature-wide {
      grid-column: span 6;
    }

    .feature-card.feature-small {
      grid-column: span 3;
    }

    .feature-card h3 {
      margin: 0 0 .55rem;
      font-size: 1.02rem;
    }

    .feature-card p {
      margin: 0 0 .8rem;
      color: var(--muted);
      font-size: .92rem;
    }

    .feature-meta {
      display: flex;
      flex-wrap: wrap;
      gap: .4rem;
    }

    .tag-mini {
      display: inline-flex;
      align-items: center;
      padding: .3rem .52rem;
      border-radius: 999px;
      background: rgba(216, 176, 95, .08);
      border: 1px solid rgba(216, 176, 95, .18);
      color: var(--gold-soft);
      font-size: .78rem;
    }

    .feature-list {
      display: grid;
      gap: .65rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .feature-list li {
      display: flex;
      gap: .65rem;
      align-items: flex-start;
      color: var(--muted);
    }

    .feature-list i {
      color: var(--gold);
      margin-top: .23rem;
    }

    .side-panel {
      position: sticky;
      top: 94px;
    }

    .side-rail {
      display: grid;
      gap: .85rem;
    }

    .side-highlight {
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(216, 176, 95, .22);
      background: linear-gradient(180deg, rgba(216, 176, 95, .10), rgba(255, 255, 255, .02));
    }

    .side-highlight h3 {
      margin: 0 0 .45rem;
      font-size: 1.05rem;
    }

    .side-highlight p {
      margin: 0 0 .8rem;
      color: var(--muted);
    }

    .side-list {
      display: grid;
      gap: .6rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .side-list li {
      display: flex;
      align-items: flex-start;
      gap: .55rem;
      padding: .62rem .72rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
    }

    .side-list i {
      color: var(--gold);
      margin-top: .2rem;
    }

    .side-actions {
      display: grid;
      gap: .6rem;
      margin-top: .9rem;
    }

    .side-actions a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .75rem .82rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
      color: var(--text);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .side-actions a:hover,
    .side-actions a:focus-visible {
      border-color: rgba(216, 176, 95, .42);
      background: rgba(216, 176, 95, .08);
      transform: translateY(-1px);
    }

    .listing-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
      gap: 1rem;
      align-items: start;
    }

    .entry-list {
      display: grid;
      gap: .75rem;
    }

    .entry-row {
      display: grid;
      grid-template-columns: 90px minmax(0, 1fr) auto;
      gap: .9rem;
      align-items: center;
      padding: .9rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .07);
      background: rgba(255, 255, 255, .02);
    }

    .entry-thumb {
      width: 90px;
      height: 90px;
      border-radius: 10px;
      border: 1px solid rgba(216, 176, 95, .18);
      background:
        linear-gradient(135deg, rgba(216, 176, 95, .22), rgba(95, 46, 55, .22) 55%, rgba(23, 66, 59, .18));
      position: relative;
      overflow: hidden;
    }

    .entry-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .08) 45%, transparent 65%);
      transform: skewX(-12deg) translateX(-35%);
    }

    .entry-copy h3 {
      margin: 0 0 .35rem;
      font-size: 1rem;
    }

    .entry-copy p {
      margin: 0 0 .55rem;
      color: var(--muted);
      font-size: .92rem;
    }

    .entry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
      margin-bottom: .2rem;
    }

    .entry-tools {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: .45rem;
      min-width: 112px;
    }

    .entry-tools .mini-action {
      padding: .55rem .8rem;
      border-radius: 9px;
      border: 1px solid rgba(216, 176, 95, .24);
      background: rgba(216, 176, 95, .06);
      color: var(--gold-soft);
      transition: transform .2s ease, background .2s ease;
    }

    .entry-tools .mini-action:hover,
    .entry-tools .mini-action:focus-visible {
      background: rgba(216, 176, 95, .11);
      transform: translateY(-1px);
    }

    .entry-tools .tiny {
      font-size: .8rem;
      color: var(--muted);
    }

    .reviews-panel {
      padding-bottom: 1.25rem;
    }

    .review-scroll {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .8rem;
    }

    .review-card {
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
    }

    .review-card p {
      margin: 0 0 .9rem;
      color: var(--text);
    }

    .review-card strong {
      display: block;
      color: var(--gold-soft);
      font-size: .92rem;
    }

    .review-card span {
      display: block;
      color: var(--muted);
      font-size: .82rem;
    }

    .safety-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: .8rem;
    }

    .safety-item {
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .08);
      background: rgba(255, 255, 255, .02);
    }

    .safety-item i {
      display: inline-flex;
      width: 2.2rem;
      height: 2.2rem;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(216, 176, 95, .1);
      color: var(--gold);
      margin-bottom: .8rem;
    }

    .safety-item h3 {
      margin: 0 0 .35rem;
      font-size: 1rem;
    }

    .safety-item p {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
    }

    .faq-shell .accordion {
      margin: 0;
      background: transparent;
    }

    .faq-shell .accordion-item {
      margin-bottom: .7rem;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 12px;
      overflow: hidden;
      background: rgba(255, 255, 255, .02);
    }

    .faq-shell .accordion-title {
      color: var(--text);
      font-size: 1rem;
      padding: 1rem 1.05rem;
      background: transparent;
      border: 0;
      line-height: 1.4;
    }

    .faq-shell .accordion-title:hover,
    .faq-shell .accordion-title:focus-visible {
      background: rgba(216, 176, 95, .06);
      color: #fff;
    }

    .faq-shell .accordion-title::before {
      color: var(--gold-soft);
      font-size: 1.2rem;
      top: 50%;
      transform: translateY(-50%);
    }

    .faq-shell .accordion-content {
      border: 0;
      padding: 0 1.05rem 1rem;
      color: var(--muted);
      background: rgba(11, 15, 22, .98);
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
      gap: 1rem;
      align-items: center;
    }

    .cta-copy h2 {
      margin: 0 0 .5rem;
      font-size: 1.55rem;
    }

    .cta-copy p {
      margin: 0 0 1rem;
      color: var(--muted);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .7rem;
    }

    .cta-side {
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(216, 176, 95, .22);
      background: linear-gradient(180deg, rgba(216, 176, 95, .10), rgba(255, 255, 255, .02));
    }

    .cta-side .mini-list {
      display: grid;
      gap: .55rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .cta-side .mini-list li {
      display: flex;
      gap: .55rem;
      align-items: center;
      color: var(--text);
    }

    .cta-side .mini-list i {
      color: var(--gold);
    }

    .footer {
      margin-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, .06);
      background: rgba(6, 8, 12, .88);
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .7fr .7fr .9fr;
      gap: 1rem;
      padding: 1.6rem 0 1rem;
    }

    .footer-brand strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: .5rem;
    }

    .footer-brand p {
      margin: 0 0 .85rem;
      color: var(--muted);
    }

    .footer-block h3 {
      margin: 0 0 .75rem;
      font-size: 1rem;
    }

    .footer-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: .45rem;
    }

    .footer-list a {
      color: var(--muted);
    }

    .footer-list a:hover,
    .footer-list a:focus-visible {
      color: var(--gold-soft);
    }

    .footer-note {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: .5rem;
      padding: 1rem 0 1.35rem;
      color: var(--muted);
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    @media (max-width: 1024px) {
      .split-layout,
      .listing-shell,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
      }

      .feature-card.feature-wide,
      .feature-card.feature-small {
        grid-column: span 12;
      }

      .review-scroll,
      .safety-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .header-main {
        gap: .8rem;
      }

      .brand {
        min-width: auto;
        flex: 1 1 180px;
      }

      .search-bar {
        order: 3;
        flex-basis: 100%;
      }

      .header-tools {
        margin-left: 0;
      }

      .desktop-nav {
        display: none;
      }

      .mobile-nav {
        display: none;
      }

      .hero-grid {
        padding: 1rem;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .poster-grid {
        grid-template-columns: 1fr;
      }

      .section-title,
      .band-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .entry-row {
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: start;
      }

      .entry-tools {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: 0;
      }

      .review-scroll,
      .safety-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .site-shell {
        padding-left: .8rem;
        padding-right: .8rem;
      }

      .tool-link span,
      .menu-toggle span {
        display: none;
      }

      .brand-copy em {
        font-size: .72rem;
      }

      .hero-copy h1 {
        font-size: 1.75rem;
      }

      .btn-fill,
      .btn-line,
      .filter-chip {
        width: auto;
      }

      .entry-row {
        padding: .8rem;
      }

      .entry-thumb {
        width: 72px;
        height: 72px;
      }
    }
