/* roulang page: index */
:root{
      --blue-900:#12365b;
      --blue-700:#1d6fb8;
      --blue-600:#2586d8;
      --blue-500:#36a2e8;
      --blue-100:#e8f5ff;
      --cyan-100:#e9fbfb;
      --mist:#f6f9fc;
      --paper:#ffffff;
      --text:#182b3f;
      --muted:#607287;
      --soft:#8aa0b5;
      --line:#dce8f2;
      --line-strong:#c7d9e8;
      --green:#24a99a;
      --orange:#ff9d3d;
      --shadow:0 14px 36px rgba(30, 91, 145, .10);
      --shadow-hover:0 18px 46px rgba(30, 91, 145, .16);
      --radius:8px;
      --radius-lg:12px;
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        linear-gradient(180deg,#f8fbff 0%,#ffffff 38%,#f6f9fc 100%);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      line-height:1.72;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:all .2s ease}
    a:hover{color:var(--blue-700)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .skip-link:focus{
      left:20px;
      top:20px;
      width:auto;
      height:auto;
      z-index:9999;
      background:var(--paper);
      color:var(--blue-700);
      padding:10px 14px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line);
    }
    .header-top{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
    }
    .brand-mark{
      width:36px;
      height:36px;
      border-radius:8px;
      background:linear-gradient(135deg,var(--blue-600),#77cde3);
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      box-shadow:0 10px 22px rgba(37,134,216,.22);
    }
    .brand-text{
      font-size:18px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--blue-900);
      line-height:1.2;
    }
    .header-actions{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      min-width:0;
    }
    .search-box{
      width:min(420px, 48vw);
      position:relative;
    }
    .search-box input{
      width:100%;
      height:42px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#f8fbfe;
      padding:0 44px 0 42px;
      color:var(--text);
      outline:none;
      transition:all .2s ease;
    }
    .search-box input:focus{
      border-color:var(--blue-500);
      box-shadow:0 0 0 4px rgba(54,162,232,.12);
      background:#fff;
    }
    .search-icon{
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      color:var(--soft);
      font-size:15px;
    }
    .search-hot{
      position:absolute;
      right:13px;
      top:50%;
      transform:translateY(-50%);
      color:var(--blue-700);
      font-size:12px;
      font-weight:700;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      padding:0 18px;
      border-radius:8px;
      border:1px solid transparent;
      font-weight:700;
      white-space:nowrap;
      transition:all .2s ease;
    }
    .btn-primary{
      background:var(--blue-700);
      color:#fff;
      box-shadow:0 10px 20px rgba(29,111,184,.18);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      background:var(--blue-600);
      box-shadow:var(--shadow-hover);
      transform:translateY(-1px);
    }
    .btn-secondary{
      background:#fff;
      color:var(--blue-700);
      border-color:var(--line-strong);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      border-color:var(--blue-500);
      background:var(--blue-100);
      color:var(--blue-900);
    }
    .btn-ghost{
      background:var(--blue-100);
      color:var(--blue-700);
      border-color:#d3eaf9;
    }
    .btn-ghost:hover{
      background:#dff2ff;
      color:var(--blue-900);
    }
    .channel-row{
      border-top:1px solid rgba(220,232,242,.72);
    }
    .channel-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:12px 0;
      scrollbar-width:thin;
      scrollbar-color:var(--line-strong) transparent;
    }
    .channel-tabs::-webkit-scrollbar{height:6px}
    .channel-tabs::-webkit-scrollbar-thumb{background:var(--line-strong);border-radius:999px}
    .tab-link{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:0 15px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      background:transparent;
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .tab-link:hover{
      background:#f1f7fc;
      border-color:var(--line);
      color:var(--blue-700);
    }
    .tab-link.active{
      background:var(--blue-700);
      color:#fff;
      border-color:var(--blue-700);
      box-shadow:0 8px 16px rgba(29,111,184,.16);
    }

    main{overflow:hidden}
    section{position:relative}
    .section-pad{padding:74px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      color:var(--blue-700);
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(36,169,154,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      color:var(--blue-900);
      letter-spacing:-.04em;
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(26px,3vw,38px);
      line-height:1.22;
      color:var(--blue-900);
      letter-spacing:-.025em;
      margin-bottom:10px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      color:var(--blue-900);
      margin-bottom:8px;
    }
    .lead{
      color:var(--muted);
      font-size:18px;
      max-width:760px;
    }
    .muted{color:var(--muted)}
    .hero{
      padding:42px 0 64px;
      background:
        linear-gradient(180deg,rgba(232,245,255,.76),rgba(255,255,255,.42)),
        repeating-linear-gradient(90deg,rgba(29,111,184,.035) 0,rgba(29,111,184,.035) 1px,transparent 1px,transparent 72px);
    }
    .hero-stage{
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-cover{
      min-height:386px;
      padding:44px;
      display:grid;
      grid-template-columns:1.12fr .88fr;
      gap:34px;
      align-items:stretch;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(232,245,255,.84)),
        linear-gradient(90deg,rgba(54,162,232,.08),transparent);
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .hero-copy .lead{
      max-width:680px;
      margin-bottom:26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:24px;
    }
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .point{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .cover-board{
      border:1px solid var(--line);
      border-radius:12px;
      background:linear-gradient(180deg,#ffffff,#f7fbff);
      padding:16px;
      display:grid;
      gap:12px;
      align-content:center;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .poster-line{
      display:grid;
      grid-template-columns:56px 1fr auto;
      gap:12px;
      align-items:center;
      padding:13px;
      border:1px solid var(--line);
      border-radius:8px;
      background:#fff;
    }
    .poster-icon{
      width:56px;
      height:56px;
      border-radius:8px;
      background:var(--blue-100);
      display:grid;
      place-items:center;
      color:var(--blue-700);
      font-size:22px;
      font-weight:900;
    }
    .poster-line strong{
      display:block;
      color:var(--blue-900);
      line-height:1.3;
    }
    .poster-line span{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:3px;
    }
    .status-pill{
      padding:5px 9px;
      border-radius:999px;
      background:var(--cyan-100);
      color:#168b81;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .hero-strip{
      border-top:1px solid var(--line);
      display:grid;
      grid-template-columns:repeat(4,1fr);
      background:#fbfdff;
    }
    .strip-item{
      padding:18px 22px;
      border-right:1px solid var(--line);
    }
    .strip-item:last-child{border-right:0}
    .strip-num{
      display:block;
      color:var(--blue-700);
      font-size:24px;
      line-height:1.1;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .strip-label{
      display:block;
      color:var(--muted);
      font-size:13px;
      margin-top:4px;
    }

    .countdown-section{padding:62px 0;background:#fff}
    .countdown-card{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:24px;
      border:1px solid var(--line);
      border-radius:14px;
      background:linear-gradient(135deg,#ffffff,#f4faff);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .countdown-note{
      padding:22px;
      border-radius:10px;
      background:#fff;
      border:1px solid var(--line);
    }
    .timer-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .timer-box{
      min-height:116px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      border-radius:10px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 24px rgba(30,91,145,.07);
    }
    .timer-box b{
      font-size:38px;
      line-height:1;
      color:var(--blue-900);
      letter-spacing:-.04em;
    }
    .timer-box span{
      margin-top:8px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .state-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      background:#eef7ff;
      color:var(--blue-700);
      border:1px solid #d6ebfb;
      font-size:12px;
      font-weight:800;
    }
    .badge.warn{
      background:#fff7eb;
      color:#b76513;
      border-color:#ffe1b7;
    }

    .benefit-band{
      background:var(--mist);
      padding:54px 0;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .benefit-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .benefit-card{
      position:relative;
      padding:24px;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:0 12px 30px rgba(30,91,145,.08);
      transition:all .2s ease;
    }
    .benefit-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:#bdd8ee;
    }
    .mini-icon{
      width:42px;
      height:42px;
      border-radius:8px;
      background:linear-gradient(135deg,var(--blue-100),var(--cyan-100));
      display:grid;
      place-items:center;
      color:var(--blue-700);
      font-weight:900;
      margin-bottom:16px;
    }

    .highlights{background:#fff}
    .highlight-layout{
      display:grid;
      grid-template-columns:1fr 340px;
      gap:22px;
      align-items:start;
    }
    .timeline-list{
      display:grid;
      gap:14px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:112px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      box-shadow:0 10px 26px rgba(30,91,145,.06);
      transition:all .2s ease;
    }
    .timeline-item:hover{
      border-color:var(--line-strong);
      transform:translateY(-2px);
      box-shadow:var(--shadow);
    }
    .time-chip{
      color:var(--blue-700);
      font-weight:900;
      font-size:15px;
      background:var(--blue-100);
      border-radius:8px;
      padding:9px 10px;
      text-align:center;
    }
    .timeline-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .side-panel{
      border:1px solid var(--line);
      border-radius:12px;
      background:linear-gradient(180deg,#fff,#f8fbff);
      box-shadow:var(--shadow);
      padding:20px;
      position:sticky;
      top:150px;
    }
    .side-panel ul{
      list-style:none;
      margin:12px 0 0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .side-panel li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:10px 0;
      border-bottom:1px dashed var(--line);
      color:var(--muted);
      font-size:14px;
    }
    .side-panel li:last-child{border-bottom:0}
    .side-panel strong{color:var(--blue-900)}

    .subscribe-section{
      padding:70px 0;
      background:
        linear-gradient(180deg,#f8fbff,#ffffff);
    }
    .subscribe-box{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:24px;
      align-items:center;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:30px;
    }
    .subscribe-form{
      border-radius:12px;
      background:var(--mist);
      border:1px solid var(--line);
      padding:20px;
    }
    .form-row{
      display:flex;
      gap:10px;
      margin-bottom:14px;
    }
    .form-row input{
      flex:1;
      min-width:0;
      height:46px;
      border:1px solid var(--line-strong);
      border-radius:8px;
      background:#fff;
      padding:0 14px;
      outline:none;
    }
    .form-row input:focus{
      border-color:var(--blue-500);
      box-shadow:0 0 0 4px rgba(54,162,232,.12);
    }
    .switches{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
      margin-top:12px;
    }
    .check-card{
      display:flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border:1px solid var(--line);
      border-radius:8px;
      background:#fff;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .check-card input{accent-color:var(--blue-700)}
    .form-status{
      min-height:24px;
      color:var(--green);
      font-size:14px;
      font-weight:700;
      margin-top:10px;
    }

    .entry-section{background:#fff;padding:70px 0}
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .entry-card{
      min-height:168px;
      padding:20px;
      border:1px solid var(--line);
      border-radius:12px;
      background:linear-gradient(180deg,#fff,#f9fcff);
      box-shadow:0 10px 24px rgba(30,91,145,.06);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:#bdd8ee;
    }
    .entry-card p{
      color:var(--muted);
      font-size:14px;
      margin-bottom:18px;
    }
    .arrow-link{
      color:var(--blue-700);
      font-weight:800;
      font-size:14px;
    }

    .news-section{
      padding:70px 0;
      background:var(--mist);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .news-layout{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:22px;
      align-items:start;
    }
    .news-list{
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .news-link{
      display:grid;
      grid-template-columns:130px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-bottom:1px solid var(--line);
    }
    .news-link:last-child{border-bottom:0}
    .news-link:hover{background:#f8fbff}
    .news-date{
      color:var(--blue-700);
      font-weight:900;
      font-size:14px;
    }
    .news-link strong{
      display:block;
      color:var(--blue-900);
      margin-bottom:3px;
    }
    .news-link span{
      color:var(--muted);
      font-size:14px;
    }
    .recommend-box{
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:var(--shadow);
      padding:20px;
    }
    .recommend-box a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px dashed var(--line);
      color:var(--muted);
      font-weight:700;
    }
    .recommend-box a:last-child{border-bottom:0}
    .recommend-box a:hover{color:var(--blue-700)}

    .media-section{padding:70px 0;background:#fff}
    .media-scroll{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:6px 4px 18px;
      scroll-snap-type:x proximity;
    }
    .media-card{
      flex:0 0 300px;
      scroll-snap-align:start;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:0 10px 26px rgba(30,91,145,.07);
      padding:18px;
    }
    .media-type{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:var(--cyan-100);
      color:#168b81;
      font-size:12px;
      font-weight:900;
      margin-bottom:14px;
    }

    .voice-section{
      padding:70px 0;
      background:linear-gradient(180deg,#f8fbff,#fff);
    }
    .voice-wall{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }
    .voice-card{
      padding:20px;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
      box-shadow:0 10px 24px rgba(30,91,145,.06);
    }
    .avatar-row{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:12px;
    }
    .avatar{
      width:38px;
      height:38px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--blue-100),#d7f7f4);
      display:grid;
      place-items:center;
      color:var(--blue-700);
      font-weight:900;
    }
    .voice-card p{color:var(--muted);margin:0;font-size:14px}

    .faq-section{padding:70px 0;background:#fff}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      margin-bottom:12px;
      overflow:hidden;
      box-shadow:0 8px 20px rgba(30,91,145,.05);
    }
    .accordion-title{
      border:0;
      color:var(--blue-900);
      font-weight:800;
      font-size:16px;
      padding:18px 44px 18px 20px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--blue-100);
      color:var(--blue-700);
    }
    .accordion-content{
      border:0;
      color:var(--muted);
      padding:0 20px 18px;
      background:#fff;
    }

    .final-cta{
      padding:56px 0;
      background:linear-gradient(135deg,var(--blue-700),#39a8d7);
      color:#fff;
    }
    .cta-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .final-cta h2{color:#fff;margin-bottom:6px}
    .final-cta p{color:rgba(255,255,255,.86);margin:0;max-width:760px}
    .final-cta .btn-secondary{
      border-color:rgba(255,255,255,.55);
      color:#fff;
      background:rgba(255,255,255,.12);
    }
    .final-cta .btn-secondary:hover{background:#fff;color:var(--blue-700)}

    .site-footer{
      background:#f3f7fb;
      border-top:1px solid var(--line);
      padding:42px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr;
      gap:28px;
      margin-bottom:28px;
    }
    .footer-title{
      font-weight:900;
      color:var(--blue-900);
      margin-bottom:10px;
    }
    .footer-desc{
      color:var(--muted);
      max-width:520px;
      font-size:14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      font-weight:700;
    }
    .footer-links a:hover{color:var(--blue-700)}
    .copyright{
      border-top:1px solid var(--line);
      padding-top:18px;
      color:var(--soft);
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    @media (max-width:1024px){
      .hero-cover,.countdown-card,.subscribe-box,.highlight-layout,.news-layout{
        grid-template-columns:1fr;
      }
      .side-panel{position:static}
      .entry-grid{grid-template-columns:repeat(2,1fr)}
      .hero-strip{grid-template-columns:repeat(2,1fr)}
      .strip-item:nth-child(2){border-right:0}
      .strip-item:nth-child(1),.strip-item:nth-child(2){border-bottom:1px solid var(--line)}
      .benefit-grid,.voice-wall{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px, var(--container))}
      .header-top{
        flex-wrap:wrap;
        padding:12px 0;
      }
      .brand-text{font-size:16px}
      .header-actions{
        width:100%;
        justify-content:space-between;
      }
      .search-box{
        width:100%;
        flex:1;
      }
      .header-actions .btn-primary{display:none}
      .hero{padding-top:24px}
      .hero-cover{padding:24px;min-height:auto}
      .poster-line{grid-template-columns:46px 1fr}
      .poster-line .status-pill{grid-column:2}
      .poster-icon{width:46px;height:46px}
      .timer-grid{grid-template-columns:repeat(2,1fr)}
      .timeline-item,.news-link{
        grid-template-columns:1fr;
        gap:9px;
      }
      .entry-grid{grid-template-columns:1fr}
      .form-row{flex-direction:column}
      .form-row .btn{width:100%}
      .switches{grid-template-columns:1fr}
      .section-head{display:block}
      .cta-inner{display:block}
      .cta-inner .btn{margin-top:18px}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      h1{font-size:32px}
      .lead{font-size:16px}
      .section-pad,.countdown-section,.subscribe-section,.entry-section,.news-section,.media-section,.voice-section,.faq-section{padding:48px 0}
      .hero-actions .btn{width:100%}
      .hero-strip{grid-template-columns:1fr}
      .strip-item{border-right:0!important;border-bottom:1px solid var(--line)}
      .strip-item:last-child{border-bottom:0}
      .countdown-card,.subscribe-box{padding:18px}
      .timer-box{min-height:96px}
      .timer-box b{font-size:30px}
      .media-card{flex-basis:260px}
    }

/* roulang page: category1 */
+    :root{
+      --bg:#f5f8fc;
+      --bg-soft:#eef4fb;
+      --surface:#ffffff;
+      --surface-soft:#f9fbfe;
+      --line:#d7e2ee;
+      --line-strong:#bfd1e3;
+      --text:#17324d;
+      --muted:#5f7488;
+      --muted-2:#7f93a8;
+      --primary:#2f6fd3;
+      --primary-strong:#235bb0;
+      --primary-soft:#e6f0fe;
+      --accent:#2fa8a0;
+      --accent-soft:#e6f7f6;
+      --danger:#c55e57;
+      --shadow:0 10px 28px rgba(23,50,77,.08);
+      --shadow-sm:0 6px 18px rgba(23,50,77,.06);
+      --radius:8px;
+      --radius-sm:6px;
+      --space:1rem;
+    }
+    *{box-sizing:border-box}
+    html,body{margin:0;padding:0}
+    body{
+      background:var(--bg);
+      color:var(--text);
+      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
+      line-height:1.65;
+      text-rendering:optimizeLegibility;
+    }
+    a{color:inherit;text-decoration:none;transition:all .18s ease}
+    img{max-width:100%;display:block}
+    button,input,select,textarea{font:inherit}
+    button{cursor:pointer}
+    :focus-visible{outline:2px solid rgba(47,111,211,.42);outline-offset:2px}
+    .site-container{
+      width:min(1180px,calc(100% - 2rem));
+      margin:0 auto;
+    }
+    .site-header{
+      position:sticky;
+      top:0;
+      z-index:80;
+      background:rgba(255,255,255,.92);
+      backdrop-filter:blur(10px);
+      border-bottom:1px solid rgba(215,226,238,.9);
+    }
+    .header-top{
+      display:flex;
+      align-items:center;
+      justify-content:space-between;
+      gap:1rem;
+      padding:1rem 0 .85rem;
+    }
+    .brand{
+      display:inline-flex;
+      align-items:center;
+      gap:.72rem;
+      min-width:0;
+      font-weight:700;
+      color:var(--text);
+    }
+    .brand-mark{
+      width:2.1rem;
+      height:2.1rem;
+      border-radius:7px;
+      background:linear-gradient(180deg,#e7f1ff 0%,#d4e6ff 100%);
+      color:var(--primary-strong);
+      display:grid;
+      place-items:center;
+      border:1px solid #c6d9f4;
+      flex:0 0 auto;
+      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
+    }
+    .brand-text{
+      font-size:1.02rem;
+      letter-spacing:0;
+      white-space:nowrap;
+      overflow:hidden;
+      text-overflow:ellipsis;
+    }
+    .header-actions{
+      display:flex;
+      align-items:center;
+      gap:.75rem;
+      flex-wrap:wrap;
+      justify-content:flex-end;
+    }
+    .search-box{
+      display:flex;
+      align-items:center;
+      gap:.55rem;
+      min-width:min(32rem,100%);
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:999px;
+      padding:.55rem .8rem;
+      box-shadow:var(--shadow-sm);
+    }
+    .search-icon,.search-hot{
+      color:var(--muted);
+      font-size:.9rem;
+      flex:0 0 auto;
+    }
+    .search-box input{
+      border:0;
+      background:transparent;
+      margin:0;
+      padding:0;
+      height:auto;
+      color:var(--text);
+      box-shadow:none;
+      min-width:0;
+    }
+    .search-box input::placeholder{color:#8a9bac}
+    .search-box input:focus{box-shadow:none}
+    .btn{
+      border-radius:7px;
+      font-weight:600;
+      transition:transform .18s ease,background-color .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease;
+      letter-spacing:0;
+      padding:.78rem 1rem;
+      display:inline-flex;
+      align-items:center;
+      gap:.45rem;
+      line-height:1;
+      border:1px solid transparent;
+      white-space:nowrap;
+    }
+    .btn:hover{transform:translateY(-1px)}
+    .btn-primary{
+      background:var(--primary);
+      color:#fff;
+      box-shadow:0 8px 18px rgba(47,111,211,.18);
+    }
+    .btn-primary:hover,.btn-primary:focus{background:var(--primary-strong);color:#fff}
+    .btn-secondary{
+      background:#fff;
+      color:var(--primary-strong);
+      border-color:#cfe0f6;
+    }
+    .btn-secondary:hover,.btn-secondary:focus{
+      background:var(--primary-soft);
+      color:var(--primary-strong);
+      border-color:#b8d2f5;
+    }
+    .btn-ghost{
+      background:transparent;
+      color:var(--muted);
+      border-color:transparent;
+    }
+    .btn-ghost:hover,.btn-ghost:focus{
+      background:#eef4fb;
+      color:var(--text);
+      border-color:#d9e4ef;
+    }
+    .channel-row{
+      padding:0 0 .95rem;
+    }
+    .channel-tabs{
+      display:flex;
+      align-items:center;
+      gap:.55rem;
+      overflow-x:auto;
+      scrollbar-width:thin;
+      padding-bottom:.1rem;
+    }
+    .channel-tabs::-webkit-scrollbar{height:6px}
+    .channel-tabs::-webkit-scrollbar-thumb{background:#c7d7e8;border-radius:999px}
+    .tab-link{
+      flex:0 0 auto;
+      border:1px solid transparent;
+      background:#edf4fb;
+      color:#4f6780;
+      border-radius:999px;
+      padding:.55rem .95rem;
+      font-size:.92rem;
+      line-height:1;
+    }
+    .tab-link:hover{background:#e3eefb;color:var(--primary-strong)}
+    .tab-link.active,.tab-link[aria-current="page"]{
+      background:var(--primary-soft);
+      color:var(--primary-strong);
+      border-color:#bfd7f6;
+      box-shadow:inset 0 0 0 1px rgba(255,255,255,.45);
+    }
+    main{display:block}
+    .section-band{
+      padding:2.4rem 0;
+      border-top:1px solid rgba(215,226,238,.68);
+    }
+    .section-band:first-of-type{border-top:0}
+    .hero-band{
+      background:
+        linear-gradient(180deg,rgba(245,248,252,.95),rgba(255,255,255,.98)),
+        repeating-linear-gradient(90deg,rgba(47,111,211,.04) 0,rgba(47,111,211,.04) 1px,transparent 1px,transparent 72px);
+      padding:2.5rem 0 2.2rem;
+      border-bottom:1px solid rgba(215,226,238,.85);
+    }
+    .hero-grid{
+      display:grid;
+      grid-template-columns:1.18fr .82fr;
+      gap:1.2rem;
+      align-items:stretch;
+    }
+    .hero-copy,.hero-visual{
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:var(--radius);
+      box-shadow:var(--shadow);
+    }
+    .hero-copy{
+      padding:1.55rem;
+      display:flex;
+      flex-direction:column;
+      justify-content:space-between;
+      min-height:24rem;
+    }
+    .kicker-row{
+      display:flex;
+      flex-wrap:wrap;
+      gap:.5rem;
+      margin-bottom:1rem;
+    }
+    .badge{
+      display:inline-flex;
+      align-items:center;
+      gap:.32rem;
+      border-radius:999px;
+      padding:.38rem .7rem;
+      font-size:.82rem;
+      line-height:1;
+      border:1px solid transparent;
+      white-space:nowrap;
+    }
+    .badge-soft{background:var(--primary-soft);color:var(--primary-strong);border-color:#c7dcf7}
+    .badge-accent{background:var(--accent-soft);color:#1f7d76;border-color:#ccefe9}
+    .badge-muted{background:#eff4f8;color:var(--muted);border-color:#dde6ef}
+    .hero-copy h1{
+      margin:0 0 .9rem;
+      font-size:2.7rem;
+      line-height:1.15;
+      letter-spacing:0;
+      max-width:12em;
+    }
+    .hero-copy p{
+      margin:0;
+      color:var(--muted);
+      font-size:1.04rem;
+      max-width:42rem;
+    }
+    .hero-actions{
+      display:flex;
+      gap:.75rem;
+      flex-wrap:wrap;
+      margin-top:1.35rem;
+    }
+    .hero-meta{
+      display:grid;
+      grid-template-columns:repeat(3,minmax(0,1fr));
+      gap:.75rem;
+      margin-top:1.45rem;
+    }
+    .mini-metric{
+      background:var(--surface-soft);
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      padding:.9rem .85rem;
+      min-height:6rem;
+    }
+    .mini-metric strong{
+      display:block;
+      font-size:1.12rem;
+      color:var(--text);
+      margin-bottom:.25rem;
+    }
+    .mini-metric span{
+      color:var(--muted);
+      font-size:.92rem;
+      display:block;
+    }
+    .hero-visual{
+      padding:1.25rem;
+      display:flex;
+      flex-direction:column;
+      gap:1rem;
+      justify-content:space-between;
+      min-height:24rem;
+    }
+    .cover-card{
+      background:linear-gradient(180deg,#f8fbff 0,#ffffff 100%);
+      border:1px solid #d7e3ef;
+      border-radius:var(--radius);
+      padding:1rem;
+      position:relative;
+      overflow:hidden;
+    }
+    .cover-card::after{
+      content:"";
+      position:absolute;
+      inset:auto -12% -20% auto;
+      width:10rem;
+      height:10rem;
+      border-radius:50%;
+      background:radial-gradient(circle at center,rgba(47,111,211,.08),transparent 68%);
+      pointer-events:none;
+    }
+    .cover-title{
+      display:flex;
+      justify-content:space-between;
+      gap:.75rem;
+      align-items:center;
+      margin-bottom:.9rem;
+    }
+    .cover-title strong{font-size:1rem}
+    .live-chip{
+      display:inline-flex;
+      align-items:center;
+      gap:.35rem;
+      padding:.35rem .65rem;
+      border-radius:999px;
+      background:#eef8f7;
+      color:#1c7c75;
+      border:1px solid #cfece8;
+      font-size:.8rem;
+      white-space:nowrap;
+    }
+    .cover-board{
+      display:grid;
+      grid-template-columns:repeat(2,minmax(0,1fr));
+      gap:.65rem;
+    }
+    .board-block{
+      min-height:6.3rem;
+      border-radius:7px;
+      border:1px solid var(--line);
+      background:var(--surface);
+      padding:.85rem;
+      box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
+    }
+    .board-block .label{
+      font-size:.78rem;
+      color:var(--muted-2);
+      margin-bottom:.32rem;
+      display:block;
+    }
+    .board-block .value{
+      font-size:1.36rem;
+      font-weight:700;
+      color:var(--primary-strong);
+      line-height:1.1;
+      letter-spacing:0;
+    }
+    .board-block .sub{
+      font-size:.87rem;
+      color:var(--muted);
+      margin-top:.35rem;
+    }
+    .cover-list{
+      display:grid;
+      grid-template-columns:1fr;
+      gap:.65rem;
+    }
+    .cover-list-item{
+      display:flex;
+      justify-content:space-between;
+      gap:1rem;
+      align-items:flex-start;
+      padding:.82rem .9rem;
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      background:#fbfdff;
+    }
+    .cover-list-item strong{
+      display:block;
+      font-size:.95rem;
+      margin-bottom:.18rem;
+    }
+    .cover-list-item span{
+      color:var(--muted);
+      font-size:.88rem;
+    }
+    .timer-panel{
+      background:var(--surface);
+      border-top:1px solid rgba(215,226,238,.9);
+      border-bottom:1px solid rgba(215,226,238,.9);
+      padding:2.35rem 0;
+    }
+    .timer-shell{
+      display:grid;
+      grid-template-columns:1fr 1.1fr;
+      gap:1rem;
+      align-items:stretch;
+    }
+    .timer-box,.timer-aside{
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:var(--radius);
+      box-shadow:var(--shadow-sm);
+      padding:1.2rem;
+    }
+    .section-head{
+      display:flex;
+      justify-content:space-between;
+      gap:1rem;
+      align-items:flex-end;
+      margin-bottom:1rem;
+    }
+    .section-head h2{
+      margin:0;
+      font-size:1.35rem;
+      line-height:1.2;
+    }
+    .section-head p{
+      margin:0;
+      color:var(--muted);
+      max-width:42rem;
+    }
+    .countdown{
+      display:grid;
+      grid-template-columns:repeat(4,minmax(0,1fr));
+      gap:.7rem;
+      margin-top:1rem;
+    }
+    .countdown-item{
+      background:#f8fbff;
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      padding:1rem .8rem;
+      text-align:center;
+    }
+    .countdown-item strong{
+      display:block;
+      font-size:1.75rem;
+      line-height:1;
+      color:var(--primary-strong);
+      margin-bottom:.3rem;
+    }
+    .countdown-item span{
+      display:block;
+      color:var(--muted);
+      font-size:.88rem;
+    }
+    .status-row{
+      display:flex;
+      flex-wrap:wrap;
+      gap:.5rem;
+      margin-top:.9rem;
+    }
+    .status-pill{
+      display:inline-flex;
+      align-items:center;
+      gap:.35rem;
+      padding:.38rem .65rem;
+      background:#f1f6fb;
+      border:1px solid #d8e4f0;
+      border-radius:999px;
+      color:#4f6780;
+      font-size:.82rem;
+      white-space:nowrap;
+    }
+    .timer-aside{
+      display:grid;
+      grid-template-columns:repeat(2,minmax(0,1fr));
+      gap:.8rem;
+    }
+    .aside-box{
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      background:linear-gradient(180deg,#ffffff,#f8fbff);
+      padding:.9rem;
+      min-height:7rem;
+    }
+    .aside-box strong{
+      display:block;
+      margin-bottom:.3rem;
+      color:var(--text);
+    }
+    .aside-box p{
+      margin:0;
+      color:var(--muted);
+      font-size:.9rem;
+    }
+    .looks-grid{
+      display:grid;
+      grid-template-columns:repeat(4,minmax(0,1fr));
+      gap:1rem;
+    }
+    .look-card{
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:var(--radius);
+      box-shadow:var(--shadow-sm);
+      padding:1rem;
+      min-height:12rem;
+      display:flex;
+      flex-direction:column;
+      gap:.8rem;
+      transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
+    }
+    .look-card:hover{
+      transform:translateY(-2px);
+      box-shadow:var(--shadow);
+      border-color:#c5d7eb;
+    }
+    .look-top{
+      display:flex;
+      justify-content:space-between;
+      gap:.75rem;
+      align-items:center;
+    }
+    .look-time{
+      font-weight:700;
+      color:var(--primary-strong);
+      font-size:1.05rem;
+    }
+    .look-card h3{
+      margin:0;
+      font-size:1.02rem;
+      line-height:1.3;
+    }
+    .look-card p{
+      margin:0;
+      color:var(--muted);
+      font-size:.93rem;
+      flex:1 1 auto;
+    }
+    .tag-row{
+      display:flex;
+      flex-wrap:wrap;
+      gap:.4rem;
+    }
+    .tag{
+      display:inline-flex;
+      align-items:center;
+      padding:.3rem .55rem;
+      border-radius:999px;
+      background:#eef4fb;
+      color:#587089;
+      border:1px solid #dbe6f1;
+      font-size:.8rem;
+      line-height:1;
+    }
+    .subscribe-band{
+      background:linear-gradient(180deg,#f7fbff 0,#ffffff 100%);
+    }
+    .subscribe-grid{
+      display:grid;
+      grid-template-columns:1.05fr .95fr;
+      gap:1rem;
+      align-items:stretch;
+    }
+    .subscribe-panel,.info-panel{
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:var(--radius);
+      box-shadow:var(--shadow-sm);
+      padding:1.2rem;
+    }
+    .form-row{
+      display:grid;
+      grid-template-columns:1fr auto;
+      gap:.8rem;
+      margin-top:1rem;
+      align-items:end;
+    }
+    .field label{
+      display:block;
+      font-size:.9rem;
+      color:var(--muted);
+      margin-bottom:.35rem;
+    }
+    .field input,.field select{
+      width:100%;
+      height:2.75rem;
+      border-radius:7px;
+      border:1px solid var(--line);
+      background:#fff;
+      box-shadow:none;
+      margin:0;
+      color:var(--text);
+    }
+    .field input:focus,.field select:focus{
+      border-color:#9fbde8;
+      box-shadow:0 0 0 3px rgba(47,111,211,.08);
+    }
+    .option-row{
+      display:flex;
+      flex-wrap:wrap;
+      gap:.85rem;
+      margin-top:.9rem;
+    }
+    .option{
+      display:inline-flex;
+      align-items:center;
+      gap:.45rem;
+      padding:.45rem .65rem;
+      border:1px solid #d7e2ee;
+      border-radius:999px;
+      background:#f9fbfe;
+      color:#4d6277;
+      font-size:.86rem;
+      white-space:nowrap;
+      user-select:none;
+    }
+    .option input{margin:0}
+    .feedback{
+      margin-top:.85rem;
+      color:var(--muted);
+      font-size:.92rem;
+      min-height:1.4em;
+    }
+    .info-panel{
+      display:grid;
+      grid-template-rows:auto auto;
+      gap:.9rem;
+    }
+    .info-tiles{
+      display:grid;
+      grid-template-columns:repeat(2,minmax(0,1fr));
+      gap:.8rem;
+    }
+    .info-tile{
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      background:#fbfdff;
+      padding:.85rem;
+      min-height:6.5rem;
+    }
+    .info-tile strong{
+      display:block;
+      margin-bottom:.25rem;
+      color:var(--text);
+    }
+    .info-tile p{
+      margin:0;
+      color:var(--muted);
+      font-size:.9rem;
+    }
+    .entry-band{
+      background:var(--surface-soft);
+    }
+    .entry-layout{
+      display:grid;
+      grid-template-columns:1.1fr .9fr;
+      gap:1rem;
+      align-items:start;
+    }
+    .entry-panel,.side-panel{
+      background:var(--surface);
+      border:1px solid var(--line);
+      border-radius:var(--radius);
+      box-shadow:var(--shadow-sm);
+      padding:1.15rem;
+    }
+    .filter-bar{
+      display:flex;
+      align-items:center;
+      justify-content:space-between;
+      gap:.85rem;
+      flex-wrap:wrap;
+      margin-bottom:1rem;
+    }
+    .filter-tabs{
+      display:flex;
+      gap:.5rem;
+      flex-wrap:wrap;
+    }
+    .filter-tab{
+      background:#eef4fb;
+      color:#52708a;
+      border:1px solid #d8e4f0;
+      border-radius:999px;
+      padding:.42rem .7rem;
+      font-size:.84rem;
+    }
+    .filter-tab.active{
+      background:var(--primary-soft);
+      border-color:#bfd7f6;
+      color:var(--primary-strong);
+    }
+    .filter-controls{
+      display:flex;
+      align-items:center;
+      gap:.6rem;
+      flex-wrap:wrap;
+    }
+    .filter-controls select{
+      width:auto;
+      min-width:10rem;
+      margin:0;
+      border-radius:7px;
+      border:1px solid var(--line);
+      background:#fff;
+      height:2.65rem;
+    }
+    .update-list{
+      display:grid;
+      gap:.8rem;
+    }
+    .update-item{
+      display:grid;
+      grid-template-columns:7.5rem 1fr auto;
+      gap:1rem;
+      align-items:center;
+      padding:.95rem 1rem;
+      background:#fbfdff;
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
+    }
+    .update-item:hover{
+      transform:translateY(-1px);
+      border-color:#c4d5ea;
+      box-shadow:var(--shadow-sm);
+    }
+    .update-time{
+      font-size:1.02rem;
+      font-weight:700;
+      color:var(--primary-strong);
+      white-space:nowrap;
+    }
+    .update-main h3{
+      margin:0 0 .35rem;
+      font-size:1.02rem;
+      line-height:1.35;
+    }
+    .update-main p{
+      margin:0;
+      color:var(--muted);
+      font-size:.92rem;
+    }
+    .update-actions{
+      display:flex;
+      align-items:center;
+      gap:.5rem;
+      flex-wrap:wrap;
+      justify-content:flex-end;
+    }
+    .side-panel{
+      position:sticky;
+      top:7.8rem;
+    }
+    .side-block{
+      padding-bottom:1rem;
+      margin-bottom:1rem;
+      border-bottom:1px solid #e4ebf3;
+    }
+    .side-block:last-child{
+      border-bottom:0;
+      padding-bottom:0;
+      margin-bottom:0;
+    }
+    .side-block h3{
+      margin:0 0 .55rem;
+      font-size:1rem;
+    }
+    .stat-list{
+      display:grid;
+      gap:.55rem;
+    }
+    .stat-item{
+      display:flex;
+      justify-content:space-between;
+      gap:1rem;
+      align-items:center;
+      color:var(--muted);
+      font-size:.93rem;
+    }
+    .stat-item strong{
+      color:var(--text);
+      font-weight:700;
+    }
+    .entry-links{
+      display:grid;
+      gap:.55rem;
+    }
+    .entry-link{
+      display:flex;
+      justify-content:space-between;
+      align-items:center;
+      gap:.9rem;
+      padding:.75rem .82rem;
+      border-radius:var(--radius-sm);
+      border:1px solid #d9e5f0;
+      background:#f9fbfe;
+      color:var(--text);
+    }
+    .entry-link:hover{
+      background:#eef4fb;
+      border-color:#c8d8ea;
+      transform:translateY(-1px);
+    }
+    .entry-link span:last-child{
+      color:var(--muted);
+      font-size:.85rem;
+      white-space:nowrap;
+    }
+    .pagination-wrap{
+      display:flex;
+      justify-content:space-between;
+      align-items:center;
+      gap:.9rem;
+      flex-wrap:wrap;
+      margin-top:1rem;
+      padding-top:1rem;
+      border-top:1px solid #e4ebf3;
+    }
+    .pagination{
+      display:flex;
+      gap:.4rem;
+      flex-wrap:wrap;
+    }
+    .page-link{
+      display:inline-flex;
+      align-items:center;
+      justify-content:center;
+      min-width:2.4rem;
+      height:2.4rem;
+      padding:0 .7rem;
+      border-radius:7px;
+      border:1px solid #d7e2ee;
+      background:#fff;
+      color:var(--muted);
+      font-size:.9rem;
+    }
+    .page-link.active,.page-link:hover{
+      background:var(--primary-soft);
+      border-color:#bfd7f6;
+      color:var(--primary-strong);
+    }
+    .faq-band{
+      background:linear-gradient(180deg,#ffffff 0,#f8fbff 100%);
+    }
+    .accordion{
+      background:transparent;
+      border:0;
+    }
+    .accordion-item{
+      border:1px solid var(--line);
+      border-radius:var(--radius-sm);
+      overflow:hidden;
+      margin-bottom:.7rem;
+      background:var(--surface);
+      box-shadow:var(--shadow-sm);
+    }
+    .accordion-title{
+      color:var(--text);
+      font-size:1rem;
+      padding:1rem 1rem;
+      background:#fbfdff;
+      border:0;
+      line-height:1.35;
+    }
+    .accordion-title:hover{background:#f3f8fd}
+    .accordion-content{
+      border:0;
+      padding:0 1rem 1rem;
+      color:var(--muted);
+      font-size:.94rem;
+    }
+    .cta-band{
+      background:linear-gradient(180deg,#f7fbff 0,#edf4fb 100%);
+      border-top:1px solid rgba(215,226,238,.85);
+      border-bottom:1px solid rgba(215,226,238,.85);
+    }
+    .cta-shell{
+      display:flex;
+      justify-content:space-between;
+      gap:1rem;
+      align-items:center;
+      flex-wrap:wrap;
+      padding:1.25rem 0;
+    }
+    .cta-shell h2{
+      margin:0 0 .3rem;
+      font-size:1.28rem;
+      line-height:1.25;
+    }
+    .cta-shell p{
+      margin:0;
+      color:var(--muted);
+    }
+    .cta-actions{
+      display:flex;
+      gap:.7rem;
+      flex-wrap:wrap;
+    }
+    .site-footer{
+      background:#f3f7fb;
+      border-top:1px solid #dce6f0;
+      padding:2rem 0 1.2rem;
+    }
+    .footer-grid{
+      display:grid;
+      grid-template-columns:1.2fr .8fr .8fr;
+      gap:1rem;
+      align-items:start;
+    }
+    .footer-title{
+      font-weight:700;
+      margin-bottom:.55rem;
+      color:var(--text);
+    }
+    .footer-desc{
+      margin:0;
+      color:var(--muted);
+      max-width:38rem;
+    }
+    .footer-links{
+      display:grid;
+      gap:.45rem;
+    }
+    .footer-links a{
+      color:var(--muted);
+    }
+    .footer-links a:hover{color:var(--primary-strong)}
+    .copyright{
+      display:flex;
+      justify-content:space-between;
+      gap:1rem;
+      flex-wrap:wrap;
+      margin-top:1.2rem;
+      padding-top:1rem;
+      border-top:1px solid #d8e2ec;
+      color:#70859a;
+      font-size:.9rem;
+    }
+    .is-hidden{display:none !important}
+    .no-result{
+      display:none;
+      padding:1rem;
+      border:1px dashed #cbd8e5;
+      border-radius:var(--radius-sm);
+      color:var(--muted);
+      background:#fafcff;
+    }
+    .note-line{
+      margin-top:.7rem;
+      color:var(--muted);
+      font-size:.9rem;
+    }
+    @media screen and (max-width: 1024px){
+      .hero-grid,
+      .timer-shell,
+      .subscribe-grid,
+      .entry-layout,
+      .footer-grid{
+        grid-template-columns:1fr;
+      }
+      .side-panel{position:static}
+      .looks-grid{
+        grid-template-columns:repeat(2,minmax(0,1fr));
+      }
+      .hero-copy h1{font-size:2.35rem}
+      .timer-aside{grid-template-columns:repeat(2,minmax(0,1fr))}
+    }
+    @media screen and (max-width: 768px){
+      .header-top{
+        flex-direction:column;
+        align-items:stretch;
+      }
+      .header-actions{
+        justify-content:stretch;
+      }
+      .search-box{
+        min-width:0;
+        width:100%;
+      }
+      .hero-copy{
+        min-height:auto;
+        padding:1.25rem;
+      }
+      .hero-copy h1{font-size:2rem}
+      .hero-meta,.cover-board,.countdown,.info-tiles,.timer-aside,.looks-grid{
+        grid-template-columns:1fr 1fr;
+      }
+      .update-item{
+        grid-template-columns:1fr;
+        gap:.7rem;
+      }
+      .update-actions{justify-content:flex-start}
+      .cta-shell{padding:1rem 0}
+      .section-head{
+        flex-direction:column;
+        align-items:flex-start;
+      }
+    }
+    @media screen and (max-width: 520px){
+      .site-container{width:min(100% - 1.1rem,1180px)}
+      .hero-copy h1{font-size:1.8rem}
+      .hero-meta,.cover-board,.countdown,.info-tiles,.timer-aside,.looks-grid,.footer-grid{
+        grid-template-columns:1fr;
+      }
+      .form-row{
+        grid-template-columns:1fr;
+      }
+      .filter-bar{
+        align-items:stretch;
+      }
+      .filter-controls{
+        width:100%;
+      }
+      .filter-controls select{
+        width:100%;
+      }
+      .cta-actions,.hero-actions{
+        width:100%;
+      }
+      .cta-actions .btn,.hero-actions .btn{
+        width:100%;
+        justify-content:center;
+      }
+      .pagination-wrap{
+        justify-content:flex-start;
+      }
+      .copyright{
+        flex-direction:column;
+      }
+    }
+

/* roulang page: category2 */
:root{
      --bg: #f4f8fd;
      --bg-soft: #eef4fb;
      --panel: #ffffff;
      --panel-strong: #f8fbff;
      --line: #d7e3f0;
      --line-strong: #bed1e8;
      --text: #17324a;
      --muted: #67809a;
      --primary: #2f6fed;
      --primary-dark: #2359c8;
      --primary-soft: #e6efff;
      --accent: #21b7b0;
      --accent-soft: #e3faf7;
      --warm: #ffca73;
      --shadow: 0 14px 34px rgba(27, 58, 98, 0.08);
      --shadow-soft: 0 8px 22px rgba(27, 58, 98, 0.06);
      --radius: 8px;
      --radius-sm: 6px;
      --space-xxs: 6px;
      --space-xs: 10px;
      --space-sm: 14px;
      --space-md: 18px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 44px;
      --space-3xl: 60px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.84)),
        radial-gradient(circle at top left, rgba(47,111,237,0.06), transparent 28%),
        radial-gradient(circle at top right, rgba(33,183,176,0.05), transparent 22%),
        var(--bg);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Arial, 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(23, 50, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 50, 74, 0.03) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: 0.35;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.12) 54%, rgba(0,0,0,0));
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover,
    a:focus {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(47, 111, 237, 0.18);
      color: var(--text);
    }

    .site-container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(244, 248, 253, 0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(215, 227, 240, 0.92);
      box-shadow: 0 1px 0 rgba(255,255,255,0.6);
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
      padding: 14px 0 12px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--text);
    }

    .brand:hover .brand-mark {
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(47, 111, 237, 0.18);
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(180deg, var(--primary), var(--primary-dark));
      box-shadow: 0 8px 16px rgba(47, 111, 237, 0.18);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      flex: none;
    }

    .brand-text {
      font-size: 1.02rem;
      font-weight: 700;
      letter-spacing: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex: 1;
      justify-content: flex-end;
    }

    .search-box {
      flex: 1;
      max-width: 430px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.98);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
      min-width: 0;
    }

    .search-box:focus-within {
      border-color: rgba(47, 111, 237, 0.5);
      box-shadow: 0 0 0 4px rgba(47, 111, 237, 0.1), var(--shadow-soft);
    }

    .search-icon {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1;
      flex: none;
    }

    .search-box input {
      border: 0;
      outline: 0;
      width: 100%;
      min-width: 0;
      background: transparent;
      color: var(--text);
      padding: 0;
    }

    .search-box input::placeholder {
      color: #8ea1b5;
    }

    .search-hot {
      flex: none;
      padding: 4px 9px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 0.79rem;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 600;
      line-height: 1;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(27, 58, 98, 0.12);
    }

    .btn:focus-visible,
    .tab-link:focus-visible,
    .chip:focus-visible,
    .tag-link:focus-visible,
    .page-link:focus-visible,
    summary:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(47, 111, 237, 0.18);
      outline-offset: 2px;
    }

    .btn-primary {
      background: linear-gradient(180deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 10px 16px rgba(47, 111, 237, 0.15);
      border-color: rgba(47, 111, 237, 0.12);
    }

    .btn-primary:hover {
      color: #fff;
      background: linear-gradient(180deg, #3a79f0, #2a61d2);
    }

    .btn-secondary {
      background: #fff;
      color: var(--primary-dark);
      border-color: rgba(47, 111, 237, 0.22);
      box-shadow: var(--shadow-soft);
    }

    .btn-secondary:hover {
      background: var(--primary-soft);
      border-color: rgba(47, 111, 237, 0.35);
      color: var(--primary-dark);
    }

    .btn-ghost {
      background: rgba(255,255,255,0.82);
      color: var(--text);
      border-color: var(--line);
      box-shadow: none;
    }

    .btn-ghost:hover {
      background: #fff;
      border-color: var(--line-strong);
      box-shadow: var(--shadow-soft);
    }

    .channel-row {
      padding-bottom: 12px;
    }

    .channel-tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-bottom: 2px;
    }

    .channel-tabs::-webkit-scrollbar {
      display: none;
    }

    .tab-link {
      flex: none;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: rgba(255,255,255,0.84);
      color: var(--muted);
      font-weight: 600;
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
      box-shadow: 0 2px 10px rgba(27, 58, 98, 0.04);
    }

    .tab-link:hover {
      color: var(--primary-dark);
      border-color: rgba(47, 111, 237, 0.18);
      background: #fff;
      box-shadow: 0 8px 16px rgba(27, 58, 98, 0.08);
    }

    .tab-link.active {
      background: linear-gradient(180deg, #4a82ef, var(--primary-dark));
      color: #fff;
      border-color: rgba(47, 111, 237, 0.2);
      box-shadow: 0 10px 18px rgba(47, 111, 237, 0.18);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .band {
      padding: var(--space-3xl) 0;
    }

    .band-soft {
      background: rgba(255,255,255,0.48);
      border-top: 1px solid rgba(215, 227, 240, 0.72);
      border-bottom: 1px solid rgba(215, 227, 240, 0.72);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
      margin-bottom: 8px;
    }

    .section-title {
      margin: 0;
      font-size: 1.5rem;
      line-height: 1.25;
      letter-spacing: 0;
      color: var(--text);
    }

    .section-desc {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.98rem;
      max-width: 64ch;
    }

    .hero-band {
      padding: 40px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,251,255,0.98));
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      inset: auto -30px -40px auto;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(47,111,237,0.08), rgba(47,111,237,0));
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(47, 111, 237, 0.14);
      border-radius: 999px;
      padding: 6px 10px;
      margin-bottom: 14px;
    }

    .hero-copy h1 {
      margin: 0;
      font-size: 2.5rem;
      line-height: 1.18;
      letter-spacing: 0;
      color: var(--text);
      max-width: 12em;
    }

    .hero-copy p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 1.02rem;
      max-width: 60ch;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .meta-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(215, 227, 240, 0.9);
      border-radius: 999px;
      color: var(--text);
      box-shadow: 0 4px 12px rgba(27, 58, 98, 0.05);
      white-space: nowrap;
    }

    .meta-chip strong {
      color: var(--primary-dark);
    }

    .hero-visual {
      display: grid;
      gap: 14px;
      align-content: stretch;
    }

    .visual-card {
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
      min-height: 100%;
    }

    .visual-card.featured {
      background: linear-gradient(180deg, rgba(237,245,255,0.98), rgba(255,255,255,0.99));
      border-color: rgba(47, 111, 237, 0.16);
      box-shadow: 0 18px 34px rgba(47, 111, 237, 0.12);
    }

    .visual-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary-dark);
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 10px;
    }

    .visual-title {
      margin: 0;
      font-size: 1.08rem;
      line-height: 1.35;
      color: var(--text);
    }

    .visual-desc {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .swatch-row,
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .swatch {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid rgba(47, 111, 237, 0.14);
      color: var(--text);
      font-size: 0.88rem;
      white-space: nowrap;
    }

    .swatch::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
      flex: none;
    }

    .swatch.secondary::before {
      background: var(--accent);
    }

    .swatch.warn::before {
      background: var(--warm);
    }

    .visual-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .mini-stat {
      display: grid;
      gap: 4px;
      padding: 12px;
      border-radius: 8px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(215, 227, 240, 0.92);
    }

    .mini-stat strong {
      font-size: 1.2rem;
      line-height: 1.1;
      color: var(--primary-dark);
    }

    .mini-stat span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .visual-stack {
      display: grid;
      gap: 14px;
    }

    .line-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      color: var(--muted);
      font-size: 0.9rem;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .line-progress {
      height: 8px;
      border-radius: 999px;
      background: #e7eef8;
      overflow: hidden;
      margin-top: 12px;
    }

    .line-progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      width: 72%;
    }

    .toolbar {
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
    }

    .toolbar-grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr auto;
      gap: 14px;
      align-items: end;
    }

    .toolbar-field {
      display: grid;
      gap: 8px;
      min-width: 0;
    }

    .toolbar-field label {
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 600;
    }

    .toolbar-field select {
      width: 100%;
      min-width: 0;
      appearance: none;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      border-radius: 8px;
      min-height: 44px;
      padding: 0 14px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    }

    .chip-rail {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(47, 111, 237, 0.12);
      background: #fff;
      color: var(--text);
      box-shadow: 0 4px 12px rgba(27, 58, 98, 0.04);
      font-size: 0.9rem;
      transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .chip:hover {
      transform: translateY(-1px);
      border-color: rgba(47, 111, 237, 0.24);
      background: var(--primary-soft);
      box-shadow: 0 10px 18px rgba(47, 111, 237, 0.08);
    }

    .chip.active {
      background: linear-gradient(180deg, #edf4ff, #dfeaff);
      color: var(--primary-dark);
      border-color: rgba(47, 111, 237, 0.18);
      font-weight: 700;
    }

    .results-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
      gap: 22px;
      align-items: start;
    }

    .result-list {
      display: grid;
      gap: 14px;
    }

    .result-card {
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .result-card:hover {
      transform: translateY(-1px);
      border-color: rgba(47, 111, 237, 0.2);
      box-shadow: 0 16px 28px rgba(27, 58, 98, 0.08);
    }

    .result-top {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 16px;
    }

    .result-title {
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.38;
      color: var(--text);
    }

    .result-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .result-desc {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .tag-row {
      margin-top: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      border: 1px solid rgba(47, 111, 237, 0.14);
      font-size: 0.82rem;
      white-space: nowrap;
    }

    .tag.alt {
      background: var(--accent-soft);
      color: #1f8179;
      border-color: rgba(33, 183, 176, 0.16);
    }

    .tag.neutral {
      background: #f3f7fb;
      color: var(--muted);
      border-color: rgba(215, 227, 240, 0.95);
    }

    .result-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .mini-btn {
      min-height: 38px;
      padding: 0 12px;
      font-size: 0.9rem;
    }

    .sidebar {
      display: grid;
      gap: 14px;
      position: sticky;
      top: 124px;
    }

    .side-card {
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
    }

    .side-card h3 {
      margin: 0 0 12px;
      font-size: 1.02rem;
      line-height: 1.35;
      color: var(--text);
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .metric-box {
      padding: 12px;
      border-radius: 8px;
      background: var(--panel-strong);
      border: 1px solid rgba(215, 227, 240, 0.95);
      min-height: 84px;
    }

    .metric-box strong {
      display: block;
      font-size: 1.3rem;
      line-height: 1.1;
      color: var(--primary-dark);
    }

    .metric-box span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.86rem;
    }

    .note-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .note-list li {
      display: flex;
      gap: 10px;
      align-items: start;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .note-dot {
      flex: none;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-top: 7px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(33, 183, 176, 0.12);
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-link {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 11px;
      border-radius: 999px;
      border: 1px solid rgba(47, 111, 237, 0.12);
      background: #fff;
      color: var(--text);
      box-shadow: 0 4px 12px rgba(27, 58, 98, 0.04);
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
      font-size: 0.88rem;
    }

    .tag-link:hover {
      transform: translateY(-1px);
      background: var(--primary-soft);
      border-color: rgba(47, 111, 237, 0.22);
      color: var(--primary-dark);
    }

    .subscribe-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,250,255,0.98));
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 22px;
    }

    .subscribe-grid {
      display: grid;
      grid-template-columns: 1.18fr 0.82fr;
      gap: 18px;
      align-items: start;
    }

    .subscribe-copy h2 {
      margin: 0;
      font-size: 1.45rem;
      line-height: 1.25;
      color: var(--text);
    }

    .subscribe-copy p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .subscribe-form {
      display: grid;
      gap: 12px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(215, 227, 240, 0.92);
      border-radius: 8px;
      padding: 16px;
    }

    .field-row {
      display: grid;
      gap: 10px;
    }

    .field-row input {
      width: 100%;
      min-height: 46px;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #fff;
      padding: 0 14px;
      color: var(--text);
    }

    .field-row input::placeholder {
      color: #92a4b6;
    }

    .switch-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .check-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      font-size: 0.92rem;
    }

    .check-item input {
      width: 18px;
      height: 18px;
      accent-color: var(--primary);
    }

    .subscribe-status {
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .status-box {
      padding: 13px 14px;
      border-radius: 8px;
      border: 1px solid rgba(47, 111, 237, 0.14);
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 600;
    }

    .status-box.secondary {
      background: #fff;
      color: var(--muted);
      border-color: rgba(215, 227, 240, 0.95);
      font-weight: 500;
    }

    .entries-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .entry-card {
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      padding: 18px;
      min-height: 188px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .entry-card:hover {
      transform: translateY(-1px);
      border-color: rgba(47, 111, 237, 0.2);
      box-shadow: 0 16px 28px rgba(27, 58, 98, 0.08);
    }

    .entry-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 700;
      border: 1px solid rgba(47, 111, 237, 0.12);
    }

    .entry-card h3 {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.35;
      color: var(--text);
    }

    .entry-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .entry-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: rgba(255,255,255,0.98);
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 18px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: none;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      display: grid;
      place-items: center;
      font-weight: 700;
      transition: transform 0.18s ease, background 0.18s ease;
    }

    .faq-item[open] summary::after {
      content: "–";
      background: rgba(33, 183, 176, 0.12);
      color: #1f8179;
    }

    .faq-answer {
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .pagination-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .page-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      border-radius: 8px;
      border: 1px solid rgba(215, 227, 240, 0.95);
      background: #fff;
      color: var(--text);
      box-shadow: 0 4px 12px rgba(27, 58, 98, 0.04);
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
    }

    .page-link:hover {
      transform: translateY(-1px);
      border-color: rgba(47, 111, 237, 0.24);
      background: var(--primary-soft);
      color: var(--primary-dark);
    }

    .page-link.active {
      background: linear-gradient(180deg, var(--primary), var(--primary-dark));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 10px 18px rgba(47, 111, 237, 0.18);
    }

    .cta-strip {
      background: linear-gradient(180deg, rgba(237,245,255,0.96), rgba(255,255,255,0.99));
      border: 1px solid rgba(215, 227, 240, 0.95);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .cta-strip h2 {
      margin: 0;
      font-size: 1.32rem;
      line-height: 1.28;
      color: var(--text);
    }

    .cta-strip p {
      margin: 6px 0 0;
      color: var(--muted);
    }

    .site-footer {
      padding: 34px 0 22px;
      background: rgba(255,255,255,0.84);
      border-top: 1px solid rgba(215, 227, 240, 0.92);
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.8fr;
      gap: 24px;
      padding-bottom: 18px;
    }

    .footer-title {
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .footer-desc {
      margin: 0;
      color: var(--muted);
      max-width: 48ch;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      transition: color 0.18s ease;
    }

    .footer-links a:hover {
      color: var(--primary-dark);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 16px;
      border-top: 1px solid rgba(215, 227, 240, 0.92);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1100px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .results-grid {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
      }

      .entries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .header-top {
        align-items: stretch;
        flex-direction: column;
      }

      .header-actions {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box {
        max-width: none;
      }

      .site-header .btn {
        width: 100%;
      }

      .hero-copy {
        padding: 22px;
      }

      .hero-copy h1 {
        font-size: 2rem;
        max-width: 100%;
      }

      .band {
        padding: 28px 0;
      }

      .toolbar-grid {
        grid-template-columns: 1fr;
      }

      .visual-grid {
        grid-template-columns: 1fr;
      }

      .subscribe-grid {
        grid-template-columns: 1fr;
      }

      .entries-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        flex-direction: column;
        align-items: start;
      }

      .result-top {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 20px, 1200px);
      }

      .hero-copy {
        padding: 18px;
      }

      .hero-copy h1 {
        font-size: 1.78rem;
      }

      .section-title {
        font-size: 1.25rem;
      }

      .subscribe-panel,
      .side-card,
      .visual-card,
      .result-card,
      .entry-card,
      .cta-strip {
        padding: 16px;
      }

      .hero-actions,
      .result-actions,
      .switch-row {
        gap: 8px;
      }

      .btn {
        width: 100%;
      }

      .meta-chip {
        width: 100%;
        justify-content: center;
      }

      .page-link {
        min-width: 36px;
        height: 36px;
      }
    }
