/* roulang page: index */
:root{
            --bg:#090709;
            --bg-2:#110f12;
            --panel:#151218;
            --panel-2:#1b171f;
            --line:rgba(226,190,115,.28);
            --line-strong:rgba(226,190,115,.48);
            --gold:#d3ac64;
            --gold-soft:#f0d39a;
            --rose:#8a4b63;
            --plum:#2a1829;
            --wine:#451927;
            --text:#f4efe7;
            --muted:#b7aea3;
            --dim:#7f7569;
            --shadow:0 24px 60px rgba(0,0,0,.46);
            --shadow-soft:0 12px 28px rgba(0,0,0,.28);
            --radius:12px;
            --radius-sm:10px;
            --radius-xs:8px;
        }
        *,*::before,*::after{box-sizing:border-box;}
        html{scroll-behavior:smooth;}
        body{
            margin:0;
            color:var(--text);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                linear-gradient(145deg, rgba(69,25,39,.14), rgba(42,24,41,.05) 32%, transparent 64%),
                linear-gradient(180deg, #090709 0%, #0d0b0d 100%);
            font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
            line-height:1.75;
            padding-top:76px;
            text-rendering:optimizeLegibility;
        }
        body::before{
            content:"";
            position:fixed;
            inset:0;
            pointer-events:none;
            background-image:
                linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
            background-size:100% 84px, 84px 100%;
            opacity:.24;
            mix-blend-mode:screen;
        }
        a{
            color:inherit;
            text-decoration:none;
            transition:color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
        }
        a:hover{color:var(--gold-soft);}
        img{max-width:100%;display:block;}
        button,input,select,textarea{font:inherit;}
        :focus-visible{
            outline:0;
            box-shadow:0 0 0 3px rgba(211,172,100,.24);
        }
        .site-wrap{
            width:min(1240px, calc(100% - 32px));
            margin-inline:auto;
        }
        .navbar{
            background:rgba(10,8,10,.88);
            border-bottom:1px solid var(--line);
            backdrop-filter:blur(10px);
        }
        .navbar .site-wrap{
            min-height:76px;
        }
        .navbar-brand{
            color:var(--text);
            font-weight:700;
            font-size:1.05rem;
            letter-spacing:0;
            display:inline-flex;
            align-items:center;
            gap:.65rem;
        }
        .brand-mark{
            width:34px;
            height:34px;
            border-radius:9px;
            border:1px solid var(--line-strong);
            background:
                linear-gradient(135deg, rgba(211,172,100,.2), rgba(211,172,100,.03)),
                linear-gradient(180deg, #1c171d, #100e12);
            box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
        }
        .nav-link{
            color:var(--muted);
            font-weight:600;
            padding:.7rem .95rem !important;
            position:relative;
        }
        .nav-link:hover,
        .nav-link:focus{color:var(--gold-soft);}
        .nav-link.active{
            color:var(--text) !important;
        }
        .nav-link.active::after{
            content:"";
            position:absolute;
            left:.9rem;
            right:.9rem;
            bottom:.28rem;
            height:2px;
            background:var(--gold);
            border-radius:99px;
        }
        .navbar-toggler{
            border:1px solid var(--line-strong);
            border-radius:10px;
            padding:.5rem .65rem;
            box-shadow:none !important;
        }
        .navbar-toggler:focus-visible{box-shadow:0 0 0 3px rgba(211,172,100,.24) !important;}
        .navbar-toggler-icon{
            filter:brightness(0) invert(1);
        }
        .nav-actions .btn,
        .hero-actions .btn,
        .entry-card .btn,
        .subscribe-form .btn{
            border-radius:10px;
            font-weight:600;
            padding:.78rem 1.1rem;
            line-height:1.1;
        }
        .btn-gold{
            background:var(--gold);
            border:1px solid var(--gold);
            color:#1d1511;
            box-shadow:0 14px 24px rgba(211,172,100,.18);
        }
        .btn-gold:hover,
        .btn-gold:focus{
            background:#e1bf77;
            border-color:#e1bf77;
            color:#1d1511;
            transform:translateY(-1px);
            box-shadow:0 16px 28px rgba(211,172,100,.24);
        }
        .btn-outline-gold{
            color:var(--gold-soft);
            border:1px solid var(--line-strong);
            background:rgba(255,255,255,.02);
        }
        .btn-outline-gold:hover,
        .btn-outline-gold:focus{
            color:#1d1511;
            background:var(--gold);
            border-color:var(--gold);
            transform:translateY(-1px);
        }
        .btn-icon{
            width:16px;
            height:16px;
            margin-right:.42rem;
            vertical-align:-2px;
        }
        .dropdown-menu{
            background:rgba(16,13,17,.98);
            border:1px solid var(--line-strong);
            border-radius:14px;
            box-shadow:var(--shadow);
            padding:0;
        }
        .mega-panel{
            width:min(760px, calc(100vw - 32px));
            overflow:hidden;
        }
        .mega-grid{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1px;
            background:var(--line);
        }
        .mega-col{
            background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)), var(--panel);
            padding:1rem;
        }
        .mega-title{
            font-size:.9rem;
            font-weight:700;
            color:var(--gold-soft);
            margin-bottom:.75rem;
        }
        .tag-cloud{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
        }
        .tag-cloud a,
        .soft-tag{
            display:inline-flex;
            align-items:center;
            padding:.42rem .72rem;
            border-radius:999px;
            border:1px solid rgba(211,172,100,.24);
            background:rgba(255,255,255,.02);
            color:var(--text);
            font-size:.88rem;
        }
        .tag-cloud a:hover{
            background:rgba(211,172,100,.12);
            color:var(--gold-soft);
            border-color:rgba(211,172,100,.48);
        }
        .mega-link{
            display:block;
            padding:.78rem .9rem;
            border-radius:10px;
            border:1px solid transparent;
            background:rgba(255,255,255,.02);
            margin-bottom:.6rem;
        }
        .mega-link:hover{
            border-color:rgba(211,172,100,.38);
            background:rgba(211,172,100,.08);
        }
        .hero-section{
            position:relative;
            padding:2.2rem 0 2rem;
        }
        .hero-section .site-wrap{
            position:relative;
        }
        .hero-grid{
            display:grid;
            grid-template-columns:1.08fr .92fr;
            gap:1.4rem;
            align-items:stretch;
        }
        .hero-copy,
        .hero-cover,
        .section-panel,
        .subscribe-form,
        .update-panel,
        .origin-panel,
        .faq-wrap,
        .footer-panel{
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                linear-gradient(180deg, var(--panel), #101014);
            border:1px solid var(--line);
            border-radius:var(--radius);
            box-shadow:var(--shadow-soft);
        }
        .hero-copy{
            padding:1.6rem;
            display:flex;
            flex-direction:column;
            justify-content:space-between;
            min-height:100%;
        }
        .eyebrow{
            display:inline-flex;
            align-items:center;
            gap:.5rem;
            width:fit-content;
            color:var(--gold-soft);
            font-size:.92rem;
            font-weight:600;
            padding:.34rem .68rem;
            border-radius:999px;
            border:1px solid rgba(211,172,100,.24);
            background:rgba(211,172,100,.06);
        }
        .eyebrow::before{
            content:"";
            width:7px;
            height:7px;
            border-radius:50%;
            background:var(--gold);
            box-shadow:0 0 0 4px rgba(211,172,100,.12);
        }
        h1{
            margin:1rem 0 .85rem;
            font-size:3rem;
            line-height:1.14;
            letter-spacing:0;
            font-weight:800;
            max-width:12ch;
        }
        .hero-copy p{
            margin:0;
            color:var(--muted);
            max-width:44rem;
            font-size:1rem;
        }
        .hero-actions{
            display:flex;
            flex-wrap:wrap;
            gap:.75rem;
            margin-top:1.4rem;
        }
        .hero-metrics{
            display:grid;
            grid-template-columns:repeat(3,minmax(0,1fr));
            gap:.8rem;
            margin-top:1.35rem;
        }
        .metric{
            border-radius:var(--radius-xs);
            border:1px solid rgba(211,172,100,.18);
            background:rgba(255,255,255,.02);
            padding:.8rem .85rem;
        }
        .metric strong{
            display:block;
            color:var(--text);
            font-size:1.02rem;
            line-height:1.2;
        }
        .metric span{
            display:block;
            margin-top:.24rem;
            color:var(--muted);
            font-size:.9rem;
        }
        .hero-cover{
            position:relative;
            overflow:hidden;
            padding:1rem;
        }
        .hero-cover::before{
            content:"";
            position:absolute;
            inset:0;
            background:
                linear-gradient(135deg, rgba(211,172,100,.12), transparent 35%),
                repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 14px);
            opacity:.62;
            pointer-events:none;
        }
        .cover-stage{
            position:relative;
            z-index:1;
            min-height:100%;
            border-radius:calc(var(--radius) - 2px);
            border:1px solid rgba(211,172,100,.32);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                linear-gradient(160deg, rgba(69,25,39,.3), rgba(15,12,15,.95) 40%, rgba(17,13,18,.98) 100%);
            padding:1rem;
            display:flex;
            flex-direction:column;
            justify-content:space-between;
            box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
        }
        .cover-top{
            display:flex;
            justify-content:space-between;
            gap:.75rem;
            align-items:center;
        }
        .badge-soft{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.35rem .7rem;
            border-radius:999px;
            border:1px solid rgba(211,172,100,.22);
            color:var(--gold-soft);
            background:rgba(211,172,100,.06);
            font-size:.86rem;
        }
        .cover-title{
            margin-top:1.2rem;
            font-size:2rem;
            line-height:1.1;
            font-weight:800;
            max-width:9ch;
        }
        .cover-sub{
            margin-top:.6rem;
            color:var(--muted);
            max-width:24rem;
        }
        .cover-grid{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:.8rem;
            margin-top:1rem;
        }
        .cover-chip{
            border-radius:var(--radius-xs);
            border:1px solid rgba(211,172,100,.18);
            background:rgba(255,255,255,.03);
            padding:.82rem .88rem;
        }
        .cover-chip span{
            display:block;
            color:var(--muted);
            font-size:.88rem;
        }
        .cover-chip strong{
            display:block;
            margin-top:.22rem;
            color:var(--text);
            font-size:1rem;
        }
        .cover-note{
            margin-top:1rem;
            border-left:2px solid var(--gold);
            padding-left:.85rem;
            color:var(--gold-soft);
            font-size:.96rem;
        }
        .section-band{
            padding:2rem 0;
        }
        .section-head{
            margin-bottom:1rem;
        }
        .section-head h2{
            margin:0;
            font-size:1.7rem;
            line-height:1.2;
            font-weight:800;
        }
        .section-head p{
            margin:.55rem 0 0;
            color:var(--muted);
            max-width:48rem;
        }
        .countdown-section{
            padding:0 0 2rem;
            margin-top:-.4rem;
        }
        .countdown-panel{
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), var(--bg-2);
            box-shadow:var(--shadow-soft);
            padding:1.15rem;
        }
        .countdown-head{
            display:flex;
            flex-wrap:wrap;
            justify-content:space-between;
            gap:.8rem;
            align-items:end;
            margin-bottom:1rem;
        }
        .countdown-head small{
            color:var(--gold-soft);
            font-weight:600;
        }
        .countdown-grid{
            display:grid;
            grid-template-columns:repeat(4,minmax(0,1fr));
            gap:.8rem;
        }
        .countdown-item{
            border-radius:var(--radius-xs);
            border:1px solid rgba(211,172,100,.22);
            background:
                linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
                linear-gradient(180deg, #151117, #100e12);
            padding:1rem .9rem;
            text-align:center;
        }
        .countdown-item strong{
            display:block;
            font-size:2.1rem;
            line-height:1;
            color:var(--gold-soft);
            font-weight:800;
            margin-bottom:.35rem;
        }
        .countdown-item span{
            color:var(--muted);
            font-size:.9rem;
        }
        .countdown-tips{
            margin-top:.85rem;
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            align-items:center;
            color:var(--muted);
        }
        .countdown-tips .soft-tag{
            border-color:rgba(211,172,100,.24);
        }
        .notes-layout{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
        }
        .timeline-list{
            margin:0;
            padding:0;
            list-style:none;
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                var(--panel);
            box-shadow:var(--shadow-soft);
            overflow:hidden;
        }
        .timeline-item{
            display:grid;
            grid-template-columns:auto 1fr;
            gap:1rem;
            padding:1rem 1rem 1rem 1.05rem;
            border-top:1px solid rgba(255,255,255,.05);
        }
        .timeline-item:first-child{border-top:0;}
        .timeline-num{
            width:42px;
            height:42px;
            border-radius:11px;
            border:1px solid rgba(211,172,100,.35);
            color:var(--gold-soft);
            background:rgba(211,172,100,.07);
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:800;
            font-size:1rem;
            flex:none;
        }
        .timeline-item h3{
            margin:0 0 .3rem;
            font-size:1.05rem;
            line-height:1.35;
            font-weight:700;
        }
        .timeline-item p{
            margin:0;
            color:var(--muted);
        }
        .tag-row{
            display:flex;
            flex-wrap:wrap;
            gap:.45rem;
            margin-top:.75rem;
        }
        .index-aside{
            display:grid;
            gap:1rem;
        }
        .aside-card{
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                var(--panel);
            box-shadow:var(--shadow-soft);
            padding:1rem;
        }
        .aside-card h3{
            margin:0 0 .55rem;
            font-size:1.03rem;
            font-weight:700;
        }
        .aside-card p{
            margin:0;
            color:var(--muted);
        }
        .mini-list{
            margin:0;
            padding:0;
            list-style:none;
            display:grid;
            gap:.7rem;
        }
        .mini-list li{
            display:flex;
            justify-content:space-between;
            gap:1rem;
            border-bottom:1px dashed rgba(255,255,255,.08);
            padding-bottom:.6rem;
        }
        .mini-list li:last-child{border-bottom:0;padding-bottom:0;}
        .mini-list span:first-child{
            color:var(--text);
        }
        .mini-list span:last-child{
            color:var(--gold-soft);
            white-space:nowrap;
        }
        .subscribe-grid{
            display:grid;
            grid-template-columns:.95fr 1.05fr;
            gap:1rem;
            align-items:stretch;
        }
        .subscribe-copy{
            padding:1.45rem;
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                linear-gradient(180deg, #171318, #0f0d11);
            box-shadow:var(--shadow-soft);
        }
        .subscribe-copy h2{
            margin:0 0 .8rem;
            font-size:1.7rem;
            line-height:1.2;
            font-weight:800;
        }
        .subscribe-copy p{
            margin:0;
            color:var(--muted);
            max-width:35rem;
        }
        .subscribe-copy .bullet{
            display:grid;
            gap:.45rem;
            margin-top:1rem;
            color:var(--gold-soft);
        }
        .subscribe-copy .bullet span{
            color:var(--muted);
        }
        .subscribe-form{
            padding:1.25rem;
        }
        .form-label{
            color:var(--gold-soft);
            font-size:.92rem;
            margin-bottom:.45rem;
            font-weight:600;
        }
        .form-control,
        .form-select{
            background:#100e12;
            border:1px solid rgba(211,172,100,.22);
            color:var(--text);
            border-radius:10px;
            padding:.82rem .92rem;
            box-shadow:none !important;
        }
        .form-control::placeholder{
            color:rgba(183,174,163,.72);
        }
        .form-control:focus,
        .form-select:focus{
            background:#120f13;
            color:var(--text);
            border-color:rgba(211,172,100,.62);
        }
        .form-check-input{
            background-color:#121015;
            border-color:rgba(211,172,100,.32);
            box-shadow:none !important;
        }
        .form-check-input:checked{
            background-color:var(--gold);
            border-color:var(--gold);
        }
        .form-check-label{
            color:var(--muted);
        }
        .form-note{
            margin-top:.75rem;
            color:var(--dim);
            font-size:.9rem;
        }
        .entry-grid{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:1rem;
        }
        .entry-card{
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                var(--panel);
            box-shadow:var(--shadow-soft);
            padding:1.1rem;
            height:100%;
        }
        .entry-card:hover{
            border-color:rgba(211,172,100,.44);
            transform:translateY(-2px);
            box-shadow:var(--shadow);
        }
        .entry-card h3{
            margin:.8rem 0 .5rem;
            font-size:1.1rem;
            line-height:1.35;
            font-weight:700;
        }
        .entry-card p{
            margin:0;
            color:var(--muted);
        }
        .entry-meta{
            display:flex;
            flex-wrap:wrap;
            gap:.5rem;
            margin-top:1rem;
            align-items:center;
            justify-content:space-between;
            color:var(--gold-soft);
            font-size:.92rem;
        }
        .entry-tags{
            display:flex;
            flex-wrap:wrap;
            gap:.45rem;
            margin-top:.85rem;
        }
        .entry-actions{
            margin-top:1rem;
        }
        .update-layout{
            display:grid;
            grid-template-columns:1.15fr .85fr;
            gap:1rem;
            align-items:start;
        }
        .update-list{
            margin:0;
            padding:0;
            list-style:none;
            border-radius:var(--radius);
            border:1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
                var(--panel);
            box-shadow:var(--shadow-soft);
            overflow:hidden;
        }
        .update-row{
            display:grid;
            grid-template-columns:1fr auto;
            gap:1rem;
            align-items:center;
            padding:1rem 1rem 1rem 1.05rem;
            border-top:1px solid rgba(255,255,255,.05);
        }
        .update-row:first-child{border-top:0;}
        .update-row h3{
            margin:0 0 .3rem;
            font-size:1.02rem;
            font-weight:700;
        }
        .update-row p{
            margin:0;
            color:var(--muted);
        }
        .update-time{
            color:var(--gold-soft);
            white-space:nowrap;
            font-size:.92rem;
        }
        .update-panel{
            padding:1rem;
        }
        .update-stats{
            display:grid;
            gap:.75rem;
        }
        .stat-card{
            border-radius:var(--radius-xs);
            border:1px solid rgba(211,172,100,.22);
            background:rgba(255,255,255,.03);
            padding:.9rem;
        }
        .stat-card strong{
            display:block;
            font-size:1.5rem;
            line-height:1;
            color:var(--gold-soft);
            margin-bottom:.28rem;
        }
        .stat-card span{
            color:var(--muted);
            font-size:.92rem;
        }
        .origin-grid{
            display:grid;
            grid-template-columns:1.12fr .88fr;
            gap:1rem;
            align-items:stretch;
        }
        .origin-panel{
            padding:1.2rem;
        }
        .origin-panel h2{
            margin:0 0 .75rem;
            font-size:1.6rem;
            line-height:1.2;
            font-weight:800;
        }
        .origin-panel p{
            margin:0;
            color:var(--muted);
            max-width:43rem;
        }
        .origin-statrow{
            display:grid;
            grid-template-columns:repeat(3,minmax(0,1fr));
            gap:.8rem;
            margin-top:1rem;
        }
        .origin-card{
            border-radius:var(--radius-xs);
            border:1px solid rgba(211,172,100,.22);
            background:rgba(255,255,255,.03);
            padding:.9rem;
        }
        .origin-card h3{
            margin:0 0 .34rem;
            font-size:1rem;
            font-weight:700;
        }
        .origin-card p{
            margin:0;
            color:var(--muted);
        }
        .faq-wrap{
            padding:1rem;
        }
        .accordion-item{
            background:transparent;
            border:1px solid rgba(211,172,100,.22);
            border-radius:12px !important;
            overflow:hidden;
            margin-bottom:.8rem;
        }
        .accordion-item:last-child{margin-bottom:0;}
        .accordion-button{
            background:rgba(255,255,255,.02);
            color:var(--text);
            font-weight:700;
            padding:1rem 1.05rem;
            box-shadow:none !important;
        }
        .accordion-button:not(.collapsed){
            color:var(--gold-soft);
            background:rgba(211,172,100,.08);
        }
        .accordion-button::after{
            filter:brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(355deg);
        }
        .accordion-body{
            color:var(--muted);
            background:rgba(16,14,18,.72);
            padding:0 1.05rem 1rem;
        }
        .footer-section{
            padding:2rem 0 2.6rem;
        }
        .footer-panel{
            padding:1.25rem;
        }
        .footer-top{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
            align-items:start;
        }
        .footer-brand{
            font-weight:800;
            font-size:1.1rem;
            margin-bottom:.45rem;
        }
        .footer-text{
            color:var(--muted);
            margin:0;
            max-width:40rem;
        }
        .footer-links{
            display:grid;
            grid-template-columns:repeat(2,minmax(0,1fr));
            gap:.45rem 1rem;
        }
        .footer-links a{
            color:var(--muted);
            padding:.1rem 0;
        }
        .footer-links a:hover{color:var(--gold-soft);}
        .footer-tags{
            display:flex;
            flex-wrap:wrap;
            gap:.45rem;
            margin-top:1rem;
        }
        .footer-bottom{
            display:flex;
            flex-wrap:wrap;
            gap:.8rem;
            justify-content:space-between;
            color:var(--dim);
            border-top:1px solid rgba(255,255,255,.07);
            margin-top:1rem;
            padding-top:1rem;
            font-size:.92rem;
        }
        .section-divider{
            border-top:1px solid rgba(255,255,255,.06);
            margin-top:2rem;
        }
        .link-quiet{
            color:var(--gold-soft);
        }
        .link-quiet:hover{color:#fff;}
        .detail-line{
            display:flex;
            flex-wrap:wrap;
            gap:.5rem;
            align-items:center;
            margin-top:.8rem;
        }
        .detail-line .soft-tag{
            font-size:.84rem;
        }
        .note-line{
            color:var(--dim);
            font-size:.9rem;
            margin-top:.55rem;
        }
        @media (max-width: 991.98px){
            body{padding-top:72px;}
            h1{font-size:2.45rem;max-width:none;}
            .hero-grid,
            .notes-layout,
            .subscribe-grid,
            .update-layout,
            .origin-grid,
            .footer-top{
                grid-template-columns:1fr;
            }
            .mega-grid{
                grid-template-columns:1fr;
            }
            .navbar-collapse{
                padding:1rem 0 .4rem;
            }
            .navbar-nav{
                gap:.15rem;
            }
            .nav-link.active::after{
                left:0;
                right:auto;
                width:3rem;
            }
        }
        @media (max-width: 767.98px){
            .site-wrap{width:min(100% - 20px, 1240px);}
            .hero-copy,
            .hero-cover,
            .subscribe-copy,
            .subscribe-form,
            .update-panel,
            .origin-panel,
            .faq-wrap,
            .footer-panel,
            .countdown-panel{
                padding:1rem;
            }
            .hero-metrics,
            .cover-grid,
            .countdown-grid,
            .entry-grid,
            .origin-statrow{
                grid-template-columns:1fr;
            }
            .timeline-item,
            .update-row{
                grid-template-columns:1fr;
            }
            .timeline-num{
                width:38px;
                height:38px;
            }
            .countdown-item strong{
                font-size:1.8rem;
            }
            .cover-title{
                font-size:1.72rem;
            }
            .hero-actions .btn,
            .nav-actions .btn{
                width:100%;
                justify-content:center;
            }
            .update-time{
                white-space:normal;
            }
        }
        @media (max-width: 575.98px){
            h1{font-size:2.12rem;}
            .section-head h2,
            .subscribe-copy h2,
            .origin-panel h2{
                font-size:1.4rem;
            }
            .countdown-head{
                align-items:flex-start;
            }
            .countdown-grid{
                grid-template-columns:repeat(2,minmax(0,1fr));
            }
            .footer-links{
                grid-template-columns:1fr;
            }
        }

/* roulang page: category1 */
:root {
            --bg: #0b090a;
            --bg-elevated: #151012;
            --bg-soft: #1b1417;
            --panel: #171113;
            --panel-strong: #201519;
            --text: #f6efe3;
            --text-soft: #d2c5b2;
            --muted: #9d8f80;
            --gold: #d7b15d;
            --gold-strong: #e1c477;
            --gold-soft: rgba(215, 177, 93, 0.16);
            --wine: #6d2f42;
            --rose: #90556a;
            --line: rgba(215, 177, 93, 0.22);
            --line-soft: rgba(255, 255, 255, 0.08);
            --shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
            --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.22);
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 18px;
            --container: 1240px;
            --nav-h: 84px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding-top: var(--nav-h);
            color: var(--text);
            background:
                linear-gradient(180deg, rgba(18, 14, 16, 0.97), rgba(11, 9, 10, 1) 30%, rgba(11, 9, 10, 1) 100%),
                repeating-linear-gradient(90deg, rgba(215, 177, 93, 0.04) 0, rgba(215, 177, 93, 0.04) 1px, transparent 1px, transparent 42px),
                repeating-linear-gradient(0deg, rgba(215, 177, 93, 0.03) 0, rgba(215, 177, 93, 0.03) 1px, transparent 1px, transparent 32px);
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
            line-height: 1.65;
            min-height: 100vh;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(215, 177, 93, 0.03), transparent 18%, transparent 78%, rgba(109, 47, 66, 0.04));
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        a:hover {
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
        }

        .site-wrap {
            width: min(100%, var(--container));
            margin-inline: auto;
            padding-inline: 1.2rem;
        }

        .navbar {
            min-height: var(--nav-h);
            background: rgba(12, 10, 11, 0.96);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar .site-wrap {
            width: min(100%, var(--container));
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text) !important;
            font-weight: 800;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .brand-mark {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            border: 1px solid rgba(215, 177, 93, 0.55);
            background:
                linear-gradient(135deg, rgba(215, 177, 93, 0.18), rgba(109, 47, 66, 0.22)),
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 38%);
            position: relative;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        }

        .brand-mark::before,
        .brand-mark::after {
            content: "";
            position: absolute;
            inset: 8px;
            border-radius: 8px;
            border: 1px solid rgba(215, 177, 93, 0.45);
        }

        .brand-mark::after {
            inset: 13px 9px 9px 13px;
            border-color: rgba(255, 255, 255, 0.18);
        }

        .navbar-nav {
            gap: 0.35rem;
        }

        .nav-link {
            color: var(--text-soft) !important;
            border-radius: 999px;
            padding: 0.75rem 1rem !important;
            border: 1px solid transparent;
            transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--text) !important;
            background: rgba(215, 177, 93, 0.08);
            border-color: rgba(215, 177, 93, 0.22);
            transform: translateY(-1px);
        }

        .nav-link.active,
        .nav-link[aria-current="page"] {
            color: var(--text) !important;
            background: linear-gradient(180deg, rgba(215, 177, 93, 0.16), rgba(215, 177, 93, 0.06));
            border-color: rgba(215, 177, 93, 0.45);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
        }

        .navbar-toggler {
            border-color: rgba(215, 177, 93, 0.35);
            box-shadow: none !important;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.18rem rgba(215, 177, 93, 0.18) !important;
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        .dropdown-toggle::after {
            margin-left: 0.45rem;
            vertical-align: 0.18em;
        }

        .dropdown-menu {
            background: #120d10;
            border: 1px solid var(--line);
            border-radius: 16px;
            box-shadow: var(--shadow);
            padding: 1rem;
        }

        .dropdown-item {
            color: var(--text-soft);
            border-radius: 10px;
            padding: 0.72rem 0.85rem;
        }

        .dropdown-item:hover,
        .dropdown-item:focus {
            color: var(--text);
            background: rgba(215, 177, 93, 0.1);
        }

        .mega-menu {
            width: min(100vw - 2rem, 460px);
        }

        .mega-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
        }

        .mega-title {
            color: var(--gold-strong);
            font-size: 0.82rem;
            letter-spacing: 0;
            margin-bottom: 0.55rem;
        }

        .mega-note {
            color: var(--muted);
            font-size: 0.88rem;
            margin-top: 0.85rem;
        }

        .mega-link {
            display: block;
            padding: 0.82rem 0.9rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-soft);
            transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
        }

        .mega-link:hover {
            transform: translateY(-1px);
            background: rgba(215, 177, 93, 0.08);
            border-color: rgba(215, 177, 93, 0.26);
            color: var(--text);
        }

        .mega-link strong {
            color: var(--text);
            font-size: 0.95rem;
        }

        .mega-link span {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag-cloud a,
        .soft-tag,
        .chip {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border: 1px solid rgba(215, 177, 93, 0.22);
            background: rgba(215, 177, 93, 0.08);
            color: var(--text-soft);
            border-radius: 999px;
            padding: 0.45rem 0.8rem;
            font-size: 0.88rem;
            line-height: 1.2;
            transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
        }

        .tag-cloud a:hover,
        .chip:hover {
            color: var(--text);
            border-color: rgba(215, 177, 93, 0.42);
            background: rgba(215, 177, 93, 0.14);
            transform: translateY(-1px);
        }

        .hero-section {
            padding: 2.2rem 0 3.6rem;
            position: relative;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.42rem 0.78rem;
            border-radius: 999px;
            border: 1px solid rgba(215, 177, 93, 0.3);
            color: var(--gold-strong);
            background: rgba(215, 177, 93, 0.06);
            font-size: 0.88rem;
            margin-bottom: 1.1rem;
        }

        .kicker i {
            font-size: 1rem;
        }

        .hero-title {
            color: var(--text);
            font-weight: 800;
            line-height: 1.12;
            margin: 0;
            font-size: 3.35rem;
            max-width: 11.4ch;
        }

        .hero-copy {
            max-width: 48rem;
        }

        .hero-lead {
            margin: 1rem 0 1.3rem;
            color: var(--text-soft);
            font-size: 1.08rem;
            max-width: 42rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }

        .btn-gold,
        .btn-ghost {
            border-radius: 12px;
            padding: 0.82rem 1.15rem;
            font-weight: 700;
            line-height: 1;
            border: 1px solid transparent;
            transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .btn-gold {
            color: #1b1207;
            background: linear-gradient(180deg, var(--gold-strong), var(--gold));
            border-color: rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 24px rgba(215, 177, 93, 0.18);
        }

        .btn-gold:hover,
        .btn-gold:focus {
            color: #120d08;
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(215, 177, 93, 0.22);
        }

        .btn-ghost {
            color: var(--text);
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(215, 177, 93, 0.35);
        }

        .btn-ghost:hover,
        .btn-ghost:focus {
            color: var(--text);
            background: rgba(215, 177, 93, 0.08);
            border-color: rgba(215, 177, 93, 0.52);
            transform: translateY(-1px);
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
            margin-top: 1.5rem;
            max-width: 42rem;
        }

        .metric {
            padding: 0.95rem 1rem;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .metric strong {
            display: block;
            font-size: 1.15rem;
            color: var(--text);
            line-height: 1.2;
        }

        .metric span {
            display: block;
            margin-top: 0.25rem;
            color: var(--muted);
            font-size: 0.85rem;
        }

        .cover-frame {
            position: relative;
            border-radius: 18px;
            padding: 1rem;
            border: 1px solid var(--line);
            background:
                linear-gradient(180deg, rgba(31, 22, 24, 0.98), rgba(18, 13, 16, 0.95)),
                linear-gradient(135deg, rgba(215, 177, 93, 0.09), transparent 34%, rgba(109, 47, 66, 0.12));
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .cover-frame::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(215, 177, 93, 0.06) 0, transparent 1px) 0 0 / 28px 100%,
                linear-gradient(0deg, rgba(215, 177, 93, 0.05) 0, transparent 1px) 0 0 / 100% 28px;
            opacity: 0.46;
            pointer-events: none;
        }

        .cover-topline {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.9rem;
        }

        .cover-art {
            position: relative;
            z-index: 1;
            aspect-ratio: 4 / 5;
            border-radius: 16px;
            padding: 1rem;
            border: 1px solid rgba(215, 177, 93, 0.22);
            background:
                linear-gradient(180deg, rgba(15, 11, 12, 0.28), rgba(15, 11, 12, 0.78)),
                linear-gradient(140deg, rgba(109, 47, 66, 0.42), rgba(18, 13, 16, 0.62)),
                radial-gradient(circle at 20% 20%, rgba(215, 177, 93, 0.15), transparent 28%),
                radial-gradient(circle at 80% 15%, rgba(109, 47, 66, 0.22), transparent 22%);
            overflow: hidden;
        }

        .cover-art::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 18%),
                repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 12px);
            opacity: 0.38;
        }

        .cover-art-inner {
            position: absolute;
            inset: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1rem;
            z-index: 1;
        }

        .cover-label {
            align-self: flex-start;
            display: inline-flex;
            padding: 0.42rem 0.7rem;
            border-radius: 999px;
            background: rgba(11, 9, 10, 0.72);
            border: 1px solid rgba(215, 177, 93, 0.3);
            color: var(--gold-strong);
            font-size: 0.82rem;
        }

        .cover-title {
            margin: 0;
            font-size: 2rem;
            line-height: 1.08;
            font-weight: 800;
            color: var(--text);
            max-width: 7ch;
        }

        .cover-subtitle {
            margin: 0.5rem 0 0;
            color: rgba(246, 239, 227, 0.78);
            font-size: 0.95rem;
        }

        .cover-panel {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.7rem;
            margin-top: 0.9rem;
        }

        .cover-cell {
            border-radius: 12px;
            padding: 0.72rem 0.82rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            min-height: 4.2rem;
        }

        .cover-cell strong {
            display: block;
            color: var(--text);
            font-size: 0.95rem;
        }

        .cover-cell span {
            display: block;
            margin-top: 0.2rem;
            color: var(--muted);
            font-size: 0.82rem;
            line-height: 1.45;
        }

        .cover-foot {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            gap: 0.75rem;
            align-items: center;
            padding-top: 0.95rem;
            margin-top: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cover-foot strong {
            color: var(--text);
            display: block;
            line-height: 1.25;
        }

        .cover-foot span {
            color: var(--muted);
            font-size: 0.84rem;
            display: block;
        }

        .countdown-wrap {
            margin-top: -1.25rem;
            position: relative;
            z-index: 2;
        }

        .panel {
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(21, 16, 18, 0.98), rgba(17, 13, 15, 0.96));
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

        .countdown-panel {
            padding: 1.1rem 1.1rem 1.3rem;
        }

        .section-minihead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 0.9rem;
        }

        .section-minihead h2,
        .section-title h2 {
            font-size: 1.15rem;
            font-weight: 800;
            margin: 0;
            color: var(--text);
        }

        .section-minihead p,
        .section-title p {
            margin: 0.15rem 0 0;
            color: var(--muted);
            font-size: 0.9rem;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.8rem;
        }

        .count-box {
            padding: 1rem 0.85rem;
            border-radius: 14px;
            border: 1px solid rgba(215, 177, 93, 0.28);
            background: linear-gradient(180deg, rgba(36, 25, 28, 0.92), rgba(20, 14, 16, 0.98));
            text-align: center;
        }

        .count-value {
            display: block;
            color: var(--gold-strong);
            font-weight: 800;
            font-size: 2rem;
            line-height: 1;
        }

        .count-label {
            display: block;
            margin-top: 0.35rem;
            color: var(--muted);
            font-size: 0.84rem;
        }

        .countdown-note {
            margin-top: 0.85rem;
            color: var(--text-soft);
            font-size: 0.94rem;
            padding: 0.8rem 0.9rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }

        .filters-section {
            padding: 1.8rem 0 0.7rem;
        }

        .filter-panel {
            padding: 1rem;
        }

        .filter-label {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 0.85rem;
        }

        .filter-label span {
            padding: 0.36rem 0.65rem;
            border-radius: 999px;
            font-size: 0.82rem;
            border: 1px solid rgba(215, 177, 93, 0.26);
            color: var(--gold-strong);
            background: rgba(215, 177, 93, 0.08);
        }

        .chip-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .chip {
            cursor: pointer;
            user-select: none;
        }

        .chip.active {
            color: var(--text);
            background: rgba(215, 177, 93, 0.16);
            border-color: rgba(215, 177, 93, 0.5);
        }

        .content-section {
            padding: 1.4rem 0 1.9rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.95fr);
            gap: 1rem;
            align-items: start;
        }

        .entry-list {
            display: grid;
            gap: 0.85rem;
        }

        .entry-item {
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(23, 16, 18, 0.94), rgba(18, 13, 15, 0.96));
            padding: 1rem;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
            transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
        }

        .entry-item:hover {
            transform: translateY(-2px);
            border-color: rgba(215, 177, 93, 0.36);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
        }

        .entry-top {
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
        }

        .entry-rank {
            flex: 0 0 auto;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(215, 177, 93, 0.2), rgba(215, 177, 93, 0.08));
            border: 1px solid rgba(215, 177, 93, 0.34);
            color: var(--gold-strong);
            font-weight: 800;
            display: grid;
            place-items: center;
        }

        .entry-content {
            flex: 1;
            min-width: 0;
        }

        .entry-title {
            margin: 0;
            font-size: 1.08rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.35;
        }

        .entry-summary {
            margin: 0.5rem 0 0.8rem;
            color: var(--text-soft);
            font-size: 0.96rem;
        }

        .entry-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 0.8rem;
        }

        .entry-badges .soft-tag {
            font-size: 0.82rem;
            padding: 0.34rem 0.68rem;
        }

        .entry-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 0.8rem;
        }

        .entry-meta {
            color: var(--muted);
            font-size: 0.84rem;
        }

        .entry-note {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: var(--gold-strong);
            font-size: 0.84rem;
        }

        .entry-btn {
            border-radius: 12px;
            border: 1px solid rgba(215, 177, 93, 0.35);
            background: rgba(215, 177, 93, 0.08);
            color: var(--text);
            padding: 0.68rem 0.9rem;
            font-weight: 700;
            transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .entry-btn:hover,
        .entry-btn:focus {
            color: var(--text);
            background: rgba(215, 177, 93, 0.15);
            border-color: rgba(215, 177, 93, 0.48);
            transform: translateY(-1px);
        }

        .sidebar {
            position: sticky;
            top: 96px;
            display: grid;
            gap: 0.9rem;
        }

        .side-block {
            border-radius: 16px;
            border: 1px solid rgba(215, 177, 93, 0.2);
            background: linear-gradient(180deg, rgba(24, 17, 19, 0.96), rgba(17, 13, 15, 0.98));
            padding: 1rem;
        }

        .side-block h2 {
            margin: 0 0 0.7rem;
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
        }

        .side-copy {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin: 0 0 0.85rem;
        }

        .hot-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
        }

        .hot-grid a {
            display: inline-flex;
            align-items: center;
            padding: 0.46rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(215, 177, 93, 0.22);
            background: rgba(215, 177, 93, 0.08);
            color: var(--text-soft);
            font-size: 0.86rem;
            transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
        }

        .hot-grid a:hover {
            transform: translateY(-1px);
            color: var(--text);
            border-color: rgba(215, 177, 93, 0.45);
        }

        .info-list {
            display: grid;
            gap: 0.6rem;
            margin-top: 0.9rem;
        }

        .info-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.8rem;
            padding: 0.7rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .info-row:first-child {
            border-top: 0;
            padding-top: 0;
        }

        .info-row span {
            color: var(--muted);
            font-size: 0.85rem;
        }

        .info-row strong {
            color: var(--text);
            font-size: 0.95rem;
            text-align: right;
        }

        .mini-alert {
            margin-top: 0.9rem;
            padding: 0.8rem 0.85rem;
            border-radius: 12px;
            border: 1px solid rgba(215, 177, 93, 0.2);
            background: rgba(215, 177, 93, 0.06);
            color: var(--text-soft);
            font-size: 0.9rem;
        }

        .subscribe-section {
            padding: 0.6rem 0 1.8rem;
        }

        .subscribe-panel {
            padding: 1.2rem;
        }

        .subscribe-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
            gap: 1rem;
            align-items: stretch;
        }

        .subscribe-copy h2 {
            margin: 0;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text);
        }

        .subscribe-copy p {
            margin: 0.75rem 0 0;
            color: var(--text-soft);
        }

        .subscribe-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 1rem;
        }

        .subscribe-form {
            display: grid;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }

        .form-label {
            color: var(--text-soft);
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }

        .form-control,
        .form-select {
            background: #120d10;
            color: var(--text);
            border: 1px solid rgba(215, 177, 93, 0.18);
            border-radius: 12px;
            padding: 0.82rem 0.9rem;
            box-shadow: none !important;
        }

        .form-control::placeholder {
            color: rgba(210, 197, 178, 0.55);
        }

        .form-control:focus,
        .form-select:focus {
            background: #140f12;
            color: var(--text);
            border-color: rgba(215, 177, 93, 0.56);
            box-shadow: 0 0 0 0.18rem rgba(215, 177, 93, 0.12) !important;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .subscribe-help {
            color: var(--muted);
            font-size: 0.84rem;
            margin: 0.2rem 0 0;
        }

        .subscribe-confirm {
            display: none;
            padding: 0.8rem 0.9rem;
            border-radius: 12px;
            border: 1px solid rgba(215, 177, 93, 0.24);
            background: rgba(215, 177, 93, 0.08);
            color: var(--gold-strong);
            font-size: 0.92rem;
        }

        .faq-section {
            padding: 0.8rem 0 2.4rem;
        }

        .faq-panel {
            padding: 1.2rem;
        }

        .accordion {
            --bs-accordion-bg: transparent;
            --bs-accordion-border-color: rgba(255, 255, 255, 0.08);
            --bs-accordion-btn-bg: rgba(255, 255, 255, 0.02);
            --bs-accordion-active-bg: rgba(215, 177, 93, 0.08);
            --bs-accordion-btn-focus-border-color: rgba(215, 177, 93, 0.45);
            --bs-accordion-btn-focus-box-shadow: 0 0 0 0.18rem rgba(215, 177, 93, 0.14);
            --bs-accordion-active-color: var(--text);
            --bs-accordion-btn-color: var(--text);
            --bs-accordion-color: var(--text-soft);
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px !important;
            overflow: hidden;
        }

        .accordion-item + .accordion-item {
            margin-top: 0.7rem;
        }

        .accordion-button {
            background: transparent;
            color: var(--text);
            font-weight: 700;
            box-shadow: none;
            padding: 1rem 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(215, 177, 93, 0.08);
            color: var(--gold-strong);
        }

        .accordion-button::after {
            filter: brightness(0) invert(1);
        }

        .accordion-button:not(.collapsed)::after {
            filter: none;
        }

        .accordion-body {
            padding: 0 1.1rem 1rem;
            color: var(--text-soft);
        }

        .footer-section {
            padding: 1.4rem 0 2rem;
            border-top: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(12, 9, 10, 0.96), rgba(9, 8, 9, 1));
        }

        .footer-panel {
            border-radius: 18px;
            border: 1px solid rgba(215, 177, 93, 0.16);
            background: rgba(255, 255, 255, 0.02);
            padding: 1.2rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
            gap: 1rem;
            align-items: start;
        }

        .footer-brand {
            color: var(--text);
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 0.45rem;
        }

        .footer-text {
            margin: 0;
            color: var(--text-soft);
            max-width: 52rem;
        }

        .footer-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 0.95rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.55rem 0.9rem;
        }

        .footer-links a {
            color: var(--text-soft);
            padding: 0.35rem 0;
            border-bottom: 1px solid transparent;
            width: fit-content;
        }

        .footer-links a:hover {
            color: var(--text);
            border-color: rgba(215, 177, 93, 0.35);
        }

        .footer-bottom {
            margin-top: 1rem;
            padding-top: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: space-between;
            color: var(--muted);
            font-size: 0.88rem;
        }

        .section-title {
            margin-bottom: 0.9rem;
        }

        .section-title h2 {
            font-size: 1.3rem;
        }

        .section-title p {
            max-width: 54rem;
        }

        .note-band {
            margin: 0.4rem 0 0;
            padding: 0.8rem 0.95rem;
            border-radius: 14px;
            border: 1px solid rgba(215, 177, 93, 0.2);
            background: rgba(215, 177, 93, 0.06);
            color: var(--text-soft);
        }

        .divider-line {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, rgba(215, 177, 93, 0.3), transparent);
            margin: 1rem 0;
        }

        @media (min-width: 992px) {
            .nav-item.dropdown:hover > .dropdown-menu {
                display: block;
                margin-top: 0;
            }
        }

        @media (max-width: 1199.98px) {
            .hero-title {
                font-size: 2.9rem;
            }

            .cover-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 0.95rem 0 0.25rem;
            }

            .mega-menu {
                width: 100%;
            }

            .hero-section {
                padding-top: 1.6rem;
                padding-bottom: 3rem;
            }

            .hero-title {
                font-size: 2.55rem;
                max-width: 12ch;
            }

            .hero-metrics {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .content-grid,
            .subscribe-grid,
            .footer-top {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }
        }

        @media (max-width: 767.98px) {
            .site-wrap {
                padding-inline: 1rem;
            }

            .hero-title {
                font-size: 2.1rem;
                max-width: 100%;
            }

            .hero-lead {
                font-size: 0.98rem;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
            }

            .countdown-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .cover-title {
                font-size: 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            body {
                padding-top: 78px;
            }

            .navbar {
                min-height: 78px;
            }

            .hero-title {
                font-size: 1.9rem;
            }

            .cover-art {
                aspect-ratio: 1 / 1.15;
            }

            .cover-panel {
                grid-template-columns: 1fr;
            }

            .countdown-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-minihead {
                align-items: flex-start;
                flex-direction: column;
            }

            .entry-foot {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category2 */
:root{
    --bg:#0b090a;
    --bg-soft:#120f12;
    --panel:#151115;
    --panel-2:#191419;
    --line:rgba(216,181,109,.22);
    --line-strong:rgba(216,181,109,.42);
    --gold:#d8b56d;
    --gold-2:#f1d8a3;
    --ivory:#f5efe3;
    --text:#efe5d7;
    --muted:#b3a291;
    --wine:#6b2a3a;
    --plum:#2b162f;
    --rose:#94606d;
    --shadow:0 18px 40px rgba(0,0,0,.42);
    --shadow-soft:0 10px 26px rgba(0,0,0,.28);
    --radius:14px;
    --radius-sm:10px;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding-top:88px;
    background-color:var(--bg);
    color:var(--text);
    font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
    line-height:1.7;
    letter-spacing:0;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size:100% 48px, 48px 100%;
    opacity:.18;
    z-index:-1;
}

a{
    color:inherit;
    text-decoration:none;
}

a:hover{
    color:var(--gold-2);
}

img{
    max-width:100%;
    display:block;
}

button,
input,
select,
textarea{
    font:inherit;
}

:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:2px;
}

.site-wrap{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:0 20px;
}

.navbar{
    background:rgba(10,8,9,.98);
    border-bottom:1px solid var(--line);
    box-shadow:0 12px 26px rgba(0,0,0,.28);
}

.navbar .site-wrap{
    min-height:78px;
}

.navbar-brand{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--ivory);
    font-weight:800;
    font-size:1.08rem;
    letter-spacing:0;
}

.brand-mark{
    width:14px;
    height:14px;
    border-radius:4px;
    background:linear-gradient(135deg,var(--gold),var(--gold-2));
    box-shadow:0 0 0 4px rgba(216,181,109,.12);
    flex:0 0 auto;
}

.navbar-toggler{
    border-color:var(--line);
    background:#151115;
    box-shadow:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-collapse{
    align-items:center;
    gap:18px;
}

.navbar-nav{
    gap:4px;
    align-items:center;
}

.nav-link{
    position:relative;
    padding:.88rem .95rem;
    color:#d4c4b4;
    font-weight:600;
    border-radius:10px;
    transition:background-color .2s ease,color .2s ease;
}

.nav-link:hover,
.nav-link:focus{
    color:var(--ivory);
    background:rgba(255,255,255,.03);
}

.nav-link.active{
    color:var(--gold-2);
}

.nav-link.active::after{
    content:"";
    position:absolute;
    left:.82rem;
    right:.82rem;
    bottom:.42rem;
    height:2px;
    border-radius:999px;
    background:var(--gold);
}

.mega-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin-left:auto;
    min-width:min(100%,460px);
}

.mega-col{
    padding:16px;
    border:1px solid var(--line);
    background:var(--panel);
    border-radius:12px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.mega-title{
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
    margin-bottom:10px;
}

.tag-cloud{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.tag-cloud a{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.18);
    background:rgba(255,255,255,.02);
    color:#eadfcd;
    font-size:13px;
    transition:border-color .2s ease,background-color .2s ease,color .2s ease,transform .2s ease;
}

.tag-cloud a:hover{
    border-color:var(--gold);
    background:rgba(216,181,109,.12);
    color:var(--ivory);
    transform:translateY(-1px);
}

.mega-link{
    display:block;
    padding:12px 13px;
    border-radius:12px;
    border:1px solid rgba(216,181,109,.18);
    background:#161116;
    transition:border-color .2s ease,background-color .2s ease,transform .2s ease;
}

.mega-link:hover{
    border-color:var(--gold);
    background:#1a1419;
    transform:translateY(-1px);
}

.mega-link strong{
    color:var(--ivory);
    font-size:14px;
}

.mega-link span{
    color:var(--muted);
    font-size:13px;
    line-height:1.55;
}

.page-section{
    padding:26px 0;
    scroll-margin-top:112px;
}

.hero-section{
    padding-top:22px;
    padding-bottom:10px;
}

.hero-shell{
    position:relative;
    border:1px solid var(--line);
    border-radius:18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.025), transparent 28%),
        repeating-linear-gradient(135deg, rgba(216,181,109,.045) 0 1px, transparent 1px 28px),
        var(--panel);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.hero-shell::before{
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(216,181,109,.14);
    border-radius:14px;
    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:24px;
    padding:34px 34px 30px;
    align-items:stretch;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.hero-kicker .mini-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 0 4px rgba(216,181,109,.15);
    flex:0 0 auto;
}

.hero-copy h1{
    margin:0;
    color:var(--ivory);
    font-size:54px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:0;
    max-width:10ch;
}

.hero-copy p{
    margin:18px 0 0;
    max-width:58ch;
    color:var(--muted);
    font-size:16px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.btn-gold,
.btn-outline-gold{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:48px;
    padding:.85rem 1.08rem;
    border-radius:12px;
    font-weight:700;
    font-size:15px;
    transition:transform .2s ease,background-color .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.btn-gold{
    background:var(--gold);
    border:1px solid var(--gold);
    color:#20170b;
    box-shadow:0 10px 24px rgba(216,181,109,.12);
}

.btn-gold:hover,
.btn-gold:focus{
    background:#e6c57f;
    color:#1d160c;
    border-color:#e6c57f;
    transform:translateY(-1px);
    box-shadow:0 14px 30px rgba(216,181,109,.18);
}

.btn-outline-gold{
    background:transparent;
    border:1px solid var(--line-strong);
    color:var(--ivory);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus{
    background:rgba(216,181,109,.11);
    border-color:var(--gold);
    color:var(--ivory);
    transform:translateY(-1px);
    box-shadow:0 12px 26px rgba(0,0,0,.2);
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.18);
    background:rgba(255,255,255,.02);
    color:#e9ddcf;
    font-size:13px;
    white-space:nowrap;
}

.hero-panel{
    display:flex;
    flex-direction:column;
}

.cover-card{
    height:100%;
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--bg-soft);
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.cover-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
}

.cover-time{
    color:var(--muted);
    font-weight:600;
}

.cover-visual{
    position:relative;
    min-height:248px;
    border:1px solid rgba(216,181,109,.28);
    border-radius:14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), transparent 32%),
        repeating-linear-gradient(90deg, rgba(216,181,109,.05) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 28px),
        #151116;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.cover-visual::before{
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(216,181,109,.18);
    border-radius:12px;
    pointer-events:none;
}

.cover-visual-core{
    position:relative;
    z-index:1;
    width:100%;
    max-width:320px;
    text-align:center;
}

.cover-chipline{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
}

.cover-chip{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.22);
    background:rgba(216,181,109,.1);
    color:var(--gold-2);
    font-size:13px;
    white-space:nowrap;
}

.cover-callout{
    margin-top:22px;
    color:var(--ivory);
    font-size:28px;
    font-weight:900;
    line-height:1.15;
}

.cover-sub{
    margin-top:10px;
    color:var(--muted);
    font-size:14px;
}

.cover-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.cover-stat{
    padding:12px 10px;
    border-radius:12px;
    border:1px solid rgba(216,181,109,.18);
    background:#181217;
    text-align:center;
}

.cover-stat strong{
    display:block;
    color:var(--gold-2);
    font-size:24px;
    line-height:1;
    font-weight:900;
}

.cover-stat span{
    display:block;
    margin-top:7px;
    color:var(--muted);
    font-size:13px;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:18px;
}

.section-head p{
    margin:0;
    max-width:60ch;
    color:var(--muted);
    font-size:15px;
}

.section-kicker{
    display:block;
    margin-bottom:6px;
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
}

.section-title{
    margin:0;
    color:var(--ivory);
    font-size:30px;
    line-height:1.22;
    font-weight:900;
    letter-spacing:0;
}

.countdown-section{
    padding-top:12px;
}

.countdown-panel{
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:22px;
}

.countdown-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.countdown-tile{
    text-align:center;
    border:1px solid rgba(216,181,109,.2);
    background:#130f12;
    border-radius:14px;
    padding:20px 10px 18px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.countdown-value{
    display:block;
    font-size:34px;
    line-height:1;
    color:var(--gold-2);
    font-weight:900;
}

.countdown-label{
    display:block;
    margin-top:8px;
    color:var(--muted);
    font-size:13px;
}

.countdown-note{
    margin:16px 0 0;
    color:var(--muted);
    font-size:14px;
}

.filter-panel{
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:22px;
}

.filter-matrix{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.filter-group{
    border:1px solid rgba(216,181,109,.16);
    background:#131014;
    border-radius:14px;
    padding:14px;
}

.filter-head{
    display:block;
    margin-bottom:10px;
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
}

.filter-pill{
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:0 0 8px;
    padding:11px 12px;
    border-radius:12px;
    border:1px solid rgba(216,181,109,.16);
    background:#191318;
    color:var(--text);
    font-weight:600;
    font-size:14px;
    transition:background-color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease,color .2s ease;
}

.filter-pill:last-child{
    margin-bottom:0;
}

.filter-pill:hover{
    transform:translateY(-1px);
    border-color:var(--gold-2);
    background:#1d161b;
    color:var(--ivory);
}

.filter-pill.active{
    border-color:var(--gold);
    background:rgba(216,181,109,.14);
    color:var(--ivory);
    box-shadow:0 10px 24px rgba(216,181,109,.08);
}

.filter-help{
    margin-top:14px;
    color:var(--muted);
    font-size:14px;
}

.entry-panel{
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:22px;
}

.entry-grid{
    display:grid;
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:16px;
}

.entry-card{
    grid-column:span 6;
    border:1px solid rgba(216,181,109,.16);
    background:#120f13;
    border-radius:14px;
    padding:18px;
    box-shadow:var(--shadow-soft);
    transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background-color .22s ease;
    min-height:240px;
    display:flex;
    flex-direction:column;
}

.entry-card:hover{
    transform:translateY(-2px);
    border-color:rgba(216,181,109,.45);
    box-shadow:0 20px 42px rgba(0,0,0,.45);
    background:#151116;
}

.entry-card.featured{
    grid-column:span 12;
    min-height:294px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 28%),
        #141115;
}

.entry-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.entry-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.18);
    background:rgba(216,181,109,.09);
    color:var(--gold-2);
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.entry-meta{
    color:var(--muted);
    font-size:13px;
    white-space:nowrap;
}

.entry-body{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:18px;
    flex:1;
}

.entry-body.single{
    grid-template-columns:1fr;
}

.entry-card h3{
    margin:0;
    color:var(--ivory);
    font-size:22px;
    line-height:1.28;
    font-weight:900;
    letter-spacing:0;
}

.entry-card.featured h3{
    font-size:26px;
}

.entry-card p{
    margin:12px 0 0;
    color:var(--muted);
    font-size:15px;
}

.entry-points{
    list-style:none;
    padding:0;
    margin:14px 0 0;
    display:grid;
    gap:8px;
}

.entry-points li{
    position:relative;
    padding-left:18px;
    color:#eadfce;
    font-size:14px;
}

.entry-points li::before{
    content:"";
    position:absolute;
    left:0;
    top:.72em;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--gold);
}

.entry-side{
    border-left:1px solid rgba(216,181,109,.14);
    padding-left:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:12px;
}

.entry-facts{
    display:grid;
    gap:10px;
}

.entry-fact{
    padding:12px;
    border-radius:12px;
    border:1px solid rgba(216,181,109,.14);
    background:#191318;
}

.entry-fact strong{
    display:block;
    color:var(--gold-2);
    font-size:12px;
    font-weight:700;
    margin-bottom:4px;
}

.entry-fact span{
    display:block;
    color:var(--text);
    font-size:14px;
    line-height:1.5;
}

.entry-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:auto;
}

.entry-tag{
    display:inline-flex;
    align-items:center;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.18);
    background:rgba(255,255,255,.02);
    color:#eadfce;
    font-size:12px;
    white-space:nowrap;
}

.entry-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:16px;
}

.entry-score{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--muted);
    font-size:13px;
}

.entry-score i{
    color:var(--gold-2);
}

.btn-entry{
    min-width:132px;
}

.update-panel{
    border:1px solid var(--line);
    border-radius:16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 26%),
        var(--panel);
    box-shadow:var(--shadow);
    padding:22px;
}

.update-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    align-items:center;
}

.update-copy h2{
    margin:0;
    color:var(--ivory);
    font-size:28px;
    line-height:1.24;
    font-weight:900;
}

.update-copy p{
    margin:12px 0 0;
    color:var(--muted);
    max-width:56ch;
}

.update-form{
    border:1px solid rgba(216,181,109,.16);
    background:#131014;
    border-radius:14px;
    padding:18px;
}

.form-label{
    color:var(--gold-2);
    font-size:13px;
    font-weight:700;
    margin-bottom:8px;
}

.form-control,
.form-select{
    background:#120f12;
    color:var(--ivory);
    border:1px solid rgba(216,181,109,.2);
    border-radius:12px;
    min-height:52px;
    box-shadow:none;
}

.form-control::placeholder{
    color:#86776a;
}

.form-control:focus,
.form-select:focus{
    background:#120f12;
    color:var(--ivory);
    border-color:var(--gold);
    box-shadow:0 0 0 .18rem rgba(216,181,109,.12);
}

.subscribe-note{
    margin-top:12px;
    color:var(--muted);
    font-size:13px;
    min-height:20px;
}

.faq-panel{
    border:1px solid var(--line);
    border-radius:16px;
    background:var(--panel);
    box-shadow:var(--shadow-soft);
    padding:22px;
}

.accordion{
    --bs-accordion-bg: #120f12;
    --bs-accordion-color: var(--text);
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-bg: #120f12;
    --bs-accordion-btn-color: var(--ivory);
    --bs-accordion-active-bg: #151115;
    --bs-accordion-active-color: var(--gold-2);
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item{
    border:1px solid rgba(216,181,109,.16);
    background:#120f12;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:12px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.accordion-button{
    background:#120f12;
    color:var(--ivory);
    font-weight:700;
    font-size:15px;
    padding:18px 20px;
    box-shadow:none;
}

.accordion-button::after{
    filter:brightness(0) saturate(100%) invert(74%) sepia(25%) saturate(449%) hue-rotate(357deg) brightness(92%) contrast(88%);
}

.accordion-button:not(.collapsed){
    background:#151115;
    color:var(--gold-2);
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    background:#100d11;
    padding:0 20px 18px;
    color:var(--muted);
    font-size:15px;
}

.footer-section{
    margin-top:16px;
    background:#0d0b0c;
    border-top:1px solid var(--line);
}

.footer-panel{
    padding:26px 0 20px;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:22px;
    align-items:flex-start;
}

.footer-brand{
    color:var(--ivory);
    font-size:20px;
    line-height:1.2;
    font-weight:900;
}

.footer-text{
    margin:10px 0 0;
    max-width:62ch;
    color:var(--muted);
    font-size:14px;
}

.footer-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.soft-tag{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    border:1px solid rgba(216,181,109,.18);
    background:rgba(255,255,255,.02);
    color:#e7dbc8;
    font-size:12px;
    white-space:nowrap;
}

.footer-links{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px 18px;
    min-width:220px;
}

.footer-links a{
    color:#dacbbc;
    font-size:14px;
    font-weight:600;
    transition:color .2s ease,transform .2s ease;
}

.footer-links a:hover{
    color:var(--gold-2);
    transform:translateX(2px);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:16px;
    border-top:1px solid rgba(216,181,109,.16);
    margin-top:20px;
    padding-top:14px;
    color:var(--muted);
    font-size:13px;
}

.is-hidden{
    display:none !important;
}

@media (max-width: 1199.98px){
    .hero-copy h1{
        font-size:48px;
    }

    .mega-grid{
        min-width:min(100%,420px);
    }

    .entry-card.featured h3{
        font-size:24px;
    }
}

@media (max-width: 991.98px){
    body{
        padding-top:82px;
    }

    .hero-grid,
    .update-grid{
        grid-template-columns:1fr;
    }

    .mega-grid{
        margin-left:0;
        min-width:0;
        grid-template-columns:1fr;
    }

    .navbar-collapse{
        align-items:stretch;
        padding:14px 0 8px;
    }

    .navbar-nav{
        align-items:stretch;
        margin-bottom:14px;
    }

    .nav-link{
        padding:.78rem .9rem;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .countdown-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .filter-matrix{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .entry-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .entry-card{
        grid-column:span 1;
    }

    .entry-card.featured{
        grid-column:span 2;
    }

    .footer-top{
        flex-direction:column;
    }
}

@media (max-width: 767.98px){
    .hero-grid{
        padding:24px 20px 22px;
    }

    .hero-copy h1{
        font-size:42px;
        max-width:12ch;
    }

    .hero-copy p{
        font-size:15px;
    }

    .cover-visual{
        min-height:220px;
    }

    .cover-callout{
        font-size:24px;
    }

    .section-title,
    .update-copy h2{
        font-size:24px;
    }

    .countdown-value{
        font-size:30px;
    }

    .entry-body{
        grid-template-columns:1fr;
    }

    .entry-side{
        border-left:none;
        border-top:1px solid rgba(216,181,109,.14);
        padding-left:0;
        padding-top:14px;
    }

    .entry-card{
        min-height:0;
    }

    .footer-links{
        grid-template-columns:1fr 1fr;
        min-width:0;
    }
}

@media (max-width: 575.98px){
    body{
        padding-top:78px;
    }

    .site-wrap{
        padding:0 16px;
    }

    .hero-copy h1{
        font-size:36px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-actions .btn-gold,
    .hero-actions .btn-outline-gold{
        width:100%;
    }

    .cover-grid{
        grid-template-columns:1fr;
    }

    .countdown-grid{
        grid-template-columns:1fr 1fr;
    }

    .filter-matrix{
        grid-template-columns:1fr;
    }

    .entry-grid{
        grid-template-columns:1fr;
    }

    .entry-card.featured{
        grid-column:span 1;
    }

    .entry-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-entry{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
    }
}
