/* roulang page: index */
:root{
      --red:#E7352C;
      --red-2:#FF3B30;
      --orange:#FF8A00;
      --orange-2:#FFB020;
      --green:#19A05E;
      --ink:#1F1F1F;
      --muted:#6B6B6B;
      --soft:#9A9A9A;
      --paper:#FFFCF8;
      --warm:#FFF7F2;
      --line:#F1DDD2;
      --line-red:rgba(231,53,44,.14);
      --brown:#211714;
      --card:#FFFFFF;
      --shadow:0 14px 34px rgba(231,53,44,.10);
      --shadow-hover:0 18px 46px rgba(231,53,44,.18);
      --radius-xl:26px;
      --radius-lg:20px;
      --radius-md:15px;
      --radius-sm:10px;
      --container:1180px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 5%,rgba(255,138,0,.12),transparent 28%),
        radial-gradient(circle at 92% 10%,rgba(231,53,44,.10),transparent 30%),
        linear-gradient(180deg,#fffaf6 0%,var(--paper) 46%,#fff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--red)}
    button,input,select{font-family:inherit}
    button,.button{transition:var(--ease)}
    input,select{
      outline:none;
      border:1px solid rgba(255,255,255,.72);
      border-radius:14px;
      background:#fff;
      color:var(--ink);
      min-height:48px;
      padding:0 15px;
      box-shadow:0 8px 20px rgba(70,28,18,.08);
    }
    input:focus,select:focus,button:focus,a:focus{
      outline:3px solid rgba(255,138,0,.28);
      outline-offset:2px;
    }
    img{max-width:100%;height:auto;display:block}
    .site-container{
      width:min(var(--container),calc(100% - 32px));
      margin:0 auto;
    }
    .section{
      padding:72px 0;
      position:relative;
    }
    .section-tight{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(231,53,44,.09);
      color:var(--red);
      font-weight:800;
      font-size:13px;
      letter-spacing:.02em;
    }
    .eyebrow i{color:var(--orange)}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:22px;
      margin-bottom:28px;
    }
    .section-head h2{
      margin:10px 0 0;
      font-size:clamp(24px,3vw,32px);
      line-height:1.22;
      font-weight:850;
      letter-spacing:-.02em;
    }
    .section-head p{
      max-width:610px;
      color:var(--muted);
      margin:8px 0 0;
      font-size:16px;
    }
    .btn-main,.btn-sub,.btn-light{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      border-radius:15px;
      padding:12px 20px;
      font-weight:800;
      cursor:pointer;
      border:none;
      line-height:1.2;
      white-space:nowrap;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 12px 28px rgba(231,53,44,.28);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(231,53,44,.34);
      filter:saturate(1.08);
    }
    .btn-sub{
      color:var(--red);
      background:#fff;
      border:1px solid rgba(231,53,44,.26);
      box-shadow:0 10px 24px rgba(231,53,44,.08);
    }
    .btn-sub:hover{
      color:var(--red);
      background:#fff2ed;
      transform:translateY(-2px);
    }
    .btn-light{
      color:#fff;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.32);
    }
    .btn-light:hover{color:#fff;background:rgba(255,255,255,.24)}
    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      padding:6px 10px;
      line-height:1;
    }
    .badge{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
    }
    .tag{
      color:#9f2a18;
      background:#fff1e8;
      border:1px solid rgba(231,53,44,.12);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,252,248,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 24px rgba(80,35,18,.05);
    }
    .brand-row{
      min-height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:11px;
      font-weight:900;
      font-size:20px;
      letter-spacing:-.03em;
      color:var(--ink);
    }
    .logo-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 10px 22px rgba(231,53,44,.25);
    }
    .logo strong{
      background:linear-gradient(135deg,var(--red),var(--orange));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .top-actions{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:14px;
    }
    .top-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      font-weight:750;
    }
    .top-pill:hover{border-color:rgba(231,53,44,.28);box-shadow:0 10px 24px rgba(231,53,44,.08)}
    .channel-row{
      border-top:1px solid rgba(241,221,210,.72);
      min-height:48px;
      display:flex;
      align-items:center;
      overflow:hidden;
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:9px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:8px 0;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:9px 15px;
      font-size:14px;
      font-weight:850;
      color:#6b3b31;
      background:transparent;
    }
    .channel-nav a:hover{background:#fff0e8;color:var(--red)}
    .channel-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 9px 22px rgba(231,53,44,.22);
    }

    .hero{
      padding:40px 0 62px;
    }
    .bento{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      grid-template-rows:auto auto;
      gap:18px;
    }
    .hero-main{
      min-height:420px;
      grid-row:span 2;
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      padding:38px;
      color:#fff;
      background:
        radial-gradient(circle at 82% 18%,rgba(255,255,255,.28),transparent 18%),
        radial-gradient(circle at 72% 72%,rgba(255,176,32,.45),transparent 24%),
        linear-gradient(135deg,#e32925 0%,#ff6500 58%,#ffad20 100%);
      box-shadow:0 24px 60px rgba(231,53,44,.24);
    }
    .hero-main:before{
      content:"";
      position:absolute;
      inset:auto -60px -90px auto;
      width:330px;height:330px;
      border-radius:80px;
      background:rgba(255,255,255,.16);
      transform:rotate(20deg);
    }
    .hero-main:after{
      content:"今日提醒";
      position:absolute;
      top:28px;
      right:-42px;
      transform:rotate(18deg);
      color:#d73222;
      background:#fff;
      border:2px dashed rgba(231,53,44,.28);
      box-shadow:0 16px 34px rgba(95,29,15,.16);
      padding:10px 54px;
      border-radius:999px;
      font-weight:900;
    }
    .hero-content{position:relative;z-index:2;max-width:710px}
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#fff;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.30);
      padding:8px 12px;
      border-radius:999px;
      font-weight:850;
      margin-bottom:18px;
    }
    .hero h1{
      margin:0 0 16px;
      font-size:clamp(30px,5vw,48px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
      max-width:720px;
    }
    .hero-desc{
      max-width:760px;
      margin:0 0 24px;
      font-size:17px;
      color:rgba(255,255,255,.94);
    }
    .hero-cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin:26px 0;
    }
    .hero .btn-main{
      background:#fff;
      color:var(--red);
      box-shadow:0 14px 28px rgba(119,33,19,.18);
    }
    .hero .btn-main:hover{color:var(--red)}
    .data-strip{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:28px;
      max-width:720px;
    }
    .data-item{
      border-radius:18px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.26);
      padding:14px 15px;
    }
    .data-item strong{display:block;font-size:24px;font-weight:950;line-height:1}
    .data-item span{display:block;margin-top:6px;color:rgba(255,255,255,.82);font-size:13px}
    .mini-panel{
      position:relative;
      overflow:hidden;
      min-height:198px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:22px;
    }
    .mini-panel:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .mini-panel h3{
      margin:12px 0 8px;
      font-size:21px;
      line-height:1.25;
      font-weight:850;
    }
    .mini-panel p{margin:0;color:var(--muted);font-size:15px}
    .mini-panel .icon-bubble{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 12px 24px rgba(231,53,44,.22);
    }
    .cta-bar{
      grid-column:1/-1;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:16px 18px;
    }
    .cta-bar strong{font-size:17px}
    .cta-bar span{color:var(--muted);font-size:14px}

    .countdown-wrap{
      background:linear-gradient(180deg,#fff 0%,#fff7f2 100%);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .count-grid{
      display:grid;
      grid-template-columns:1fr .92fr;
      gap:20px;
      align-items:stretch;
    }
    .count-card,.preview-card{
      border-radius:var(--radius-xl);
      border:1px solid var(--line-red);
      background:#fff;
      box-shadow:var(--shadow);
      padding:26px;
    }
    .count-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:18px;
    }
    .count-title h2{font-size:28px;margin:0;font-weight:900}
    .timer{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:18px;
    }
    .time-box{
      text-align:center;
      padding:18px 8px;
      border-radius:18px;
      background:linear-gradient(180deg,#fff7f1,#fff);
      border:1px solid rgba(231,53,44,.12);
    }
    .time-box strong{
      display:block;
      color:var(--red);
      font-size:34px;
      line-height:1;
      font-weight:950;
      font-variant-numeric:tabular-nums;
    }
    .time-box span{
      color:var(--muted);
      font-weight:800;
      font-size:13px;
    }
    .preview-list{
      display:grid;
      gap:12px;
      margin:18px 0 0;
    }
    .preview-row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      border-radius:16px;
      background:#fff8f3;
      padding:13px 14px;
      border:1px solid rgba(231,53,44,.10);
    }
    .preview-row small{color:var(--muted);display:block}
    .preview-row b{font-weight:850}
    .price-like{
      color:var(--red);
      font-size:28px;
      font-weight:950;
      letter-spacing:-.04em;
    }

    .coupon-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .coupon{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line-red);
      box-shadow:var(--shadow);
      padding:22px;
      min-height:176px;
    }
    .coupon:before,.coupon:after{
      content:"";
      position:absolute;
      top:50%;
      width:20px;height:20px;
      border-radius:50%;
      background:var(--paper);
      border:1px solid var(--line);
    }
    .coupon:before{left:-10px}
    .coupon:after{right:-10px}
    .coupon:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .coupon .num{
      color:var(--red);
      font-size:34px;
      font-weight:950;
      line-height:1;
    }
    .coupon h3{margin:12px 0 8px;font-size:19px;font-weight:900}
    .coupon p{margin:0;color:var(--muted);font-size:14px;line-height:1.65}

    .cards-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .flow-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line-red);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .flow-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}
    .cover{
      position:relative;
      height:156px;
      overflow:hidden;
      background:
        radial-gradient(circle at 24% 25%,rgba(255,255,255,.62),transparent 16%),
        radial-gradient(circle at 74% 34%,rgba(255,176,32,.56),transparent 20%),
        linear-gradient(135deg,#fff1e7,#ffb15c 40%,#ee3d2e 100%);
    }
    .cover:after{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.38);
      background:linear-gradient(135deg,rgba(255,255,255,.28),rgba(255,255,255,.06));
      transform:rotate(-3deg);
      transition:var(--ease);
    }
    .flow-card:hover .cover:after{transform:scale(1.04) rotate(-2deg)}
    .corner{
      position:absolute;
      top:14px;left:14px;
      z-index:2;
    }
    .flow-body{padding:20px}
    .flow-body h3{
      margin:0 0 9px;
      font-size:20px;
      font-weight:900;
      line-height:1.28;
    }
    .flow-body p{
      color:var(--muted);
      margin:0 0 14px;
      font-size:15px;
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
    .card-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-top:14px;
      border-top:1px dashed rgba(231,53,44,.16);
    }
    .card-foot small{color:var(--soft);font-weight:750}

    .rule-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:start;
    }
    .rule-panel{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,#2b1712,#4a2116);
      color:#fff;
      padding:30px;
      box-shadow:0 18px 44px rgba(33,23,20,.18);
    }
    .rule-panel p{color:rgba(255,255,255,.80);margin:10px 0 0}
    .rule-list{
      display:grid;
      gap:14px;
    }
    .rule-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .rule-index{
      width:38px;height:38px;flex:0 0 38px;
      display:grid;place-items:center;
      border-radius:14px;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      font-weight:950;
    }
    .rule-item h3{margin:0 0 4px;font-size:18px;font-weight:900}
    .rule-item p{margin:0;color:var(--muted);font-size:15px}

    .subscribe{
      overflow:hidden;
      border-radius:30px;
      background:
        radial-gradient(circle at 8% 20%,rgba(255,255,255,.25),transparent 22%),
        linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      padding:34px;
      box-shadow:0 22px 56px rgba(231,53,44,.24);
    }
    .subscribe-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:center;
    }
    .subscribe h2{font-size:30px;line-height:1.2;margin:0 0 10px;font-weight:950}
    .subscribe p{color:rgba(255,255,255,.86);margin:0}
    .subscribe-form{
      display:grid;
      grid-template-columns:1fr 150px 150px auto;
      gap:10px;
      align-items:center;
      padding:10px;
      border-radius:20px;
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.24);
    }
    .subscribe-form .btn-main{
      background:#fff;
      color:var(--red);
      box-shadow:0 10px 22px rgba(76,22,13,.16);
    }
    .subscribe-note{font-size:13px!important;margin-top:10px!important;color:rgba(255,255,255,.74)!important}

    .guarantee{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      margin-top:24px;
    }
    .guard{
      display:flex;
      align-items:center;
      gap:12px;
      padding:16px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      box-shadow:var(--shadow);
    }
    .guard i{
      width:40px;height:40px;
      display:grid;place-items:center;
      border-radius:14px;
      color:var(--red);
      background:#fff1e8;
      font-size:18px;
    }
    .guard:nth-child(4) i{color:var(--green);background:#edf9f2}
    .guard strong{display:block;font-weight:900}
    .guard span{display:block;color:var(--muted);font-size:13px}

    .timeline{
      display:grid;
      gap:16px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:150px 1fr;
      gap:18px;
      align-items:stretch;
    }
    .time-node{
      border-radius:20px;
      background:#fff3ea;
      border:1px solid rgba(231,53,44,.13);
      padding:18px;
      color:var(--red);
      font-weight:950;
      text-align:center;
    }
    .entry-card{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .entry-card h3{margin:0 0 6px;font-size:19px;font-weight:900}
    .entry-card p{margin:0;color:var(--muted);font-size:15px}

    .news-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
    }
    .news-list,.recommend-box{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .news-list ul{list-style:none;margin:0;padding:0}
    .news-list li{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding:15px 4px;
      border-bottom:1px dashed rgba(231,53,44,.14);
    }
    .news-list li:last-child{border-bottom:none}
    .news-list a{font-weight:850;color:var(--ink)}
    .news-list a:hover{color:var(--red)}
    .news-list time{color:var(--soft);font-size:13px;white-space:nowrap}
    .recommend-item{
      display:flex;
      gap:12px;
      padding:13px;
      border-radius:17px;
      background:#fff8f3;
      border:1px solid rgba(231,53,44,.10);
      margin-top:12px;
    }
    .recommend-icon{
      width:40px;height:40px;flex:0 0 40px;
      display:grid;place-items:center;
      border-radius:14px;
      color:#fff;background:linear-gradient(135deg,var(--red),var(--orange));
    }
    .recommend-item strong{display:block}
    .recommend-item span{display:block;color:var(--muted);font-size:13px;line-height:1.55}

    .faq-wrap .accordion{
      background:transparent;
    }
    .faq-wrap .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 10px 24px rgba(231,53,44,.07);
    }
    .faq-wrap .accordion-title{
      border:none;
      color:var(--ink);
      font-weight:900;
      font-size:16px;
      padding:18px 48px 18px 18px;
    }
    .faq-wrap .accordion-title:hover,.faq-wrap .accordion-title:focus{
      background:#fff3ec;
      color:var(--red);
    }
    .faq-wrap .accordion-content{
      border:none;
      color:var(--muted);
      padding:0 18px 18px;
      line-height:1.75;
    }

    .final-cta{
      border-radius:30px;
      background:
        linear-gradient(135deg,rgba(231,53,44,.96),rgba(255,138,0,.92)),
        radial-gradient(circle at 88% 14%,rgba(255,255,255,.34),transparent 24%);
      color:#fff;
      padding:38px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
      box-shadow:0 24px 58px rgba(231,53,44,.23);
    }
    .final-cta h2{font-size:31px;line-height:1.2;margin:0 0 8px;font-weight:950}
    .final-cta p{margin:0;color:rgba(255,255,255,.84);max-width:700px}

    .site-footer{
      background:var(--brown);
      color:#f8eee7;
      padding:48px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      padding-bottom:30px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:20px;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-brand .logo-mark{width:36px;height:36px}
    .footer-grid p{color:rgba(255,255,255,.68);margin:0;max-width:560px}
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links strong{color:#fff;margin-bottom:4px}
    .footer-links a{color:rgba(255,255,255,.70)}
    .footer-links a:hover{color:#fff}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.55);
      font-size:13px;
      padding-top:22px;
    }
    .mobile-cta{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:60;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 16px 42px rgba(33,23,20,.18);
      border-radius:18px;
      padding:10px;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .mobile-cta span{font-size:13px;font-weight:850;color:var(--ink)}
    .mobile-close{
      width:32px;height:32px;border-radius:50%;
      border:none;background:#fff0e9;color:var(--red);
      cursor:pointer;
    }

    @media (max-width:1024px){
      .bento,.count-grid,.rule-wrap,.subscribe-grid,.news-layout{grid-template-columns:1fr}
      .hero-main{min-height:360px}
      .coupon-grid{grid-template-columns:repeat(2,1fr)}
      .cards-grid{grid-template-columns:repeat(2,1fr)}
      .subscribe-form{grid-template-columns:1fr 1fr}
      .guarantee{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,var(--container))}
      .section{padding:48px 0}
      .brand-row{min-height:62px}
      .logo{font-size:16px}
      .top-actions .top-pill:nth-child(2){display:none}
      .hero{padding:24px 0 46px}
      .hero-main{padding:28px 22px;border-radius:22px}
      .hero-main:after{right:-58px;top:18px;font-size:12px}
      .hero-desc{font-size:15px}
      .data-strip{grid-template-columns:1fr}
      .cta-bar{flex-direction:column;align-items:flex-start}
      .timer{grid-template-columns:repeat(2,1fr)}
      .cards-grid,.coupon-grid{grid-template-columns:1fr}
      .section-head{display:block}
      .subscribe{padding:24px;border-radius:24px}
      .subscribe-form{grid-template-columns:1fr}
      .guarantee{grid-template-columns:1fr 1fr}
      .timeline-item{grid-template-columns:1fr}
      .entry-card{display:block}
      .entry-card .btn-sub{margin-top:14px;width:100%}
      .news-list li{display:block}
      .news-list time{display:block;margin-top:4px}
      .final-cta{display:block;padding:28px;border-radius:24px}
      .final-cta .btn-main{margin-top:18px;width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
      .mobile-cta{display:flex}
    }
    @media (max-width:520px){
      .top-actions .top-pill{padding:8px 10px;font-size:12px}
      .channel-nav a{padding:8px 12px;font-size:13px}
      .hero h1{font-size:28px}
      .count-title{display:block}
      .price-like{font-size:24px}
      .guarantee{grid-template-columns:1fr}
      .btn-main,.btn-sub,.btn-light{width:100%}
      .hero-cta .btn-light,.hero-cta .btn-main{width:100%}
    }

/* roulang page: category1 */
:root{
      --red:#E7352C;
      --red-2:#FF3B30;
      --orange:#FF8A00;
      --orange-2:#FFB020;
      --ink:#1F1F1F;
      --muted:#6B6B6B;
      --soft:#9A9A9A;
      --cream:#FFFCF8;
      --warm:#FFF7F2;
      --line:#F1DDD2;
      --line-red:rgba(231,53,44,.14);
      --green:#19A05E;
      --brown:#211714;
      --card:#FFFFFF;
      --shadow:0 14px 38px rgba(231,53,44,.10);
      --shadow-hover:0 20px 52px rgba(231,53,44,.18);
      --radius:22px;
      --radius-sm:14px;
      --radius-pill:999px;
      --container:1180px;
      --focus:0 0 0 4px rgba(255,138,0,.22);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 6% 8%, rgba(255,138,0,.13), transparent 25%),
        radial-gradient(circle at 88% 12%, rgba(231,53,44,.12), transparent 28%),
        linear-gradient(180deg,var(--cream),var(--warm) 48%,#fff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.2s ease}
    a:hover,a:focus{color:var(--red)}
    img{max-width:100%;height:auto;display:block}
    button,input,select{font:inherit}
    button,.button,a{outline:none}
    button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible{
      box-shadow:var(--focus);
      outline:none;
    }
    .site-container{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,252,248,.94);
      backdrop-filter:saturate(160%) blur(12px);
      border-bottom:1px solid var(--line);
      box-shadow:0 10px 30px rgba(33,23,20,.04);
    }
    .brand-row{
      min-height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .logo,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:850;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .logo strong{
      font-size:20px;
      background:linear-gradient(90deg,var(--red),var(--orange));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .logo-mark{
      width:38px;
      height:38px;
      border-radius:13px;
      display:inline-grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 10px 24px rgba(231,53,44,.25);
      flex:0 0 auto;
    }
    .top-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .top-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 13px;
      border:1px solid var(--line-red);
      border-radius:var(--radius-pill);
      color:var(--muted);
      background:#fff;
      font-size:14px;
      font-weight:700;
    }
    .top-pill:hover{
      transform:translateY(-1px);
      background:#FFF1EA;
      color:var(--red);
      box-shadow:0 10px 20px rgba(231,53,44,.08);
    }
    .channel-row{
      min-height:50px;
      border-top:1px solid rgba(241,221,210,.72);
      display:flex;
      align-items:center;
      overflow:hidden;
    }
    .channel-nav{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:8px 0;
      scrollbar-width:none;
      width:100%;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      white-space:nowrap;
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 15px;
      border-radius:var(--radius-pill);
      font-weight:800;
      color:var(--muted);
      background:rgba(255,255,255,.72);
      border:1px solid transparent;
    }
    .channel-nav a:hover{
      color:var(--red);
      border-color:var(--line-red);
      background:#fff;
    }
    .channel-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 10px 22px rgba(231,53,44,.20);
    }
    main{display:block}
    .section{
      padding:72px 0;
      position:relative;
    }
    .section-tight{padding:46px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      color:var(--red);
      background:#FFF0E9;
      border:1px solid var(--line-red);
      font-weight:850;
      font-size:14px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(28px,4.2vw,44px);
      line-height:1.15;
      letter-spacing:-.04em;
      font-weight:900;
      margin-bottom:16px;
    }
    h2{
      font-size:clamp(24px,3vw,31px);
      line-height:1.25;
      font-weight:880;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    h3{
      font-size:19px;
      line-height:1.35;
      font-weight:820;
      margin-bottom:8px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:17px;max-width:760px}
    .btn-row{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn-primary,.btn-secondary,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:15px;
      font-weight:850;
      cursor:pointer;
      border:1px solid transparent;
      transition:.22s ease;
      line-height:1.2;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 13px 28px rgba(231,53,44,.24);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(231,53,44,.30);
      filter:saturate(1.07);
    }
    .btn-secondary{
      color:var(--red);
      background:#fff;
      border-color:rgba(231,53,44,.28);
    }
    .btn-secondary:hover{
      color:var(--red);
      background:#FFF1EA;
      transform:translateY(-2px);
      box-shadow:0 12px 24px rgba(231,53,44,.10);
    }
    .btn-ghost{
      color:var(--muted);
      background:#FFF9F4;
      border-color:var(--line);
    }
    .btn-ghost:hover{color:var(--red);background:#fff}
    .category-hero{
      padding:52px 0 34px;
      background:
        linear-gradient(135deg,rgba(231,53,44,.96),rgba(255,138,0,.88)),
        radial-gradient(circle at 12% 20%,rgba(255,255,255,.35),transparent 28%);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .category-hero:before,.category-hero:after{
      content:"";
      position:absolute;
      border-radius:36px;
      background:rgba(255,255,255,.14);
      transform:rotate(-13deg);
    }
    .category-hero:before{width:220px;height:90px;right:8%;top:30px}
    .category-hero:after{width:160px;height:160px;right:20%;bottom:-80px}
    .hero-inner{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
      gap:28px;
      align-items:end;
    }
    .category-hero .eyebrow{
      background:rgba(255,255,255,.18);
      border-color:rgba(255,255,255,.32);
      color:#fff;
      margin-bottom:16px;
    }
    .category-hero p{color:rgba(255,255,255,.88)}
    .hero-panel{
      background:rgba(255,255,255,.96);
      color:var(--ink);
      border-radius:24px;
      padding:18px;
      box-shadow:0 18px 50px rgba(120,32,16,.25);
    }
    .hero-panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
      font-weight:880;
    }
    .flash-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      font-size:13px;
      font-weight:850;
    }
    .mini-count{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:8px;
      margin:12px 0 16px;
    }
    .count-box{
      background:#FFF3EB;
      border:1px solid var(--line-red);
      border-radius:16px;
      padding:10px 6px;
      text-align:center;
    }
    .count-box strong{
      display:block;
      font-size:22px;
      line-height:1;
      font-weight:950;
      color:var(--red);
      letter-spacing:-.03em;
    }
    .count-box span{
      display:block;
      margin-top:5px;
      color:var(--muted);
      font-size:12px;
      font-weight:750;
    }
    .hero-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background:#FFFAF6;
      border:1px dashed var(--line-red);
      color:var(--muted);
      font-size:14px;
    }
    .filter-wrap{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:18px;
      margin-top:-28px;
      position:relative;
      z-index:3;
    }
    .filter-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .filter-title{
      display:flex;
      align-items:center;
      gap:9px;
      font-weight:900;
    }
    .tag-scroll{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding-bottom:3px;
      scrollbar-width:none;
    }
    .tag-scroll::-webkit-scrollbar{display:none}
    .filter-tag,.content-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      white-space:nowrap;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:#FFF7F2;
      color:var(--muted);
      border:1px solid var(--line);
      font-weight:790;
      font-size:14px;
      transition:.2s ease;
    }
    .filter-tag:hover,.content-tag:hover{color:var(--red);border-color:var(--line-red);background:#fff}
    .filter-tag.active{
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      border-color:transparent;
    }
    .select-line{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:14px;
    }
    .select-line select{
      margin:0;
      width:auto;
      min-width:160px;
      border-radius:14px;
      border:1px solid var(--line);
      background-color:#fff;
      color:var(--ink);
      font-weight:750;
      height:44px;
      box-shadow:none;
    }
    .main-layout{
      display:grid;
      grid-template-columns:minmax(0,8fr) minmax(300px,4fr);
      gap:28px;
      align-items:start;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:22px;
    }
    .section-head p{max-width:680px;margin-bottom:0}
    .feed-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .entry-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:.24s ease;
      position:relative;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(231,53,44,.23);
    }
    .entry-card.featured{
      grid-column:1 / -1;
      display:grid;
      grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
      align-items:stretch;
      min-height:280px;
    }
    .cover{
      min-height:172px;
      background:
        radial-gradient(circle at 18% 24%,rgba(255,255,255,.62),transparent 18%),
        radial-gradient(circle at 80% 18%,rgba(255,176,32,.45),transparent 22%),
        linear-gradient(135deg,#FFEBDE,#FFE0C2 45%,#FFD2CB);
      position:relative;
      overflow:hidden;
    }
    .cover:before{
      content:"";
      position:absolute;
      inset:22px;
      border-radius:26px;
      border:1px solid rgba(231,53,44,.16);
      background:linear-gradient(135deg,rgba(255,255,255,.32),rgba(255,255,255,.06));
      transform:rotate(-4deg);
    }
    .cover:after{
      content:"入口";
      position:absolute;
      right:16px;
      bottom:15px;
      color:rgba(231,53,44,.18);
      font-size:48px;
      font-weight:950;
      letter-spacing:-.08em;
    }
    .corner{
      position:absolute;
      left:14px;
      top:14px;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      font-size:13px;
      font-weight:880;
      z-index:2;
    }
    .entry-body{padding:18px}
    .entry-body p{font-size:15px;margin-bottom:14px}
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:12px 0 16px;
    }
    .small-tag{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:var(--radius-pill);
      background:#FFF2EA;
      color:var(--red);
      font-size:12px;
      font-weight:820;
      border:1px solid rgba(231,53,44,.12);
    }
    .card-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-top:1px solid rgba(241,221,210,.72);
      padding-top:14px;
      color:var(--soft);
      font-size:13px;
      font-weight:750;
    }
    .text-link{
      color:var(--red);
      font-weight:900;
      display:inline-flex;
      align-items:center;
      gap:7px;
    }
    .text-link:hover{gap:10px;color:var(--orange)}
    .sidebar{
      position:sticky;
      top:138px;
      display:grid;
      gap:16px;
    }
    .side-card,.guarantee,.subscribe-panel,.faq-wrap,.rules-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .side-card{padding:18px}
    .side-card h3{display:flex;align-items:center;gap:8px}
    .notice-list{
      display:grid;
      gap:10px;
      margin:14px 0 0;
    }
    .notice-item{
      display:flex;
      gap:10px;
      padding:11px;
      border-radius:16px;
      background:#FFF8F3;
      border:1px solid rgba(241,221,210,.8);
    }
    .notice-item i{
      width:28px;height:28px;
      border-radius:10px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--red),var(--orange));
      flex:0 0 auto;
    }
    .notice-item strong{display:block;font-size:14px;line-height:1.3}
    .notice-item span{display:block;color:var(--muted);font-size:13px;margin-top:2px}
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:12px;
    }
    .tag-cloud a{
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:#FFF3EB;
      color:var(--muted);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:800;
    }
    .tag-cloud a:hover{background:linear-gradient(135deg,var(--red),var(--orange));color:#fff;border-color:transparent}
    .guarantee{
      padding:18px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
    }
    .guarantee.vertical{
      grid-template-columns:1fr;
    }
    .guarantee-item{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px;
      border-radius:17px;
      background:#FFF8F3;
      border:1px solid rgba(241,221,210,.72);
    }
    .guarantee-item i{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:var(--red);
      background:#fff;
      border:1px solid var(--line-red);
      flex:0 0 auto;
    }
    .guarantee-item.green i{color:var(--green);border-color:rgba(25,160,94,.18)}
    .guarantee-item strong{display:block;font-size:14px;line-height:1.25}
    .guarantee-item span{display:block;color:var(--muted);font-size:12px;margin-top:3px;line-height:1.45}
    .subscribe-panel{
      overflow:hidden;
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      padding:0;
    }
    .subscribe-inner{
      display:grid;
      grid-template-columns:minmax(0,.8fr) minmax(320px,1.2fr);
      gap:20px;
      align-items:center;
      padding:28px;
      position:relative;
    }
    .subscribe-inner:after{
      content:"";
      position:absolute;
      right:-40px;
      top:-55px;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(255,255,255,.16);
    }
    .subscribe-panel h2,.subscribe-panel p{color:#fff}
    .subscribe-form{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1.1fr .8fr auto;
      gap:10px;
      align-items:center;
    }
    .subscribe-form input,.subscribe-form select{
      height:48px;
      margin:0;
      border:0;
      border-radius:15px;
      background:#fff;
      color:var(--ink);
      font-weight:760;
      box-shadow:none;
    }
    .subscribe-form button{
      height:48px;
      border:0;
      border-radius:15px;
      background:#211714;
      color:#fff;
      font-weight:900;
      padding:0 18px;
      cursor:pointer;
      transition:.22s ease;
    }
    .subscribe-form button:hover{transform:translateY(-2px);background:#000}
    .privacy-tip{
      grid-column:1 / -1;
      color:rgba(255,255,255,.88);
      font-size:13px;
      margin-top:2px;
    }
    .timeline{
      display:grid;
      gap:14px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:126px minmax(0,1fr);
      gap:16px;
      align-items:start;
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:16px;
      box-shadow:0 10px 28px rgba(231,53,44,.07);
      transition:.2s ease;
    }
    .timeline-item:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
    .time-node{
      border-radius:17px;
      padding:12px;
      background:#FFF3EB;
      border:1px solid var(--line-red);
      text-align:center;
    }
    .time-node strong{
      display:block;
      color:var(--red);
      font-size:26px;
      line-height:1;
      font-weight:950;
    }
    .time-node span{font-size:13px;color:var(--muted);font-weight:800}
    .timeline-content h3{margin-bottom:4px}
    .timeline-content p{font-size:15px;margin-bottom:10px}
    .rules-card{
      padding:22px;
      background:
        linear-gradient(135deg,rgba(255,252,248,.98),rgba(255,247,242,.98)),
        radial-gradient(circle at 95% 10%,rgba(25,160,94,.10),transparent 24%);
    }
    .rules-list{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .rules-list li{
      padding:14px;
      border-radius:17px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--muted);
      font-weight:750;
    }
    .rules-list i{color:var(--green);margin-right:7px}
    .faq-wrap{padding:8px 18px 18px}
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border-bottom:1px solid var(--line);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;
      color:var(--ink);
      font-weight:880;
      font-size:16px;
      padding:18px 34px 18px 0;
      background:transparent!important;
    }
    .accordion-title:hover,.accordion-title:focus{color:var(--red);background:transparent!important}
    .accordion-title:before{color:var(--red);font-weight:900}
    .accordion-content{
      border:0!important;
      background:transparent!important;
      padding:0 0 18px;
      color:var(--muted);
      line-height:1.75;
    }
    .load-more{
      margin-top:28px;
      text-align:center;
    }
    .site-footer{
      margin-top:34px;
      background:var(--brown);
      color:#fff;
      padding:52px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr .75fr .75fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      color:#fff;
      font-size:19px;
      margin-bottom:12px;
      font-weight:900;
    }
    .site-footer p{
      color:rgba(255,255,255,.72);
      max-width:560px;
      margin-bottom:0;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links strong{
      color:#fff;
      margin-bottom:6px;
      font-size:15px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.58);
      font-size:13px;
    }
    .mobile-cta{
      position:fixed;
      left:14px;
      right:14px;
      bottom:14px;
      z-index:40;
      display:none;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 10px 10px 14px;
      border-radius:18px;
      background:rgba(33,23,20,.94);
      color:#fff;
      box-shadow:0 18px 42px rgba(0,0,0,.22);
    }
    .mobile-cta span{font-weight:850;font-size:14px}
    .mobile-cta a{
      padding:8px 11px;
      border-radius:13px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      font-size:13px;
      font-weight:900;
    }
    .mobile-cta button{
      width:28px;height:28px;border:0;border-radius:50%;
      background:rgba(255,255,255,.14);
      color:#fff;
      cursor:pointer;
    }
    @media (max-width:1024px){
      .hero-inner,.main-layout,.subscribe-inner{
        grid-template-columns:1fr;
      }
      .sidebar{position:static;top:auto}
      .guarantee.vertical{grid-template-columns:repeat(2,1fr)}
      .section{padding:58px 0}
    }
    @media (max-width:768px){
      .site-container{width:min(calc(100% - 24px),var(--container))}
      .brand-row{min-height:64px}
      .logo strong{font-size:17px}
      .top-actions .top-pill:nth-child(2){display:none}
      .channel-nav a{padding:8px 12px;font-size:14px}
      .category-hero{padding:38px 0 30px}
      .filter-wrap{margin-top:-16px;border-radius:20px}
      .filter-head{align-items:flex-start;flex-direction:column}
      .select-line select{width:100%;min-width:0}
      .feed-grid{grid-template-columns:1fr}
      .entry-card.featured{grid-column:auto;grid-template-columns:1fr}
      .guarantee,.guarantee.vertical{grid-template-columns:repeat(2,1fr)}
      .subscribe-form{grid-template-columns:1fr}
      .rules-list{grid-template-columns:1fr}
      .timeline-item{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .mobile-cta{display:flex}
      body{padding-bottom:72px}
    }
    @media (max-width:520px){
      .top-actions{display:none}
      .mini-count{grid-template-columns:repeat(4,1fr);gap:6px}
      .count-box strong{font-size:18px}
      .btn-row{display:grid;grid-template-columns:1fr}
      .btn-primary,.btn-secondary,.btn-ghost{width:100%}
      .guarantee,.guarantee.vertical{grid-template-columns:1fr}
      .section{padding:46px 0}
      .subscribe-inner{padding:22px}
      .footer-brand .logo-mark{width:34px;height:34px}
    }
