/* roulang page: index */
:root{
      --green:#168A45;
      --green-2:#159447;
      --cyan:#22D3A6;
      --orange:#FF8A3D;
      --ink:#14221A;
      --muted:#5F6F66;
      --soft:#F5F8F2;
      --soft-2:#F7FAF4;
      --card:#FFFFFF;
      --card-2:#FBFDF8;
      --line:#DCE8DD;
      --deep:#10251A;
      --deep-2:#183826;
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 18px 45px rgba(16,37,26,.08);
      --shadow-strong:0 26px 70px rgba(16,37,26,.14);
      --max:1220px;
      --nav-h:76px;
      --ease:all .22s 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 10% 0%, rgba(34,211,166,.13), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(255,138,61,.09), transparent 25%),
        linear-gradient(135deg, rgba(22,138,69,.035) 25%, transparent 25%) 0 0/26px 26px,
        var(--soft);
      line-height:1.75;
      overflow-x:hidden;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--green)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(34,211,166,.45);outline-offset:3px}
    .grid-container{max-width:var(--max)}
    .section{padding:92px 0}
    .section-tight{padding:68px 0}
    .section-head{max-width:760px;margin:0 auto 42px;text-align:center}
    .section-kicker,.eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border-radius:999px;
      color:var(--green);background:rgba(22,138,69,.09);
      border:1px solid rgba(22,138,69,.15);
      font-size:13px;font-weight:800;letter-spacing:.02em;
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{font-size:clamp(38px,5.2vw,64px);line-height:1.12;font-weight:850;letter-spacing:-.04em;margin-bottom:22px}
    h2{font-size:clamp(28px,3.4vw,40px);line-height:1.2;font-weight:820;letter-spacing:-.03em;margin-bottom:16px}
    h3{font-size:22px;line-height:1.35;font-weight:760;margin-bottom:10px}
    p{color:var(--muted);font-size:16.5px}
    .lead{font-size:18px;line-height:1.85;color:#405046;max-width:680px}
    .site-header{
      position:sticky;top:0;z-index:1000;height:var(--nav-h);
      background:rgba(247,250,244,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(22,138,69,.12);
      transition:var(--ease);
    }
    .site-header.scrolled{box-shadow:0 10px 30px rgba(16,37,26,.08)}
    .nav-wrap{height:var(--nav-h);display:flex;align-items:center;justify-content:space-between;gap:22px}
    .brand{display:flex;align-items:center;gap:12px;min-width:max-content}
    .brand-mark{
      width:44px;height:44px;border-radius:15px;
      background:linear-gradient(145deg,var(--green),#0c6d35);
      position:relative;box-shadow:0 12px 24px rgba(22,138,69,.24);
      overflow:hidden;
    }
    .brand-mark:before{
      content:"";position:absolute;inset:10px 7px;border:2px solid rgba(255,255,255,.88);border-radius:12px;
    }
    .brand-mark:after{
      content:"";position:absolute;left:50%;top:6px;bottom:6px;width:2px;background:rgba(255,255,255,.7);transform:translateX(-50%);
      box-shadow:0 16px 0 rgba(255,255,255,.45);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.1}
    .brand-name{font-weight:850;font-size:18px;color:var(--ink);letter-spacing:-.02em}
    .brand-sub{font-size:12px;color:var(--muted);font-weight:650;margin-top:4px}
    .desktop-nav{display:flex;align-items:center;gap:5px;margin-left:auto}
    .desktop-nav a{
      padding:10px 14px;border-radius:999px;font-weight:750;font-size:14px;color:#314239;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{background:rgba(22,138,69,.08);border-color:rgba(22,138,69,.13);color:var(--green)}
    .desktop-nav a.active{background:var(--green);color:#fff;box-shadow:0 10px 24px rgba(22,138,69,.22)}
    .nav-actions{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;width:44px;height:44px;border:none;border-radius:14px;background:#fff;border:1px solid var(--line);
      color:var(--ink);font-size:22px;line-height:1;box-shadow:0 8px 18px rgba(16,37,26,.06)
    }
    .mobile-drawer{
      display:none;position:absolute;left:16px;right:16px;top:calc(var(--nav-h) + 10px);
      background:#fff;border:1px solid rgba(22,138,69,.14);border-radius:22px;box-shadow:var(--shadow-strong);padding:12px;z-index:1001;
    }
    .mobile-drawer.open{display:block}
    .mobile-drawer a{display:block;padding:13px 14px;border-radius:14px;font-weight:760;color:#314239}
    .mobile-drawer a.active,.mobile-drawer a:hover{background:rgba(22,138,69,.09);color:var(--green)}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      border-radius:999px;padding:13px 20px;font-weight:820;font-size:15px;
      border:1px solid transparent;transition:var(--ease);line-height:1.1;white-space:nowrap;
    }
    .btn-primary{background:var(--green);color:#fff;box-shadow:0 14px 28px rgba(22,138,69,.22)}
    .btn-primary:hover{background:#0f773b;color:#fff;transform:translateY(-2px);box-shadow:0 18px 34px rgba(22,138,69,.28)}
    .btn-secondary{background:#fff;color:var(--green);border-color:rgba(22,138,69,.22)}
    .btn-secondary:hover{background:rgba(22,138,69,.08);color:#0f773b;transform:translateY(-2px)}
    .btn-dark{background:var(--deep);color:#fff}
    .btn-dark:hover{background:#0a1c13;color:#fff;transform:translateY(-2px)}
    .text-link{font-weight:820;color:var(--green);display:inline-flex;align-items:center;gap:7px}
    .text-link span{transition:var(--ease)}
    .text-link:hover span{transform:translateX(4px)}
    .hero{
      position:relative;overflow:hidden;padding:92px 0 70px;
      background:
        linear-gradient(90deg, rgba(245,248,242,.95), rgba(245,248,242,.74)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }
    .hero:before{
      content:"";position:absolute;inset:auto -10% -30% -10%;height:260px;
      background:radial-gradient(ellipse at center, rgba(34,211,166,.18), transparent 62%);
      pointer-events:none;
    }
    .hero-copy{position:relative;z-index:1;padding-top:20px}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 26px}
    .trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
    .mini-pill{
      display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border-radius:999px;
      background:rgba(255,255,255,.78);border:1px solid rgba(22,138,69,.13);
      color:#405046;font-weight:750;font-size:13px;
    }
    .score-console{
      position:relative;z-index:1;background:linear-gradient(155deg,var(--deep),#0b1b13 62%,#143b27);
      border-radius:32px;padding:24px;color:#eafff6;box-shadow:0 30px 80px rgba(16,37,26,.32);
      border:1px solid rgba(34,211,166,.22);overflow:hidden;
    }
    .score-console:before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(rgba(34,211,166,.08) 1px, transparent 1px) 0 0/100% 34px,
        radial-gradient(circle at 88% 12%, rgba(34,211,166,.2), transparent 28%);
      pointer-events:none;
    }
    .console-top,.console-body,.console-table{position:relative;z-index:1}
    .console-top{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:18px}
    .live-dot{display:inline-flex;align-items:center;gap:8px;color:#cffff2;font-size:13px;font-weight:800}
    .live-dot:before{content:"";width:9px;height:9px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 6px rgba(255,138,61,.16)}
    .console-chip{padding:6px 10px;border-radius:999px;background:rgba(34,211,166,.13);border:1px solid rgba(34,211,166,.25);font-size:12px;font-weight:800;color:#d8fff4}
    .match-card{
      background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:22px;padding:18px;margin-bottom:16px;
    }
    .league-line{display:flex;align-items:center;justify-content:space-between;color:#bfe6d7;font-weight:750;font-size:13px;margin-bottom:12px}
    .teams-score{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:13px}
    .team{font-weight:850;font-size:17px;color:#fff}
    .team.right{text-align:right}
    .score-number{
      font-variant-numeric:tabular-nums;font-size:42px;line-height:1;font-weight:900;color:var(--cyan);
      letter-spacing:.03em;text-shadow:0 0 18px rgba(34,211,166,.35)
    }
    .event-list{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}
    .event-mini{padding:12px;border-radius:16px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.1)}
    .event-mini strong{display:block;color:#fff;font-size:14px;margin-bottom:4px}
    .event-mini small{color:#bfe6d7;font-weight:650}
    .console-table{
      background:rgba(255,255,255,.05);border-radius:18px;padding:14px;border:1px solid rgba(255,255,255,.1);
    }
    .rank-row{display:grid;grid-template-columns:28px 1fr auto;gap:8px;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:13px}
    .rank-row:last-child{border-bottom:none}
    .rank-row b{color:#fff}.rank-row span{color:#cbe9dd}.rank-row em{font-style:normal;color:var(--cyan);font-weight:850}
    .ticker{
      margin-top:-28px;position:relative;z-index:3;
    }
    .ticker-card{
      background:#fff;border:1px solid rgba(22,138,69,.13);border-radius:24px;box-shadow:var(--shadow);
      padding:18px;overflow:hidden;
    }
    .ticker-line{display:flex;gap:12px;overflow:auto;padding-bottom:3px;scrollbar-width:thin}
    .status-card{
      min-width:232px;border-radius:18px;border:1px solid rgba(22,138,69,.12);background:var(--card-2);padding:14px;transition:var(--ease)
    }
    .status-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(16,37,26,.09);border-color:rgba(22,138,69,.28)}
    .status-top{display:flex;justify-content:space-between;gap:8px;margin-bottom:10px;font-size:12px;font-weight:820;color:var(--muted)}
    .badge{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;font-size:12px;font-weight:850}
    .badge.live{background:rgba(255,138,61,.14);color:#b95312}
    .badge.next{background:rgba(95,111,102,.12);color:#52645a}
    .badge.done{background:rgba(22,138,69,.12);color:var(--green)}
    .badge.hot{background:rgba(34,211,166,.16);color:#08785d}
    .status-teams{display:flex;align-items:center;justify-content:space-between;gap:8px;font-weight:850;color:var(--ink)}
    .small-score{font-variant-numeric:tabular-nums;color:var(--green);font-size:22px;font-weight:900}
    .feature-mosaic{align-items:stretch}
    .card{
      background:var(--card);border:1px solid rgba(22,138,69,.13);border-radius:24px;box-shadow:var(--shadow);
      padding:26px;transition:var(--ease);height:100%;
    }
    .card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong);border-color:rgba(22,138,69,.3)}
    .feature-large{min-height:360px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;position:relative}
    .feature-large:after{
      content:"";position:absolute;right:-60px;bottom:-60px;width:190px;height:190px;border-radius:50%;
      background:radial-gradient(circle, rgba(34,211,166,.18), transparent 70%);
    }
    .feature-icon{
      width:48px;height:48px;border-radius:16px;background:rgba(22,138,69,.1);color:var(--green);
      display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px;
    }
    .feature-img{border-radius:22px;overflow:hidden;margin-top:18px;aspect-ratio:16/9}
    .feature-img img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
    .card:hover .feature-img img{transform:scale(1.04)}
    .timeline{position:relative;padding-left:22px;margin-top:22px}
    .timeline:before{content:"";position:absolute;left:5px;top:4px;bottom:8px;width:2px;background:rgba(22,138,69,.18)}
    .timeline-item{position:relative;margin-bottom:18px}
    .timeline-item:before{content:"";position:absolute;left:-22px;top:7px;width:12px;height:12px;border-radius:50%;background:var(--cyan);border:3px solid #e9fff7}
    .timeline-item strong{display:block;color:var(--ink);font-size:16px;margin-bottom:3px}
    .timeline-item span{color:var(--muted);font-size:14px}
    .scenario{
      background:linear-gradient(180deg,#fff,var(--card-2));
      border:1px solid rgba(22,138,69,.13);border-radius:24px;overflow:hidden;height:100%;box-shadow:0 14px 36px rgba(16,37,26,.06);
    }
    .scenario img{width:100%;height:190px;object-fit:cover}
    .scenario-body{padding:22px}
    .scenario-tag{font-size:12px;font-weight:850;color:var(--green);background:rgba(22,138,69,.09);border-radius:999px;padding:5px 9px;display:inline-flex;margin-bottom:12px}
    .data-band{background:var(--deep);color:#fff;position:relative;overflow:hidden}
    .data-band:before{
      content:"";position:absolute;inset:0;background:url("/assets/images/backpic/back-2.webp") center/cover no-repeat;opacity:.18;
    }
    .data-band .grid-container{position:relative;z-index:1}
    .data-band h2,.data-band h3{color:#fff}
    .data-band p{color:#c9ded4}
    .metric-card{
      background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:24px;padding:24px;height:100%;
    }
    .metric-num{font-variant-numeric:tabular-nums;font-size:42px;font-weight:900;color:var(--cyan);line-height:1;margin-bottom:8px}
    .bar{height:10px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden;margin-top:14px}
    .bar i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--green),var(--cyan))}
    .reviews-wrap{columns:4 250px;column-gap:18px}
    .review-card{
      break-inside:avoid;background:#fff;border:1px solid rgba(22,138,69,.13);border-radius:22px;padding:20px;margin:0 0 18px;
      box-shadow:0 14px 32px rgba(16,37,26,.06);transition:var(--ease)
    }
    .review-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:rgba(22,138,69,.26)}
    .review-head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:10px}
    .review-name{font-weight:850;color:var(--ink)}
    .review-tag{font-size:12px;color:var(--muted);font-weight:720}
    .rating{color:#d66a16;font-weight:900;font-variant-numeric:tabular-nums;white-space:nowrap}
    .review-card p{font-size:15.5px;line-height:1.75;margin-bottom:12px;color:#405046}
    .review-foot{font-size:12.5px;color:var(--muted);font-weight:680;border-top:1px dashed rgba(22,138,69,.17);padding-top:10px}
    .plans{align-items:stretch}
    .plan-card{position:relative;overflow:hidden}
    .plan-card.highlight{border-color:rgba(34,211,166,.55);box-shadow:0 24px 65px rgba(22,138,69,.14)}
    .plan-label{position:absolute;right:20px;top:18px;background:rgba(255,138,61,.14);color:#b95312;border-radius:999px;padding:6px 10px;font-size:12px;font-weight:850}
    .plan-title{padding-right:70px}
    .plan-list{list-style:none;margin:20px 0 24px;padding:0}
    .plan-list li{display:flex;gap:10px;margin-bottom:11px;color:#405046;font-weight:650}
    .plan-list li:before{content:"✓";color:var(--green);font-weight:900}
    .faq-list{display:grid;gap:14px}
    details.faq-item{
      background:#fff;border:1px solid rgba(22,138,69,.13);border-radius:20px;box-shadow:0 12px 28px rgba(16,37,26,.05);
      padding:0;overflow:hidden;
    }
    .faq-item summary{
      list-style:none;cursor:pointer;padding:20px 54px 20px 22px;font-weight:820;position:relative;color:var(--ink);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary:after{
      content:"+";position:absolute;right:22px;top:50%;transform:translateY(-50%);width:26px;height:26px;border-radius:50%;
      background:rgba(22,138,69,.09);color:var(--green);display:flex;align-items:center;justify-content:center;font-weight:900;
    }
    .faq-item[open] summary:after{content:"−";background:var(--green);color:#fff}
    .faq-item p{padding:0 22px 20px;margin:0;color:#506058}
    .cta-section{padding:86px 0;background:linear-gradient(135deg,#10301f,#10251A);color:#fff;position:relative;overflow:hidden}
    .cta-section:before{content:"";position:absolute;inset:0;background:url("/assets/images/backpic/back-3.webp") center/cover no-repeat;opacity:.14}
    .cta-section .grid-container{position:relative;z-index:1}
    .cta-card{
      background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13);border-radius:30px;padding:34px;
      box-shadow:0 24px 65px rgba(0,0,0,.12)
    }
    .cta-section h2,.cta-section h3{color:#fff}
    .cta-section p{color:#d4e7dd}
    .contact-form{background:#fff;border-radius:24px;padding:24px;border:1px solid rgba(34,211,166,.2)}
    .contact-form label{font-weight:800;color:var(--ink);font-size:14px;margin-bottom:7px}
    .contact-form input,.contact-form textarea,.contact-form select{
      border:1px solid var(--line);border-radius:14px;box-shadow:none;background:#fbfdf8;
      padding:12px 13px;color:var(--ink);margin-bottom:14px;
    }
    .contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus{
      border-color:var(--green);box-shadow:0 0 0 4px rgba(22,138,69,.1);background:#fff;
    }
    .site-footer{background:var(--deep);color:#d7e8df;padding:66px 0 28px}
    .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:16px}
    .footer-title{font-size:20px;font-weight:850;color:#fff}
    .footer-desc{color:#b9cec4;max-width:390px}
    .footer-col h3{font-size:16px;color:#fff;margin-bottom:14px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a{color:#b9cec4;font-weight:650}
    .footer-links a:hover{color:var(--cyan)}
    .footer-bottom{
      margin-top:42px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1);
      text-align:center;color:#b9cec4;font-size:13px;line-height:1.9
    }
    .footer-bottom a{color:#dff7ee;margin:0 5px}
    .footer-bottom a:hover{color:var(--cyan)}
    .mobile-tabs{
      display:none;position:fixed;left:10px;right:10px;bottom:10px;z-index:1002;
      background:rgba(255,255,255,.94);border:1px solid rgba(22,138,69,.14);border-radius:22px;
      box-shadow:0 18px 50px rgba(16,37,26,.16);padding:7px;backdrop-filter:blur(14px)
    }
    .mobile-tabs a{
      flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
      min-height:54px;border-radius:16px;font-size:12px;font-weight:820;color:#607167;
    }
    .mobile-tabs .icon{font-size:18px;line-height:1}
    .mobile-tabs a.active{background:rgba(22,138,69,.1);color:var(--green)}
    @media (max-width:1024px){
      .desktop-nav{gap:2px}
      .desktop-nav a{padding:9px 10px;font-size:13px}
      .nav-actions .btn{display:none}
      .section{padding:74px 0}
      .hero{padding:72px 0 64px}
      .score-console{margin-top:34px}
      .reviews-wrap{columns:3 240px}
    }
    @media (max-width:768px){
      body{padding-bottom:86px}
      .site-header{height:68px}
      :root{--nav-h:68px}
      .desktop-nav{display:none}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
      .brand-sub{display:none}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .hero{padding:54px 0 58px}
      .hero-copy{text-align:left;padding-top:0}
      .hero-actions{gap:10px}
      .btn{width:auto;padding:12px 16px;font-size:14px}
      .teams-score{grid-template-columns:1fr;gap:6px;text-align:center}
      .team.right{text-align:center}
      .event-list{grid-template-columns:1fr}
      .ticker{margin-top:-18px}
      .section{padding:62px 0}
      .section-tight{padding:54px 0}
      .feature-large{min-height:auto}
      .reviews-wrap{columns:2 230px}
      .cta-card{padding:24px;border-radius:24px}
      .mobile-tabs{display:flex}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:28px}
      .grid-container{padding-left:16px;padding-right:16px}
      .brand-name{font-size:16px}
      .hero-actions .btn{width:100%}
      .score-console{border-radius:24px;padding:18px}
      .score-number{font-size:38px}
      .status-card{min-width:210px}
      .card{padding:21px;border-radius:21px}
      .scenario img{height:160px}
      .reviews-wrap{columns:1}
      .contact-form{padding:18px}
      .footer-bottom a{display:inline-block;margin:2px 5px}
    }

/* roulang page: category1 */
:root{
      --green:#168A45;
      --green-deep:#10251A;
      --green-dark:#0F6F38;
      --mint:#22D3A6;
      --orange:#FF8A3D;
      --bg:#F5F8F2;
      --bg-soft:#FBFDF8;
      --text:#14221A;
      --muted:#5F6F66;
      --line:#DCE8DD;
      --white:#FFFFFF;
      --shadow:0 18px 45px rgba(16,37,26,.08);
      --shadow-hover:0 22px 60px rgba(16,37,26,.13);
      --radius-sm:10px;
      --radius:20px;
      --radius-lg:30px;
      --space-section:92px;
      --focus:0 0 0 4px rgba(34,211,166,.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(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(34,211,166,.14), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(255,138,61,.10), transparent 24%),
        linear-gradient(90deg, rgba(22,138,69,.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22,138,69,.035) 1px, transparent 1px),
        var(--bg);
      background-size:auto,auto,28px 28px,28px 28px,auto;
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,border .2s ease,transform .2s ease}
    a:hover{color:var(--green-dark)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:none;box-shadow:var(--focus)}
    .grid-container{max-width:1220px}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(251,253,248,.94);
      border-bottom:1px solid rgba(22,138,69,.14);
      backdrop-filter:blur(12px);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      position:relative;
    }
    .brand{display:flex;align-items:center;gap:12px;min-width:250px}
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      background:
        linear-gradient(90deg, transparent 47%, rgba(255,255,255,.72) 48%, rgba(255,255,255,.72) 52%, transparent 53%),
        radial-gradient(circle at 50% 50%, transparent 0 31%, rgba(255,255,255,.85) 32% 34%, transparent 35%),
        linear-gradient(135deg,var(--green),var(--mint));
      box-shadow:0 10px 24px rgba(22,138,69,.22);
      flex:0 0 auto;
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:9px;
      border:1.5px solid rgba(255,255,255,.74);
      border-radius:9px;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2}
    .brand-name{font-weight:850;font-size:18px;color:var(--text);letter-spacing:.2px}
    .brand-sub{font-size:11px;color:var(--muted);margin-top:3px;white-space:nowrap}
    .desktop-nav{display:flex;align-items:center;gap:4px}
    .desktop-nav a{
      padding:10px 14px;
      border-radius:999px;
      color:#33483B;
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
    }
    .desktop-nav a:hover{background:rgba(22,138,69,.08);color:var(--green-dark)}
    .desktop-nav a.active{
      background:var(--green);
      color:#fff;
      box-shadow:0 8px 20px rgba(22,138,69,.18);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid transparent;
      border-radius:999px;
      padding:12px 20px;
      font-weight:800;
      line-height:1.2;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border .2s ease,color .2s ease;
      min-height:44px;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:linear-gradient(135deg,var(--green),#19A75A);
      color:#fff;
      box-shadow:0 13px 30px rgba(22,138,69,.24);
    }
    .btn-primary:hover{background:linear-gradient(135deg,var(--green-dark),var(--green));color:#fff;box-shadow:0 18px 38px rgba(22,138,69,.30)}
    .btn-secondary{
      background:#fff;
      color:var(--green-dark);
      border-color:rgba(22,138,69,.22);
    }
    .btn-secondary:hover{background:rgba(34,211,166,.10);color:var(--green-dark);border-color:rgba(34,211,166,.6)}
    .btn-dark{
      background:var(--green-deep);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .btn-dark:hover{background:#153B28;color:#fff}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(22,138,69,.18);
      border-radius:14px;
      background:#fff;
      color:var(--green-deep);
      font-size:22px;
      line-height:1;
    }
    .mobile-drawer{
      display:none;
      position:absolute;
      top:72px;
      left:0;
      right:0;
      padding:12px;
      border:1px solid rgba(22,138,69,.14);
      border-radius:22px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .mobile-drawer a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      font-weight:750;
      color:#2E4638;
    }
    .mobile-drawer a:hover,.mobile-drawer a.active{background:rgba(22,138,69,.10);color:var(--green-dark)}
    .page-hero{
      position:relative;
      overflow:hidden;
      padding:70px 0 56px;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(245,248,242,.96) 0%, rgba(245,248,242,.86) 46%, rgba(16,37,26,.22) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      z-index:-2;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      width:520px;
      height:520px;
      right:-170px;
      top:-210px;
      border-radius:50%;
      border:2px solid rgba(22,138,69,.16);
      box-shadow:inset 0 0 0 26px rgba(34,211,166,.05);
      z-index:-1;
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:var(--muted);
      font-weight:650;
      font-size:14px;
      margin-bottom:18px;
    }
    .breadcrumb a{color:var(--green-dark)}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(34,211,166,.13);
      border:1px solid rgba(34,211,166,.30);
      color:#0C6C4B;
      font-size:13px;
      font-weight:850;
      margin-bottom:18px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(36px,5vw,60px);
      line-height:1.12;
      letter-spacing:-1.6px;
      font-weight:900;
      margin-bottom:18px;
      color:var(--text);
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.2;
      font-weight:850;
      letter-spacing:-.8px;
      margin-bottom:14px;
    }
    h3{font-size:21px;line-height:1.35;font-weight:820;margin-bottom:10px}
    .lead{
      max-width:690px;
      color:#41564A;
      font-size:18px;
      line-height:1.8;
      margin-bottom:26px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
    .hero-panel{
      background:linear-gradient(160deg,#10251A,#133C29);
      color:#E9FFF5;
      border-radius:var(--radius-lg);
      padding:24px;
      box-shadow:0 24px 60px rgba(16,37,26,.20);
      border:1px solid rgba(34,211,166,.22);
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(0deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:22px 22px;
      opacity:.55;
    }
    .hero-panel>*{position:relative}
    .panel-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;gap:14px}
    .panel-title{font-weight:850;font-size:17px}
    .pulse{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#0F3E2B;
      background:var(--mint);
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
    }
    .pulse:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--orange);
      box-shadow:0 0 0 5px rgba(255,138,61,.18);
    }
    .live-fixture{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:20px;
      padding:18px;
      margin-bottom:14px;
    }
    .fixture-meta{display:flex;justify-content:space-between;gap:10px;color:#BDEAD7;font-size:13px;font-weight:750;margin-bottom:14px}
    .fixture-row{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px}
    .team{text-align:center;font-weight:800;color:#fff}
    .score{
      font-variant-numeric:tabular-nums;
      font-size:42px;
      line-height:1;
      font-weight:950;
      color:var(--mint);
      letter-spacing:-1px;
    }
    .panel-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px}
    .panel-stat{
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.10);
      border-radius:16px;
      padding:12px;
    }
    .panel-stat strong{display:block;font-size:24px;color:#fff;line-height:1.1;font-variant-numeric:tabular-nums}
    .panel-stat span{font-size:12px;color:#BDEAD7;font-weight:700}
    .section{padding:var(--space-section) 0}
    .section-tight{padding:62px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:20px;
      margin-bottom:30px;
    }
    .section-head p{max-width:620px;color:var(--muted);margin-bottom:0}
    .tag-row{display:flex;flex-wrap:wrap;gap:10px}
    .filter-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:12px;
      border:1px solid rgba(22,138,69,.14);
      border-radius:24px;
      background:rgba(255,255,255,.72);
      box-shadow:var(--shadow);
    }
    .filter-tab{
      border:1px solid rgba(22,138,69,.16);
      background:#fff;
      color:#345143;
      padding:10px 15px;
      border-radius:999px;
      font-weight:850;
      transition:.2s ease;
    }
    .filter-tab:hover{border-color:rgba(34,211,166,.65);background:rgba(34,211,166,.10);transform:translateY(-1px)}
    .filter-tab.active{background:var(--green);color:#fff;border-color:var(--green);box-shadow:0 10px 22px rgba(22,138,69,.20)}
    .badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:5px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .badge-live{background:rgba(255,138,61,.14);color:#B54B0D}
    .badge-upcoming{background:rgba(95,111,102,.12);color:#506158}
    .badge-finished{background:rgba(22,138,69,.13);color:#126E39}
    .badge-hot{background:rgba(34,211,166,.18);color:#08775A}
    .score-card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(22,138,69,.14);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:22px;
      transition:transform .22s ease,box-shadow .22s ease,border .22s ease;
      height:100%;
    }
    .score-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(34,211,166,.55)}
    .league-line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      margin-bottom:16px;
    }
    .match-main{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:14px;
      margin-bottom:14px;
    }
    .club{
      display:flex;
      flex-direction:column;
      gap:5px;
      min-width:0;
    }
    .club.away{text-align:right;align-items:flex-end}
    .club-name{font-weight:900;font-size:18px;color:var(--text)}
    .club-note{font-size:12px;color:var(--muted);font-weight:700}
    .score-num{
      min-width:94px;
      text-align:center;
      font-size:34px;
      font-weight:950;
      line-height:1;
      letter-spacing:-1px;
      color:var(--green-deep);
      font-variant-numeric:tabular-nums;
      padding:13px 12px;
      border-radius:18px;
      background:linear-gradient(180deg,#F7FFF9,#EAF7EE);
      border:1px solid rgba(22,138,69,.16);
    }
    .match-insight{
      margin:0;
      color:#52665A;
      font-size:14px;
      line-height:1.65;
      padding-top:14px;
      border-top:1px dashed rgba(22,138,69,.18);
    }
    .league-panel,.info-panel,.form-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:24px;
    }
    .league-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
    .league-list a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(245,248,242,.88);
      border:1px solid transparent;
      font-weight:850;
      color:#294538;
    }
    .league-list a:hover{border-color:rgba(34,211,166,.55);background:rgba(34,211,166,.10);transform:translateX(2px)}
    .league-count{font-size:12px;color:var(--green-dark);background:#fff;border-radius:999px;padding:4px 8px}
    .feature-strip{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .image-card{
      position:relative;
      min-height:360px;
      border-radius:28px;
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid rgba(22,138,69,.14);
    }
    .image-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
    .image-card:hover img{transform:scale(1.04)}
    .image-card .overlay{
      position:absolute;
      inset:auto 18px 18px 18px;
      background:rgba(16,37,26,.90);
      color:#fff;
      border:1px solid rgba(34,211,166,.25);
      border-radius:20px;
      padding:18px;
    }
    .overlay p{margin:0;color:#CFEBDD}
    .info-list{display:grid;gap:14px;margin-top:18px}
    .info-item{
      display:flex;
      align-items:flex-start;
      gap:13px;
      padding:16px;
      border-radius:18px;
      background:linear-gradient(180deg,#fff,#F8FCF6);
      border:1px solid rgba(22,138,69,.12);
    }
    .info-icon{
      width:36px;height:36px;border-radius:12px;display:grid;place-items:center;
      background:rgba(34,211,166,.14);color:#08775A;font-weight:950;flex:0 0 auto;
    }
    .info-item p{margin:0;color:var(--muted);font-size:14px}
    .process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .process-card{
      position:relative;
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:22px;
      padding:22px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .process-card:before{
      content:attr(data-step);
      position:absolute;
      right:16px;
      top:10px;
      color:rgba(22,138,69,.12);
      font-size:46px;
      font-weight:950;
      line-height:1;
    }
    .process-card h3{position:relative}
    .process-card p{position:relative;margin:0;color:var(--muted);font-size:15px}
    .data-board{
      background:var(--green-deep);
      color:#fff;
      border-radius:30px;
      padding:30px;
      box-shadow:0 24px 58px rgba(16,37,26,.18);
      overflow:hidden;
      position:relative;
    }
    .data-board:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 78% 14%,rgba(34,211,166,.20),transparent 28%),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:auto,26px 26px;
      opacity:.75;
    }
    .data-board>*{position:relative}
    .data-board p{color:#CBE7D8}
    .board-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:20px}
    .board-item{
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.07);
      border-radius:18px;
      padding:18px;
    }
    .board-item strong{display:block;font-size:30px;line-height:1.1;color:var(--mint);font-variant-numeric:tabular-nums}
    .board-item span{font-size:13px;color:#BFE8D5;font-weight:750}
    .faq-wrap{display:grid;gap:14px}
    .faq-item{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:20px;
      box-shadow:0 12px 30px rgba(16,37,26,.055);
      overflow:hidden;
    }
    .faq-item summary{
      cursor:pointer;
      padding:20px 22px;
      font-weight:850;
      list-style:none;
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary:after{
      content:"+";
      width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
      background:rgba(22,138,69,.10);color:var(--green-dark);font-weight:900;flex:0 0 auto;
    }
    .faq-item[open] summary:after{content:"−";background:var(--green);color:#fff}
    .faq-item p{padding:0 22px 20px;margin:0;color:var(--muted);line-height:1.8}
    .cta-section{padding:0 0 86px}
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:40px;
      background:
        linear-gradient(135deg,rgba(16,37,26,.94),rgba(16,61,39,.92)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color:#fff;
      box-shadow:0 28px 70px rgba(16,37,26,.22);
    }
    .cta-box:after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-110px;
      width:330px;
      height:330px;
      border:2px solid rgba(34,211,166,.30);
      border-radius:50%;
    }
    .cta-box>*{position:relative;z-index:1}
    .cta-box h2{color:#fff}
    .cta-box p{color:#D2E9DD;max-width:680px}
    .contact-form{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}
    .field.full{grid-column:1/-1}
    label{display:block;font-weight:800;color:#274236;margin-bottom:7px;font-size:14px}
    input,textarea,select{
      width:100%;
      border:1px solid rgba(22,138,69,.18);
      border-radius:15px;
      background:#fff;
      min-height:48px;
      padding:12px 14px;
      color:var(--text);
      transition:border .2s ease,box-shadow .2s ease;
    }
    textarea{min-height:112px;resize:vertical}
    input:focus,textarea:focus,select:focus{outline:none;border-color:var(--mint);box-shadow:var(--focus)}
    .site-footer{
      background:#10251A;
      color:#CFE1D6;
      padding:62px 0 28px;
      margin-top:0;
    }
    .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:16px}
    .footer-title{font-size:20px;font-weight:900;color:#fff}
    .footer-desc{color:#B9D0C3;max-width:360px;margin-bottom:0}
    .footer-col h3{font-size:16px;color:#fff;margin-bottom:14px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a{color:#B9D0C3}
    .footer-links a:hover{color:var(--mint)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.10);
      margin-top:38px;
      padding-top:22px;
      text-align:center;
      color:#AFC7BA;
      font-size:13px;
      display:grid;
      gap:8px;
    }
    .footer-bottom a{color:#DCEFE5}
    .footer-bottom a:hover{color:var(--mint)}
    .mobile-tabs{
      display:none;
      position:fixed;
      left:10px;
      right:10px;
      bottom:10px;
      z-index:70;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(22,138,69,.14);
      border-radius:22px;
      box-shadow:0 16px 42px rgba(16,37,26,.16);
      padding:8px;
      backdrop-filter:blur(10px);
    }
    .mobile-tabs a{
      flex:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:3px;
      min-height:52px;
      border-radius:16px;
      color:#53685C;
      font-size:11px;
      font-weight:850;
    }
    .mobile-tabs .tab-icon{font-size:18px;line-height:1}
    .mobile-tabs a.active{background:rgba(22,138,69,.12);color:var(--green-dark)}
    @media (max-width:1100px){
      .brand-sub{display:none}
      .desktop-nav a{padding:9px 10px}
      .brand{min-width:auto}
      .process-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:900px){
      body{padding-bottom:84px}
      .desktop-nav,.nav-actions .btn-primary{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .mobile-drawer.is-open{display:block}
      .nav-wrap{min-height:70px}
      .page-hero{padding:50px 0 42px}
      .hero-panel{margin-top:28px}
      .section{padding:66px 0}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .feature-strip{grid-template-columns:1fr}
      .board-grid{grid-template-columns:1fr}
      .mobile-tabs{display:flex}
    }
    @media (max-width:640px){
      .grid-container{padding-left:18px;padding-right:18px}
      .brand-name{font-size:16px}
      .brand-mark{width:40px;height:40px;border-radius:13px}
      h1{letter-spacing:-1px}
      .lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .panel-stats{grid-template-columns:1fr}
      .fixture-row,.match-main{grid-template-columns:1fr;gap:10px}
      .team,.club,.club.away{text-align:center;align-items:center}
      .score,.score-num{font-size:34px}
      .filter-tabs{overflow-x:auto;flex-wrap:nowrap;padding:10px;border-radius:18px}
      .filter-tab{white-space:nowrap}
      .score-card{padding:18px;border-radius:20px}
      .process-grid{grid-template-columns:1fr}
      .contact-form{grid-template-columns:1fr}
      .cta-box{padding:28px 22px;border-radius:26px}
      .site-footer{padding-bottom:100px}
      .footer-bottom{text-align:left}
      .image-card{min-height:280px}
    }

/* roulang page: category2 */
:root{
      --primary:#168A45;
      --primary-dark:#0f6b34;
      --primary-soft:#e6f5ec;
      --secondary:#22D3A6;
      --accent:#FF8A3D;
      --accent-soft:#fff0e6;
      --ink:#14221A;
      --muted:#5F6F66;
      --weak:#8a9a90;
      --bg:#F5F8F2;
      --bg-2:#eef6ed;
      --card:#FFFFFF;
      --card-soft:#FBFDF8;
      --line:#DCE8DD;
      --line-strong:rgba(22,138,69,.24);
      --dark:#10251A;
      --dark-2:#173724;
      --white:#ffffff;
      --shadow:0 18px 45px rgba(16,37,26,.08);
      --shadow-hover:0 24px 60px rgba(16,37,26,.14);
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:26px;
      --radius-xl:34px;
      --container:1220px;
      --nav-h:76px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 10%, rgba(34,211,166,.14), transparent 30%),
        radial-gradient(circle at 92% 4%, rgba(255,138,61,.10), transparent 26%),
        linear-gradient(180deg,var(--bg),#fbfdf8 42%,var(--bg));
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
      padding-bottom:0;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      opacity:.34;
      background-image:
        linear-gradient(rgba(22,138,69,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,138,69,.05) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg,#000,transparent 78%);
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(34,211,166,.28);color:var(--ink)}
    :focus-visible{
      outline:3px solid rgba(34,211,166,.55);
      outline-offset:3px;
      border-radius:10px;
    }
    .grid-container{
      max-width:var(--container);
      padding-left:22px;
      padding-right:22px;
    }
    .section{padding:86px 0}
    .section-tight{padding:58px 0}
    .section-head{
      margin-bottom:32px;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:22px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      letter-spacing:.03em;
      margin-bottom:10px;
    }
    .section-kicker::before{
      content:"";
      width:9px;height:9px;border-radius:999px;
      background:var(--secondary);
      box-shadow:0 0 0 6px rgba(34,211,166,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(38px,5.2vw,62px);
      line-height:1.12;
      font-weight:850;
      letter-spacing:-.04em;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.18;
      font-weight:820;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:760;
      margin-bottom:10px;
    }
    p{color:var(--muted)}
    .lead{
      font-size:18px;
      line-height:1.82;
      color:#46564d;
      max-width:720px;
    }
    .muted{color:var(--muted)}
    .number{
      font-variant-numeric:tabular-nums;
      font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:90;
      background:rgba(250,253,248,.92);
      border-bottom:1px solid rgba(22,138,69,.12);
      backdrop-filter:blur(14px);
      box-shadow:0 8px 26px rgba(16,37,26,.04);
    }
    .nav-wrap{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:250px;
      color:var(--ink);
    }
    .brand:hover{color:var(--ink);transform:translateY(-1px)}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      flex:0 0 42px;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.96) 0 8px, transparent 9px),
        linear-gradient(90deg, transparent 46%, rgba(255,255,255,.72) 47% 53%, transparent 54%),
        linear-gradient(180deg, transparent 46%, rgba(255,255,255,.58) 47% 53%, transparent 54%),
        linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 12px 24px rgba(22,138,69,.22);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:8px;
      border:2px solid rgba(255,255,255,.76);
      border-radius:10px;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2}
    .brand-name{font-weight:850;font-size:19px;letter-spacing:-.02em}
    .brand-sub{font-size:11px;color:var(--muted);margin-top:2px;white-space:nowrap}
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:5px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(22,138,69,.10);
      border-radius:999px;
      padding:6px;
    }
    .desktop-nav a{
      padding:9px 14px;
      border-radius:999px;
      color:#33483b;
      font-weight:700;
      font-size:14px;
      white-space:nowrap;
    }
    .desktop-nav a:hover{
      background:var(--primary-soft);
      color:var(--primary-dark);
    }
    .desktop-nav a.active{
      background:var(--primary);
      color:#fff;
      box-shadow:0 9px 20px rgba(22,138,69,.22);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid transparent;
      border-radius:999px;
      min-height:44px;
      padding:12px 20px;
      color:var(--ink);
      font-weight:800;
      line-height:1;
      transition:var(--ease);
      box-shadow:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:linear-gradient(135deg,var(--primary),#19a654);
      color:#fff;
      box-shadow:0 14px 26px rgba(22,138,69,.20);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      background:linear-gradient(135deg,var(--primary-dark),var(--primary));
      box-shadow:0 18px 34px rgba(22,138,69,.26);
    }
    .btn-secondary{
      background:#fff;
      color:var(--primary-dark);
      border-color:rgba(22,138,69,.22);
    }
    .btn-secondary:hover{
      background:var(--primary-soft);
      color:var(--primary-dark);
      border-color:rgba(22,138,69,.34);
    }
    .btn-dark{
      background:var(--dark);
      color:#fff;
      border-color:rgba(255,255,255,.1);
    }
    .btn-dark:hover{color:#fff;background:#173724}
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--primary-dark);
      font-weight:800;
    }
    .text-link::after{content:"→";transition:var(--ease)}
    .text-link:hover::after{transform:translateX(4px)}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(22,138,69,.18);
      border-radius:14px;
      background:#fff;
      color:var(--primary-dark);
      font-size:22px;
      line-height:1;
      transition:var(--ease);
    }
    .menu-toggle:hover{background:var(--primary-soft)}
    .mobile-drawer{
      display:none;
      position:absolute;
      top:calc(100% + 10px);
      left:0;
      right:0;
      padding:12px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      box-shadow:var(--shadow);
    }
    .mobile-drawer a{
      display:block;
      padding:13px 15px;
      border-radius:14px;
      font-weight:800;
      color:var(--ink);
    }
    .mobile-drawer a:hover,.mobile-drawer a.active{
      background:var(--primary-soft);
      color:var(--primary-dark);
    }
    .mobile-drawer.is-open{display:block}

    .page-hero{
      position:relative;
      overflow:hidden;
      padding:76px 0 64px;
      background:
        linear-gradient(110deg, rgba(16,37,26,.92), rgba(16,37,26,.70) 48%, rgba(22,138,69,.20)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color:#fff;
    }
    .page-hero::before{
      content:"";
      position:absolute;
      inset:-20% -8%;
      background:
        radial-gradient(circle at 70% 20%, rgba(34,211,166,.26), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(255,138,61,.18), transparent 28%);
      pointer-events:none;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:0;height:1px;
      background:linear-gradient(90deg,transparent,rgba(34,211,166,.65),transparent);
    }
    .hero-inner{position:relative;z-index:1}
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:22px;
      color:rgba(255,255,255,.72);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb a{color:rgba(255,255,255,.86)}
    .breadcrumb a:hover{color:#fff}
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(34,211,166,.14);
      border:1px solid rgba(34,211,166,.32);
      color:#dffdf4;
      font-weight:800;
      font-size:13px;
      margin-bottom:16px;
    }
    .page-hero h1{max-width:780px;color:#fff}
    .page-hero .lead{color:rgba(255,255,255,.82);max-width:760px;margin-bottom:28px}
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      color:var(--primary-dark);
      font-size:13px;
      font-weight:800;
      box-shadow:0 8px 20px rgba(16,37,26,.05);
    }
    .tag.dark{
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.18);
      color:#fff;
      box-shadow:none;
    }
    .hero-panel{
      background:rgba(251,253,248,.96);
      border:1px solid rgba(255,255,255,.38);
      border-radius:var(--radius-xl);
      padding:22px;
      box-shadow:0 24px 68px rgba(0,0,0,.22);
      color:var(--ink);
    }
    .panel-image{
      overflow:hidden;
      border-radius:24px;
      margin-bottom:18px;
      position:relative;
      background:#dce8dd;
    }
    .panel-image img{
      width:100%;
      height:220px;
      object-fit:cover;
      transition:transform .38s ease;
    }
    .hero-panel:hover .panel-image img{transform:scale(1.04)}
    .panel-image::after{
      content:"赛程日历";
      position:absolute;
      left:14px;
      bottom:14px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(16,37,26,.78);
      color:#fff;
      font-size:13px;
      font-weight:800;
    }
    .mini-calendar{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:8px;
    }
    .mini-day{
      padding:11px 6px;
      text-align:center;
      border-radius:15px;
      background:var(--bg);
      border:1px solid rgba(22,138,69,.10);
    }
    .mini-day strong{display:block;font-size:16px;color:var(--ink)}
    .mini-day span{display:block;font-size:12px;color:var(--muted);font-weight:700}
    .mini-day.active{
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      color:#fff;
      border-color:transparent;
    }
    .mini-day.active strong,.mini-day.active span{color:#fff}

    .stat-strip{
      margin-top:-32px;
      position:relative;
      z-index:5;
    }
    .stat-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.13);
      border-radius:24px;
      padding:18px 20px;
      box-shadow:var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      min-height:92px;
    }
    .stat-card .label{color:var(--muted);font-weight:800;font-size:13px}
    .stat-card .value{
      font-size:30px;
      font-weight:850;
      color:var(--primary-dark);
      line-height:1;
      margin-top:6px;
    }
    .stat-icon{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-size:22px;
    }

    .date-tabs{
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      border-radius:var(--radius-lg);
      padding:12px;
      box-shadow:var(--shadow);
      display:flex;
      gap:10px;
      overflow:auto;
      scrollbar-width:thin;
    }
    .date-tab{
      flex:1 0 auto;
      min-width:132px;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid transparent;
      background:var(--card-soft);
      color:var(--ink);
      transition:var(--ease);
      text-align:left;
    }
    .date-tab:hover{
      border-color:rgba(22,138,69,.22);
      transform:translateY(-2px);
    }
    .date-tab.active{
      background:linear-gradient(135deg,var(--primary),#1cb85d);
      color:#fff;
      box-shadow:0 14px 24px rgba(22,138,69,.22);
    }
    .date-tab strong{display:block;font-size:16px;line-height:1.2}
    .date-tab span{display:block;font-size:12px;font-weight:800;color:inherit;opacity:.78;margin-top:4px}

    .timeline-wrap{
      position:relative;
    }
    .timeline-wrap::before{
      content:"";
      position:absolute;
      left:24px;
      top:12px;
      bottom:12px;
      width:2px;
      background:linear-gradient(180deg,var(--secondary),rgba(22,138,69,.16));
    }
    .time-block{
      position:relative;
      padding-left:68px;
      margin-bottom:24px;
    }
    .time-block:last-child{margin-bottom:0}
    .time-dot{
      position:absolute;
      left:8px;
      top:8px;
      width:34px;height:34px;
      border-radius:999px;
      background:#fff;
      border:8px solid var(--primary);
      box-shadow:0 0 0 8px rgba(22,138,69,.08);
    }
    .time-title{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .time-title h3{margin:0}
    .time-title .hint{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .schedule-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      border-radius:24px;
      padding:18px;
      margin-bottom:12px;
      box-shadow:0 14px 34px rgba(16,37,26,.06);
      transition:var(--ease);
    }
    .schedule-card:hover{
      transform:translateY(-3px);
      border-color:rgba(22,138,69,.34);
      box-shadow:var(--shadow-hover);
    }
    .match-row{
      display:grid;
      grid-template-columns:1.1fr .9fr 1.1fr;
      align-items:center;
      gap:12px;
    }
    .team{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      min-width:0;
    }
    .team.away{justify-content:flex-end;text-align:right}
    .team-logo{
      width:34px;height:34px;border-radius:12px;
      flex:0 0 34px;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-weight:900;
      border:1px solid rgba(22,138,69,.16);
    }
    .match-center{text-align:center}
    .match-time{
      font-size:26px;
      font-weight:900;
      color:var(--ink);
      line-height:1;
      font-variant-numeric:tabular-nums;
    }
    .league-line{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:13px;
    }
    .league-name{
      color:var(--primary-dark);
      font-weight:850;
      font-size:14px;
    }
    .status{
      display:inline-flex;
      align-items:center;
      padding:4px 9px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      line-height:1.2;
    }
    .status.hot{background:rgba(255,138,61,.14);color:#bb5620}
    .status.plan{background:rgba(34,211,166,.14);color:#087759}
    .status.focus{background:rgba(22,138,69,.12);color:var(--primary-dark)}
    .match-note{
      margin:13px 0 0;
      padding-top:12px;
      border-top:1px dashed rgba(22,138,69,.18);
      font-size:14px;
      color:var(--muted);
    }

    .topic-card{
      height:100%;
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .topic-card:hover{
      transform:translateY(-5px);
      border-color:rgba(22,138,69,.32);
      box-shadow:var(--shadow-hover);
    }
    .topic-img{
      height:154px;
      overflow:hidden;
      position:relative;
      background:var(--bg-2);
    }
    .topic-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .38s ease;
    }
    .topic-card:hover .topic-img img{transform:scale(1.06)}
    .topic-img::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,transparent,rgba(16,37,26,.30));
    }
    .topic-body{padding:22px}
    .topic-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .topic-body p{font-size:15px;margin-bottom:16px}

    .reminder-panel{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      background:
        linear-gradient(135deg,rgba(16,37,26,.94),rgba(22,138,69,.86)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color:#fff;
      padding:34px;
      box-shadow:0 26px 70px rgba(16,37,26,.18);
    }
    .reminder-panel::after{
      content:"";
      position:absolute;
      right:-90px;top:-110px;
      width:280px;height:280px;border-radius:999px;
      border:36px solid rgba(34,211,166,.12);
    }
    .reminder-panel h2,.reminder-panel p{position:relative;z-index:1}
    .reminder-panel p{color:rgba(255,255,255,.78)}
    .reminder-list{
      position:relative;z-index:1;
      display:grid;
      gap:13px;
      margin:24px 0 0;
      padding:0;
      list-style:none;
    }
    .reminder-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      color:#f4fff9;
      font-weight:700;
    }
    .reminder-list li::before{
      content:"✓";
      width:22px;height:22px;border-radius:999px;
      display:grid;place-items:center;
      flex:0 0 22px;
      background:rgba(34,211,166,.22);
      color:#b8fff0;
      font-size:13px;
      font-weight:900;
    }
    .form-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      border-radius:32px;
      padding:28px;
      box-shadow:var(--shadow);
      height:100%;
    }
    .form-card label{
      display:block;
      color:var(--ink);
      font-size:14px;
      font-weight:850;
      margin-bottom:7px;
    }
    .form-card input,.form-card select,.form-card textarea{
      width:100%;
      border:1px solid rgba(22,138,69,.16);
      border-radius:16px;
      background:var(--card-soft);
      padding:13px 14px;
      color:var(--ink);
      transition:var(--ease);
      box-shadow:none;
      margin-bottom:16px;
    }
    .form-card textarea{min-height:102px;resize:vertical}
    .form-card input:focus,.form-card select:focus,.form-card textarea:focus{
      border-color:var(--primary);
      background:#fff;
      box-shadow:0 0 0 4px rgba(34,211,166,.13);
      outline:none;
    }

    .method-card{
      height:100%;
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      border-radius:24px;
      padding:24px;
      box-shadow:0 14px 36px rgba(16,37,26,.06);
      transition:var(--ease);
    }
    .method-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(22,138,69,.28);
    }
    .method-num{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      color:#fff;
      font-size:18px;
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 12px 22px rgba(22,138,69,.18);
    }
    .method-card p{font-size:15px;margin-bottom:0}

    .faq-wrap{
      display:grid;
      gap:14px;
    }
    .faq-item{
      background:#fff;
      border:1px solid rgba(22,138,69,.12);
      border-radius:22px;
      box-shadow:0 12px 30px rgba(16,37,26,.05);
      overflow:hidden;
      transition:var(--ease);
    }
    .faq-item:hover{border-color:rgba(22,138,69,.28)}
    .faq-question{
      width:100%;
      border:0;
      background:transparent;
      padding:20px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      color:var(--ink);
      text-align:left;
      font-weight:850;
      font-size:17px;
    }
    .faq-question span:last-child{
      width:30px;height:30px;border-radius:999px;
      display:grid;place-items:center;
      flex:0 0 30px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      transition:var(--ease);
    }
    .faq-answer{
      padding:0 22px 20px;
      color:var(--muted);
      display:block;
    }
    .faq-item.is-collapsed .faq-answer{display:none}
    .faq-item:not(.is-collapsed) .faq-question span:last-child{
      transform:rotate(45deg);
      background:var(--primary);
      color:#fff;
    }

    .cta-band{
      padding:64px 0;
      background:
        radial-gradient(circle at 18% 20%, rgba(34,211,166,.20), transparent 30%),
        linear-gradient(135deg,#12301f,#0d2117);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .cta-band::before{
      content:"";
      position:absolute;
      inset:auto -80px -140px auto;
      width:340px;height:340px;border-radius:50%;
      background:rgba(34,211,166,.12);
    }
    .cta-band h2{color:#fff}
    .cta-band p{color:rgba(255,255,255,.78)}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }

    .site-footer{
      background:var(--dark);
      color:#d8e8dd;
      padding:64px 0 28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-title{
      font-size:20px;
      font-weight:850;
      color:#fff;
    }
    .footer-desc{
      color:#b7c8bd;
      max-width:360px;
      margin:0;
    }
    .footer-col h3{
      color:#fff;
      font-size:16px;
      margin-bottom:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#b7c8bd;
      font-weight:650;
    }
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      margin-top:44px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      display:grid;
      gap:8px;
      color:#aebfb4;
      font-size:14px;
    }
    .footer-bottom a{color:#d8e8dd}
    .footer-bottom a:hover{color:#fff}

    .mobile-tabbar{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:95;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(22,138,69,.16);
      border-radius:24px;
      box-shadow:0 18px 44px rgba(16,37,26,.18);
      padding:8px;
      backdrop-filter:blur(12px);
    }
    .mobile-tabbar a{
      flex:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:2px;
      min-height:52px;
      border-radius:18px;
      color:var(--muted);
      font-size:12px;
      font-weight:850;
    }
    .mobile-tabbar .tab-icon{font-size:20px;line-height:1}
    .mobile-tabbar a.active{
      background:var(--primary-soft);
      color:var(--primary-dark);
    }

    @media screen and (max-width:1100px){
      .brand{min-width:auto}
      .brand-sub{display:none}
      .desktop-nav a{padding:9px 10px}
      .btn{padding-left:16px;padding-right:16px}
    }
    @media screen and (max-width:900px){
      .desktop-nav{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .nav-actions .btn-primary{display:none}
      .page-hero{padding:58px 0 52px}
      .hero-panel{margin-top:28px}
      .section{padding:66px 0}
      .section-head{display:block}
      .timeline-wrap::before{left:18px}
      .time-block{padding-left:52px}
      .time-dot{left:2px}
      .cta-actions{justify-content:flex-start;margin-top:18px}
    }
    @media screen and (max-width:640px){
      body{padding-bottom:82px}
      .grid-container{padding-left:16px;padding-right:16px}
      .nav-wrap{min-height:66px}
      .brand-mark{width:38px;height:38px;flex-basis:38px;border-radius:13px}
      .brand-name{font-size:17px}
      .page-hero{padding:42px 0 46px}
      .breadcrumb{font-size:13px;margin-bottom:16px}
      .page-hero .lead{font-size:16px}
      .hero-tags{gap:8px}
      .tag{font-size:12px;padding:7px 10px}
      .hero-panel{border-radius:24px;padding:16px}
      .panel-image img{height:170px}
      .mini-calendar{grid-template-columns:repeat(5, minmax(54px,1fr));gap:6px}
      .mini-day{padding:9px 4px;border-radius:13px}
      .stat-strip{margin-top:18px}
      .stat-card{border-radius:20px;min-height:82px}
      .section{padding:54px 0}
      .section-tight{padding:44px 0}
      .date-tabs{border-radius:22px;padding:8px}
      .date-tab{min-width:118px;padding:12px}
      .timeline-wrap::before{display:none}
      .time-block{padding-left:0}
      .time-dot{display:none}
      .time-title{display:block}
      .time-title .hint{display:block;margin-top:4px}
      .schedule-card{padding:16px;border-radius:20px}
      .match-row{
        grid-template-columns:1fr;
        text-align:left;
      }
      .team.away{justify-content:flex-start;text-align:left}
      .match-center{text-align:left;padding-left:44px}
      .match-time{font-size:24px}
      .topic-img{height:180px}
      .reminder-panel,.form-card{border-radius:24px;padding:22px}
      .faq-question{padding:18px;font-size:16px}
      .faq-answer{padding:0 18px 18px}
      .cta-band{padding:50px 0}
      .cta-actions{display:grid}
      .btn{width:100%;min-height:46px}
      .site-footer{padding-bottom:104px}
      .mobile-tabbar{display:flex}
    }

/* roulang page: category4 */
:root{
      --green:#168A45;
      --green-2:#159447;
      --mint:#22D3A6;
      --orange:#FF8A3D;
      --dark:#10251A;
      --text:#14221A;
      --muted:#5F6F66;
      --bg:#F5F8F2;
      --bg-soft:#EEF6ED;
      --card:#FFFFFF;
      --card-soft:#FBFDF8;
      --border:#DCE8DD;
      --shadow:0 18px 45px rgba(16,37,26,.08);
      --shadow-strong:0 24px 60px rgba(16,37,26,.14);
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:28px;
      --trans: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(--text);
      background:
        radial-gradient(circle at 8% 8%,rgba(34,211,166,.16),transparent 28%),
        radial-gradient(circle at 92% 18%,rgba(255,138,61,.10),transparent 24%),
        linear-gradient(135deg,rgba(22,138,69,.045) 25%,transparent 25%) 0 0/26px 26px,
        var(--bg);
      line-height:1.75;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--trans)}
    a:hover,a:focus{color:var(--green)}
    img{max-width:100%;display:block;border-radius:inherit}
    button,input,textarea,select{font:inherit}
    button,a,input,textarea,select{outline-offset:3px}
    button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{outline:3px solid rgba(34,211,166,.45)}
    .grid-container{max-width:1220px}
    .section{padding:88px 0}
    .section.tight{padding:64px 0}
    .eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border:1px solid rgba(22,138,69,.16);border-radius:999px;background:rgba(255,255,255,.76);color:var(--green);font-size:13px;font-weight:800;letter-spacing:.02em}
    .eyebrow:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--mint);box-shadow:0 0 0 5px rgba(34,211,166,.15)}
    h1,h2,h3,p{margin-top:0}
    h1{font-size:clamp(36px,6vw,60px);line-height:1.12;font-weight:850;letter-spacing:-.04em;margin-bottom:18px}
    h2{font-size:clamp(28px,4vw,38px);line-height:1.22;font-weight:800;letter-spacing:-.03em;margin-bottom:14px}
    h3{font-size:21px;line-height:1.35;font-weight:780;margin-bottom:10px}
    p{color:var(--muted)}
    .section-head{max-width:760px;margin-bottom:34px}
    .section-head.center{text-align:center;margin-left:auto;margin-right:auto}
    .lead{font-size:18px;color:#496258;max-width:760px}
    .site-header{position:sticky;top:0;z-index:50;background:rgba(251,253,248,.94);backdrop-filter:blur(14px);border-bottom:1px solid rgba(22,138,69,.12)}
    .nav-wrap{min-height:78px;display:flex;align-items:center;gap:22px;position:relative}
    .brand{display:flex;align-items:center;gap:12px;min-width:245px;color:var(--text)}
    .brand:hover{color:var(--text)}
    .brand-mark{width:42px;height:42px;border-radius:14px;background:linear-gradient(145deg,var(--green),#0d5e32);position:relative;box-shadow:0 12px 24px rgba(22,138,69,.25);flex:0 0 auto;overflow:hidden}
    .brand-mark:before{content:"";position:absolute;inset:8px;border:2px solid rgba(255,255,255,.82);border-radius:9px}
    .brand-mark:after{content:"";position:absolute;left:50%;top:5px;bottom:5px;width:2px;background:rgba(255,255,255,.72);transform:translateX(-50%)}
    .brand-name{display:block;font-weight:850;font-size:18px;line-height:1.1}
    .brand-sub{display:block;font-size:12px;color:var(--muted);line-height:1.3;margin-top:4px;white-space:nowrap}
    .desktop-nav{display:flex;align-items:center;gap:4px;flex:1;justify-content:center}
    .desktop-nav a{font-weight:750;font-size:14px;color:#385046;padding:10px 13px;border-radius:999px}
    .desktop-nav a:hover{background:rgba(22,138,69,.08);color:var(--green)}
    .desktop-nav a.active{background:var(--green);color:#fff;box-shadow:0 10px 20px rgba(22,138,69,.20)}
    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;padding:12px 18px;font-weight:800;border:1px solid transparent;cursor:pointer;line-height:1.2;transition:var(--trans);white-space:nowrap}
    .btn-primary{background:var(--green);color:#fff;box-shadow:0 14px 28px rgba(22,138,69,.22)}
    .btn-primary:hover{background:#0f7138;color:#fff;transform:translateY(-2px);box-shadow:0 18px 34px rgba(22,138,69,.28)}
    .btn-secondary{background:#fff;color:var(--green);border-color:rgba(22,138,69,.22)}
    .btn-secondary:hover{background:#EDF8EF;color:#0f7138;transform:translateY(-2px)}
    .btn-dark{background:var(--dark);color:#fff;border-color:rgba(255,255,255,.16)}
    .btn-dark:hover{background:#183b29;color:#fff;transform:translateY(-2px)}
    .menu-toggle{display:none;border:1px solid rgba(22,138,69,.18);background:#fff;border-radius:12px;width:42px;height:42px;color:var(--green);font-weight:900;cursor:pointer}
    .mobile-drawer{display:none;position:absolute;top:72px;left:0;right:0;background:#fff;border:1px solid rgba(22,138,69,.14);border-radius:20px;padding:12px;box-shadow:var(--shadow)}
    .mobile-drawer a{display:block;padding:12px 14px;border-radius:12px;font-weight:750;color:#385046}
    .mobile-drawer a.active,.mobile-drawer a:hover{background:rgba(22,138,69,.09);color:var(--green)}
    .page-hero{position:relative;overflow:hidden;padding:78px 0 72px;background:linear-gradient(135deg,rgba(16,37,26,.96),rgba(17,78,44,.90)),url('/assets/images/backpic/back-2.webp') center/cover;border-bottom:1px solid rgba(22,138,69,.18)}
    .page-hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 72% 16%,rgba(34,211,166,.30),transparent 28%),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px) 0 0/44px 44px;pointer-events:none}
    .page-hero .grid-container{position:relative;z-index:1}
    .breadcrumb{display:flex;flex-wrap:wrap;gap:8px;align-items:center;color:rgba(255,255,255,.72);font-size:14px;margin:18px 0 0}
    .breadcrumb a{color:#d8f4e3;font-weight:750}
    .page-hero h1{color:#fff;max-width:780px}
    .page-hero .lead{color:rgba(255,255,255,.78)}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
    .tag{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#eaf9ef;font-size:13px;font-weight:800}
    .hero-panel{background:rgba(251,253,248,.96);border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-lg);box-shadow:var(--shadow-strong);padding:24px}
    .panel-title{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:18px;font-weight:850;color:var(--text)}
    .live-dot{display:inline-flex;align-items:center;gap:7px;color:var(--orange);font-size:13px;font-weight:850}
    .live-dot:before{content:"";width:9px;height:9px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 5px rgba(255,138,61,.15)}
    .mini-score{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px;border-radius:16px;background:#F3FAF4;border:1px solid rgba(22,138,69,.12);margin-bottom:12px}
    .mini-score strong{font-size:26px;font-variant-numeric:tabular-nums;color:var(--dark)}
    .mini-score span{display:block;font-size:13px;color:var(--muted);font-weight:700}
    .metric-card,.method-card,.risk-card,.scenario-card,.faq-card,.form-card,.visual-card{background:var(--card);border:1px solid rgba(22,138,69,.13);border-radius:var(--radius);box-shadow:var(--shadow);transition:var(--trans)}
    .metric-card:hover,.method-card:hover,.scenario-card:hover,.visual-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-strong);border-color:rgba(22,138,69,.28)}
    .metric-card{padding:24px;min-height:220px;position:relative;overflow:hidden}
    .metric-card:after{content:"";position:absolute;right:-24px;top:-24px;width:94px;height:94px;border-radius:50%;background:rgba(34,211,166,.12)}
    .metric-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
    .metric-icon{width:46px;height:46px;border-radius:15px;display:grid;place-items:center;background:#EAF8EE;color:var(--green);font-size:22px;font-weight:900}
    .metric-value{font-size:34px;line-height:1;font-weight:900;color:var(--dark);font-variant-numeric:tabular-nums;margin:14px 0 8px}
    .badge{display:inline-flex;align-items:center;border-radius:999px;padding:5px 9px;font-size:12px;font-weight:850;background:rgba(34,211,166,.13);color:#087153}
    .badge.hot{background:rgba(255,138,61,.15);color:#a34c13}
    .progress-line{height:10px;background:#E6EFE6;border-radius:999px;overflow:hidden;margin-top:16px}
    .progress-line span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--green),var(--mint))}
    .visual-board{background:var(--dark);border-radius:var(--radius-lg);padding:28px;color:#fff;position:relative;overflow:hidden;box-shadow:var(--shadow-strong)}
    .visual-board:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px) 0 0/36px 36px,radial-gradient(circle at 86% 12%,rgba(34,211,166,.28),transparent 24%);pointer-events:none}
    .visual-board>*{position:relative;z-index:1}
    .board-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:22px}
    .board-head h2{color:#fff;margin-bottom:6px}
    .board-head p{color:rgba(255,255,255,.70);margin-bottom:0}
    .bar-row{display:grid;grid-template-columns:110px 1fr 48px;gap:12px;align-items:center;margin:16px 0;color:rgba(255,255,255,.88);font-weight:750}
    .bar-track{height:14px;border-radius:999px;background:rgba(255,255,255,.12);overflow:hidden}
    .bar-track span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--mint),#8af7d4)}
    .trend-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:24px}
    .trend-tile{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:16px}
    .trend-tile b{display:block;font-size:24px;color:#fff;font-variant-numeric:tabular-nums}
    .trend-tile span{font-size:13px;color:rgba(255,255,255,.66)}
    .method-card{padding:26px;height:100%}
    .step-num{width:38px;height:38px;border-radius:13px;background:var(--green);color:#fff;display:grid;place-items:center;font-weight:900;margin-bottom:14px;box-shadow:0 12px 20px rgba(22,138,69,.20)}
    .compare-card{padding:0;overflow:hidden;background:#fff;border-radius:var(--radius-lg);border:1px solid rgba(22,138,69,.13);box-shadow:var(--shadow)}
    .compare-img{height:260px;background:linear-gradient(rgba(16,37,26,.18),rgba(16,37,26,.18)),url('/assets/images/coverpic/cover-8.webp') center/cover;border-radius:0}
    .compare-body{padding:28px}
    .compare-list{list-style:none;margin:0;padding:0;display:grid;gap:12px}
    .compare-list li{display:flex;justify-content:space-between;gap:12px;padding:13px 0;border-bottom:1px solid rgba(22,138,69,.10);font-weight:750}
    .compare-list li:last-child{border-bottom:0}
    .compare-list span{color:var(--muted);font-weight:650}
    .scenario-card{padding:24px;height:100%;background:linear-gradient(180deg,#fff,#FBFDF8)}
    .scenario-card h3{display:flex;align-items:center;gap:10px}
    .scenario-card h3 span{width:34px;height:34px;border-radius:12px;background:#EEF8EF;display:grid;place-items:center;color:var(--green)}
    .risk-card{padding:28px;background:#FFF9F3;border-color:rgba(255,138,61,.28)}
    .risk-card h2{display:flex;align-items:center;gap:10px;color:#8d4617}
    .risk-card p{color:#6b584c;margin-bottom:0}
    .faq-card{padding:8px;background:#fff}
    .accordion{margin:0;background:transparent}
    .accordion-item{border-bottom:1px solid rgba(22,138,69,.12)}
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{font-size:17px;font-weight:800;color:var(--text);border:0;background:transparent;padding:20px 48px 20px 18px}
    .accordion-title:hover,.accordion-title:focus{background:#F3FAF4;color:var(--green)}
    .accordion-content{border:0;background:#fff;padding:0 18px 22px;color:var(--muted);line-height:1.85}
    .cta-section{padding:76px 0;background:linear-gradient(135deg,var(--dark),#173d29);color:#fff;position:relative;overflow:hidden}
    .cta-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(34,211,166,.22),transparent 28%),url('/assets/images/backpic/back-3.webp') center/cover;opacity:.18}
    .cta-section .grid-container{position:relative;z-index:1}
    .cta-section h2{color:#fff}
    .cta-section p{color:rgba(255,255,255,.72)}
    .form-card{padding:24px;background:rgba(255,255,255,.97)}
    .form-card label{font-weight:800;color:var(--text);font-size:14px;margin-bottom:7px}
    .form-card input,.form-card textarea,.form-card select{border:1px solid rgba(22,138,69,.18);border-radius:14px;box-shadow:none;background:#FBFDF8;margin-bottom:14px;color:var(--text)}
    .form-card input:focus,.form-card textarea:focus,.form-card select:focus{border-color:var(--green);box-shadow:0 0 0 4px rgba(34,211,166,.12);background:#fff}
    .site-footer{background:var(--dark);color:rgba(255,255,255,.76);padding:64px 0 26px}
    .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:16px}
    .footer-title{font-size:20px;font-weight:850;color:#fff}
    .footer-desc{color:rgba(255,255,255,.68);max-width:360px}
    .footer-col h3{color:#fff;font-size:16px;margin-bottom:14px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a{color:rgba(255,255,255,.68)}
    .footer-links a:hover{color:var(--mint);padding-left:3px}
    .footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:38px;padding-top:22px;text-align:center;display:grid;gap:8px;font-size:13px;color:rgba(255,255,255,.62)}
    .footer-bottom a{color:rgba(255,255,255,.78)}
    .footer-bottom a:hover{color:var(--mint)}
    .mobile-tabs{display:none;position:fixed;left:0;right:0;bottom:0;z-index:60;background:rgba(251,253,248,.97);border-top:1px solid rgba(22,138,69,.14);box-shadow:0 -12px 30px rgba(16,37,26,.08);padding:7px 8px calc(7px + env(safe-area-inset-bottom));grid-template-columns:repeat(5,1fr);gap:4px}
    .mobile-tabs a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;min-height:54px;border-radius:15px;color:#53685e;font-size:12px;font-weight:800}
    .mobile-tabs .tab-icon{font-size:18px;line-height:1}
    .mobile-tabs a.active{background:#EAF8EE;color:var(--green)}
    .mobile-tabs a:hover{background:#F1F8F0;color:var(--green)}
    @media (max-width:1100px){
      .brand{min-width:auto}.brand-sub{display:none}.desktop-nav a{padding:9px 10px;font-size:13px}.btn{padding:11px 14px}
      .trend-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:860px){
      body{padding-bottom:76px}.desktop-nav{display:none}.menu-toggle{display:inline-grid;place-items:center}.nav-wrap{min-height:70px}.mobile-drawer.is-open{display:block}.nav-actions .btn-primary{display:none}.mobile-tabs{display:grid}
      .page-hero{padding:54px 0}.section{padding:58px 0}.section.tight{padding:46px 0}.hero-panel{margin-top:26px}.bar-row{grid-template-columns:84px 1fr 42px}.board-head{display:block}.compare-img{height:210px}
    }
    @media (max-width:520px){
      h1{font-size:34px}.lead{font-size:16px}.brand-name{font-size:16px}.brand-mark{width:38px;height:38px}.hero-tags{gap:8px}.tag{font-size:12px;padding:7px 10px}.metric-card,.method-card,.scenario-card,.risk-card,.form-card{padding:20px}.visual-board{padding:22px}.trend-grid{grid-template-columns:1fr}.bar-row{grid-template-columns:1fr;gap:6px;margin:18px 0}.bar-row strong{text-align:left}.footer-bottom{font-size:12px}.mobile-tabs a{font-size:11px}.accordion-title{font-size:16px;line-height:1.5}
    }

/* roulang page: category3 */
:root{
      --green:#168A45;
      --green-2:#159447;
      --mint:#22D3A6;
      --orange:#FF8A3D;
      --ink:#14221A;
      --muted:#5F6F66;
      --soft:#F5F8F2;
      --soft-2:#ECF5EA;
      --card:#FFFFFF;
      --card-2:#FBFDF8;
      --line:#DCE8DD;
      --dark:#10251A;
      --dark-2:#173726;
      --radius-sm:10px;
      --radius-md:18px;
      --radius-lg:26px;
      --radius-xl:34px;
      --shadow:0 18px 45px rgba(16,37,26,.08);
      --shadow-strong:0 26px 70px rgba(16,37,26,.14);
      --container:1220px;
      --ease:all .22s 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 12% 6%, rgba(34,211,166,.16), transparent 28%),
        linear-gradient(135deg, rgba(22,138,69,.05) 25%, transparent 25%) 0 0/28px 28px,
        var(--soft);
      line-height:1.75;
      font-size:16px;
      padding-bottom:0;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block;height:auto}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    .grid-container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      border-radius:999px;
      background:rgba(34,211,166,.14);
      color:#0D7453;
      font-size:13px;
      font-weight:800;
      margin-bottom:12px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,4vw,40px);
      line-height:1.18;
      font-weight:850;
      letter-spacing:-.02em;
    }
    .section-desc{
      margin:10px 0 0;
      color:var(--muted);
      max-width:660px;
      line-height:1.85;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 20px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--green),var(--green-2));
      color:#fff;
      box-shadow:0 12px 30px rgba(22,138,69,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(22,138,69,.28);
      background:linear-gradient(135deg,#0E7538,#168A45);
    }
    .btn-secondary{
      background:#fff;
      color:var(--green);
      border-color:rgba(22,138,69,.22);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:#EDF8F0;
      color:#0E7538;
      transform:translateY(-2px);
      border-color:rgba(22,138,69,.36);
    }
    .btn-text{
      color:var(--green);
      font-weight:850;
      display:inline-flex;
      align-items:center;
      gap:7px;
    }
    .btn-text:hover{gap:12px;color:#0E7538}
    a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
      outline:3px solid rgba(34,211,166,.45);
      outline-offset:3px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(247,250,244,.94);
      border-bottom:1px solid rgba(22,138,69,.14);
      backdrop-filter:blur(12px);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:230px;
    }
    .brand:hover .brand-mark{transform:rotate(-5deg) scale(1.04)}
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      background:
        linear-gradient(90deg,transparent 46%,rgba(255,255,255,.85) 46% 54%,transparent 54%),
        radial-gradient(circle at 50% 50%,transparent 0 28%,rgba(255,255,255,.9) 29% 32%,transparent 33%),
        linear-gradient(135deg,var(--green),var(--mint));
      box-shadow:inset 0 0 0 2px rgba(255,255,255,.42),0 10px 26px rgba(22,138,69,.22);
      flex:0 0 auto;
      transition:var(--ease);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      left:10px;right:10px;top:12px;bottom:12px;
      border:2px solid rgba(255,255,255,.7);
      border-radius:50%;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.25}
    .brand-name{font-size:20px;font-weight:900;color:var(--ink);letter-spacing:-.02em}
    .brand-sub{font-size:12px;color:var(--muted);font-weight:650}
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:4px;
      padding:7px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(22,138,69,.12);
    }
    .desktop-nav a{
      padding:9px 14px;
      border-radius:999px;
      color:#33463B;
      font-weight:760;
      font-size:14px;
    }
    .desktop-nav a:hover{
      background:rgba(22,138,69,.08);
      color:var(--green);
    }
    .desktop-nav a.active{
      background:var(--green);
      color:#fff;
      box-shadow:0 10px 24px rgba(22,138,69,.2);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(22,138,69,.18);
      background:#fff;
      border-radius:14px;
      color:var(--green);
      font-size:22px;
      line-height:1;
    }
    .mobile-drawer{
      display:none;
      position:absolute;
      left:0;
      right:0;
      top:calc(100% + 8px);
      padding:14px;
      background:#fff;
      border:1px solid rgba(22,138,69,.16);
      border-radius:22px;
      box-shadow:var(--shadow);
    }
    .mobile-drawer a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      font-weight:800;
      color:var(--ink);
    }
    .mobile-drawer a:hover,.mobile-drawer a.active{
      background:#EDF8F0;
      color:var(--green);
    }
    .mobile-drawer.open{display:block}

    .page-hero{
      position:relative;
      padding:74px 0 46px;
      overflow:hidden;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(245,248,242,.97),rgba(245,248,242,.82),rgba(245,248,242,.96)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      z-index:-2;
    }
    .page-hero:after{
      content:"";
      position:absolute;
      width:580px;height:580px;
      border:1px solid rgba(22,138,69,.16);
      border-radius:50%;
      right:-210px;top:-180px;
      box-shadow:inset 0 0 0 48px rgba(34,211,166,.06);
      z-index:-1;
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      margin-bottom:20px;
      font-weight:650;
    }
    .breadcrumb a{color:var(--green)}
    .breadcrumb a:hover{text-decoration:underline}
    .hero-title{
      margin:0;
      font-size:clamp(34px,6vw,58px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.04em;
      max-width:760px;
    }
    .hero-title span{color:var(--green)}
    .hero-lead{
      color:#405348;
      font-size:18px;
      line-height:1.9;
      max-width:760px;
      margin:18px 0 0;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      line-height:1;
      font-weight:800;
      border:1px solid rgba(22,138,69,.16);
      background:#fff;
      color:#24523A;
    }
    .badge.hot{background:rgba(255,138,61,.13);color:#A4521B;border-color:rgba(255,138,61,.24)}
    .badge.live{background:rgba(34,211,166,.16);color:#08775A;border-color:rgba(34,211,166,.28)}
    .hero-panel{
      background:var(--dark);
      color:#fff;
      border-radius:var(--radius-xl);
      padding:24px;
      box-shadow:var(--shadow-strong);
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px) 0 0/36px 36px,
        linear-gradient(0deg,rgba(255,255,255,.04) 1px,transparent 1px) 0 0/36px 36px;
      opacity:.8;
    }
    .hero-panel > *{position:relative}
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .panel-title{font-weight:900;font-size:18px}
    .panel-status{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(34,211,166,.14);
      color:var(--mint);
      font-size:12px;
      font-weight:900;
    }
    .rank-preview{
      border-radius:22px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      padding:14px;
    }
    .rank-row{
      display:grid;
      grid-template-columns:36px 1fr 54px 54px;
      gap:10px;
      align-items:center;
      padding:10px;
      border-bottom:1px solid rgba(255,255,255,.08);
      color:#DDE9E1;
      font-size:14px;
    }
    .rank-row:last-child{border-bottom:0}
    .rank-row.head{font-size:12px;color:#9FB5A8;font-weight:800}
    .rank-row strong{color:#fff}
    .rank-no{
      width:26px;height:26px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:9px;
      background:rgba(34,211,166,.14);
      color:var(--mint);
      font-weight:900;
    }
    .panel-notes{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .note{
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.1);
    }
    .note b{
      display:block;
      color:var(--mint);
      font-size:24px;
      line-height:1.1;
      font-variant-numeric:tabular-nums;
    }
    .note span{color:#AFC2B5;font-size:13px}

    .league-strip{
      margin-top:-28px;
      position:relative;
      z-index:4;
    }
    .league-nav-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:18px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      justify-content:space-between;
    }
    .league-pills{display:flex;flex-wrap:wrap;gap:10px}
    .league-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:#F3F8F1;
      border:1px solid rgba(22,138,69,.12);
      font-weight:850;
      color:#2B4536;
    }
    .league-pill:hover,.league-pill.active{
      background:var(--green);
      color:#fff;
      border-color:var(--green);
      transform:translateY(-2px);
      box-shadow:0 12px 25px rgba(22,138,69,.18);
    }

    .card{
      background:var(--card);
      border:1px solid rgba(22,138,69,.14);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:var(--ease);
      overflow:hidden;
      height:100%;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(22,138,69,.28);
    }
    .card-pad{padding:24px}
    .standings-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:30px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .standings-head{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      padding:24px;
      background:linear-gradient(135deg,#FFFFFF,#EFF8EF);
      border-bottom:1px solid rgba(22,138,69,.12);
    }
    .standings-title h3{margin:0;font-size:24px;font-weight:900}
    .standings-title p{margin:4px 0 0;color:var(--muted)}
    .standings-table{width:100%}
    .standings-row{
      display:grid;
      grid-template-columns:64px 1.4fr repeat(5,.55fr) 90px;
      align-items:center;
      gap:10px;
      padding:15px 24px;
      border-bottom:1px solid rgba(22,138,69,.1);
      font-variant-numeric:tabular-nums;
    }
    .standings-row:last-child{border-bottom:0}
    .standings-row.header{
      background:#FBFDF8;
      color:var(--muted);
      font-size:13px;
      font-weight:900;
      padding-top:12px;
      padding-bottom:12px;
    }
    .team-name{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
    }
    .team-dot{
      width:30px;height:30px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--green),var(--mint));
      font-size:13px;
      font-weight:900;
      flex:0 0 auto;
    }
    .rank-em{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:32px;height:32px;
      border-radius:12px;
      background:#EDF8F0;
      color:var(--green);
      font-weight:900;
    }
    .points{
      color:var(--green);
      font-weight:950;
      font-size:18px;
    }
    .trend{
      display:flex;
      gap:4px;
      align-items:center;
    }
    .trend i{
      width:18px;height:18px;border-radius:6px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-style:normal;
      font-size:11px;
      font-weight:900;
    }
    .trend .w{background:rgba(34,211,166,.18);color:#08775A}
    .trend .d{background:rgba(95,111,102,.12);color:#5F6F66}
    .trend .l{background:rgba(255,138,61,.15);color:#A4521B}

    .side-panel{
      background:var(--dark);
      border-radius:30px;
      padding:24px;
      color:#fff;
      height:100%;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .side-panel:before{
      content:"";
      position:absolute;
      width:220px;height:220px;
      border-radius:50%;
      right:-80px;top:-70px;
      background:rgba(34,211,166,.14);
    }
    .side-panel > *{position:relative}
    .side-panel h3{margin:0 0 12px;font-size:24px;font-weight:900}
    .side-panel p{color:#BCD0C3;margin:0 0 18px}
    .metric-list{display:grid;gap:12px;margin-top:16px}
    .metric-item{
      padding:14px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
    }
    .metric-item span{display:flex;justify-content:space-between;color:#DCE9E0;font-size:14px;font-weight:750}
    .bar{
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
      margin-top:10px;
    }
    .bar b{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--mint),#C7F96C);
    }

    .team-card{
      position:relative;
      padding:22px;
    }
    .team-card h3{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin:0 0 12px;
      font-size:22px;
      font-weight:900;
    }
    .team-card p{color:var(--muted);margin:0 0 18px}
    .team-meta{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:18px;
    }
    .team-meta div{
      border-radius:16px;
      padding:12px;
      background:#F5F9F2;
      border:1px solid rgba(22,138,69,.1);
    }
    .team-meta b{display:block;font-size:20px;color:var(--green);line-height:1.1}
    .team-meta span{font-size:12px;color:var(--muted);font-weight:750}
    .form-guide{
      display:flex;
      align-items:center;
      gap:5px;
    }
    .form-guide i{
      width:22px;height:22px;border-radius:8px;
      display:inline-flex;
      align-items:center;justify-content:center;
      font-style:normal;font-size:12px;font-weight:900;
    }
    .info-image{
      min-height:410px;
      border-radius:30px;
      overflow:hidden;
      position:relative;
      box-shadow:var(--shadow);
    }
    .info-image img{
      width:100%;
      height:100%;
      min-height:410px;
      object-fit:cover;
      transform:scale(1.02);
      transition:var(--ease);
    }
    .info-image:hover img{transform:scale(1.07)}
    .info-image .overlay{
      position:absolute;
      inset:auto 18px 18px 18px;
      padding:20px;
      border-radius:22px;
      color:#fff;
      background:linear-gradient(135deg,rgba(16,37,26,.92),rgba(22,138,69,.78));
      border:1px solid rgba(255,255,255,.16);
    }
    .overlay h3{margin:0 0 8px;font-size:22px;font-weight:900}
    .overlay p{margin:0;color:#E8F1EA}

    .knowledge-list{
      display:grid;
      gap:16px;
    }
    .knowledge-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:24px;
      box-shadow:0 10px 28px rgba(16,37,26,.05);
    }
    .knowledge-no{
      width:54px;height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#EDF8F0;
      color:var(--green);
      font-size:22px;
      font-weight:950;
    }
    .knowledge-item h3{margin:0 0 6px;font-size:20px;font-weight:900}
    .knowledge-item p{margin:0;color:var(--muted)}
    .highlight-panel{
      border-radius:30px;
      background:linear-gradient(135deg,#fff,#F0F8EE);
      border:1px solid rgba(22,138,69,.14);
      padding:28px;
      box-shadow:var(--shadow);
      height:100%;
    }
    .highlight-panel h3{margin:0 0 12px;font-size:24px;font-weight:900}
    .highlight-panel p{color:var(--muted)}
    .check-list{
      list-style:none;
      padding:0;margin:20px 0 0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#395144;
      font-weight:700;
    }
    .check-list li:before{
      content:"✓";
      flex:0 0 auto;
      width:22px;height:22px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:rgba(34,211,166,.16);
      color:#08775A;
      font-weight:950;
      margin-top:2px;
    }

    .faq-wrap{
      display:grid;
      gap:14px;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:20px;
      box-shadow:0 12px 30px rgba(16,37,26,.05);
      margin-bottom:14px;
      overflow:hidden;
    }
    .accordion-title{
      border:0 !important;
      color:var(--ink);
      font-size:18px;
      font-weight:900;
      padding:20px 54px 20px 22px;
      line-height:1.45;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#F2F8F0;
      color:var(--green);
    }
    .accordion-title:before{
      right:22px;
      margin-top:-10px;
      font-size:24px;
      color:var(--green);
    }
    .accordion-content{
      border:0 !important;
      border-top:1px solid rgba(22,138,69,.1) !important;
      color:var(--muted);
      padding:18px 22px 22px;
      line-height:1.85;
      background:#fff;
    }

    .cta-section{
      padding:78px 0;
    }
    .cta-card{
      overflow:hidden;
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(16,37,26,.96),rgba(22,80,48,.96)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color:#fff;
      box-shadow:var(--shadow-strong);
      position:relative;
    }
    .cta-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 82% 24%,rgba(34,211,166,.22),transparent 32%);
    }
    .cta-inner{
      position:relative;
      padding:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }
    .cta-inner h2{
      margin:0;
      font-size:clamp(28px,4vw,42px);
      font-weight:900;
      line-height:1.2;
    }
    .cta-inner p{
      margin:12px 0 0;
      color:#D5E5DA;
      max-width:720px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      flex:0 0 auto;
    }

    .consult-card{
      background:#fff;
      border:1px solid rgba(22,138,69,.14);
      border-radius:30px;
      padding:26px;
      box-shadow:var(--shadow);
    }
    .consult-card h3{margin:0 0 8px;font-size:24px;font-weight:900}
    .consult-card p{color:var(--muted);margin:0 0 20px}
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field.full{grid-column:1/-1}
    label{
      display:block;
      color:#31463A;
      font-weight:850;
      margin-bottom:7px;
      font-size:14px;
    }
    input,select,textarea{
      width:100%;
      border:1px solid rgba(22,138,69,.18);
      background:#FBFDF8;
      border-radius:14px;
      padding:12px 14px;
      color:var(--ink);
      box-shadow:none;
      margin:0;
      transition:var(--ease);
    }
    textarea{min-height:108px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:var(--green);
      background:#fff;
      box-shadow:0 0 0 4px rgba(34,211,166,.12);
    }

    .site-footer{
      background:var(--dark);
      color:#D8E7DE;
      padding:64px 0 34px;
      margin-top:0;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-title{font-size:20px;font-weight:950;color:#fff}
    .footer-desc{color:#AFC2B5;max-width:390px;margin:0}
    .footer-col h3{
      color:#fff;
      font-size:17px;
      font-weight:900;
      margin:0 0 14px;
    }
    .footer-links{
      list-style:none;
      padding:0;margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{color:#BFD1C5;font-weight:650}
    .footer-links a:hover{color:var(--mint);padding-left:4px}
    .footer-bottom{
      margin-top:42px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      color:#AFC2B5;
      font-size:14px;
      display:grid;
      gap:8px;
    }
    .footer-bottom a{color:#D8E7DE}
    .footer-bottom a:hover{color:var(--mint)}

    .mobile-tabs{
      display:none;
      position:fixed;
      left:10px;
      right:10px;
      bottom:10px;
      z-index:60;
      background:rgba(255,255,255,.96);
      border:1px solid rgba(22,138,69,.16);
      border-radius:22px;
      box-shadow:0 18px 45px rgba(16,37,26,.16);
      padding:7px;
      backdrop-filter:blur(10px);
    }
    .mobile-tabs a{
      flex:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:3px;
      min-height:54px;
      border-radius:16px;
      color:#506257;
      font-weight:800;
      font-size:12px;
    }
    .mobile-tabs .tab-icon{font-size:18px;line-height:1}
    .mobile-tabs a.active{
      background:#EAF7EF;
      color:var(--green);
    }
    .mobile-tabs a:hover{background:#F1F8EF;color:var(--green)}

    @media (max-width:1100px){
      .desktop-nav{display:none}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
      .brand{min-width:auto}
      .nav-actions .btn{display:none}
      .standings-row{grid-template-columns:54px 1.4fr repeat(3,.55fr) 84px}
      .standings-row span:nth-child(5),
      .standings-row span:nth-child(6){display:none}
    }
    @media (max-width:768px){
      body{padding-bottom:86px}
      .section{padding:60px 0}
      .section-tight{padding:48px 0}
      .nav-wrap{min-height:70px}
      .brand-sub{display:none}
      .brand-name{font-size:18px}
      .brand-mark{width:42px;height:42px;border-radius:14px}
      .page-hero{padding:54px 0 42px}
      .hero-lead{font-size:16px}
      .hero-panel{margin-top:28px;min-height:0;border-radius:26px}
      .league-nav-card{align-items:flex-start}
      .league-pills{overflow-x:auto;flex-wrap:nowrap;width:100%;padding-bottom:4px}
      .league-pill{white-space:nowrap}
      .section-head{display:block}
      .standings-head{display:block}
      .standings-head .badge{margin-top:12px}
      .standings-row{
        grid-template-columns:42px 1fr 58px;
        gap:8px;
        padding:14px 16px;
      }
      .standings-row span:nth-child(3),
      .standings-row span:nth-child(4),
      .standings-row span:nth-child(5),
      .standings-row span:nth-child(6){display:none}
      .standings-row.header span:nth-child(2)::after{content:" / 近期走势";color:var(--muted);font-weight:900}
      .standings-row.header span:nth-child(8){display:block}
      .trend{justify-content:flex-end}
      .team-meta{grid-template-columns:1fr}
      .knowledge-item{grid-template-columns:44px 1fr;padding:18px}
      .knowledge-no{width:44px;height:44px;border-radius:15px;font-size:18px}
      .form-grid{grid-template-columns:1fr}
      .cta-inner{display:block;padding:30px}
      .cta-actions{margin-top:22px}
      .mobile-tabs{display:flex}
    }
    @media (max-width:520px){
      .grid-container{padding-left:16px;padding-right:16px}
      .hero-title{font-size:36px}
      .hero-tags{gap:8px}
      .tag,.badge{font-size:12px;padding:7px 10px}
      .panel-notes{grid-template-columns:1fr}
      .rank-row{grid-template-columns:32px 1fr 46px 46px;padding:9px 6px}
      .card-pad,.team-card,.consult-card{padding:20px}
      .standings-title h3{font-size:21px}
      .info-image,.info-image img{min-height:330px}
      .cta-actions .btn{width:100%}
      .footer-bottom{font-size:13px}
    }

/* roulang page: category5 */
:root {
      --color-primary: #168a45;
      --color-primary-dark: #0f6b34;
      --color-secondary: #22d3a6;
      --color-accent: #ff8a3d;
      --color-text: #14221a;
      --color-muted: #5f6f66;
      --color-soft: #f5f8f2;
      --color-soft-2: #eef6ed;
      --color-card: #ffffff;
      --color-card-warm: #fbfdf8;
      --color-border: #dce8dd;
      --color-dark: #10251a;
      --color-dark-2: #173324;
      --shadow-card: 0 18px 45px rgba(16, 37, 26, .08);
      --shadow-hover: 0 24px 58px rgba(16, 37, 26, .14);
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 26px;
      --radius-pill: 999px;
      --container: 1220px;
      --section-y: 92px;
      --transition: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--color-text);
      background:
        radial-gradient(circle at 16% 8%, rgba(34, 211, 166, .12), transparent 28%),
        linear-gradient(90deg, rgba(22, 138, 69, .035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 138, 69, .035) 1px, transparent 1px),
        var(--color-soft);
      background-size: auto, 28px 28px, 28px 28px, auto;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      font-size: 16px;
      line-height: 1.75;
      padding-bottom: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(34, 211, 166, .45);
      outline-offset: 3px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(2.25rem, 5vw, 4rem);
      line-height: 1.12;
      font-weight: 800;
      letter-spacing: 0;
    }

    h2 {
      font-size: clamp(1.75rem, 3vw, 2.375rem);
      line-height: 1.22;
      font-weight: 780;
      letter-spacing: 0;
    }

    h3 {
      font-size: 1.25rem;
      line-height: 1.35;
      font-weight: 730;
      letter-spacing: 0;
    }

    p {
      color: var(--color-muted);
    }

    .grid-container {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 250, 244, .94);
      border-bottom: 1px solid rgba(22, 138, 69, .14);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 24px rgba(16, 37, 26, .04);
    }

    .nav-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 76px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      position: relative;
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        linear-gradient(90deg, transparent 47%, rgba(255,255,255,.92) 47% 53%, transparent 53%),
        radial-gradient(circle at center, transparent 0 30%, rgba(255,255,255,.9) 31% 34%, transparent 35%),
        linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.45), 0 10px 22px rgba(22, 138, 69, .22);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      left: 8px;
      right: 8px;
      height: 1px;
      background: rgba(255, 255, 255, .72);
    }

    .brand-mark::before {
      top: 13px;
    }

    .brand-mark::after {
      bottom: 13px;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
      min-width: 0;
    }

    .brand-name {
      color: var(--color-text);
      font-size: 1.05rem;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .brand-sub {
      color: var(--color-muted);
      font-size: .72rem;
      font-weight: 600;
      line-height: 1.25;
      white-space: nowrap;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 1 1 auto;
    }

    .desktop-nav a {
      padding: 9px 13px;
      border-radius: var(--radius-pill);
      color: #2d4437;
      font-size: .94rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      color: var(--color-primary-dark);
      background: rgba(22, 138, 69, .1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 18px;
      border: 1px solid transparent;
      border-radius: var(--radius-pill);
      font-weight: 760;
      line-height: 1.2;
      text-align: center;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), #18a553);
      box-shadow: 0 12px 26px rgba(22, 138, 69, .22);
    }

    .btn-primary:hover,
    .btn-primary:active {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(22, 138, 69, .28);
    }

    .btn-secondary {
      color: var(--color-primary-dark);
      background: #fff;
      border-color: rgba(22, 138, 69, .22);
    }

    .btn-secondary:hover,
    .btn-secondary:active {
      background: rgba(22, 138, 69, .08);
      border-color: rgba(22, 138, 69, .38);
      transform: translateY(-2px);
    }

    .btn-dark {
      color: #10251a;
      background: var(--color-secondary);
      border-color: rgba(34, 211, 166, .5);
    }

    .btn-dark:hover {
      color: #10251a;
      transform: translateY(-2px);
      background: #5ae4c2;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--color-primary-dark);
      font-weight: 760;
    }

    .text-link::after {
      content: "→";
      transition: transform var(--transition);
    }

    .text-link:hover::after {
      transform: translateX(4px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(22, 138, 69, .2);
      border-radius: 14px;
      color: var(--color-primary-dark);
      background: #fff;
      font-size: 1.25rem;
      font-weight: 800;
      line-height: 1;
    }

    .mobile-drawer {
      display: none;
    }

    .page-hero {
      position: relative;
      padding: 84px 0 72px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(16, 37, 26, .88), rgba(16, 37, 26, .58)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color: #fff;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 82% 18%, rgba(34, 211, 166, .22), transparent 24%),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: auto, 54px 54px;
      pointer-events: none;
    }

    .page-hero .grid-container {
      position: relative;
      z-index: 1;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: rgba(255, 255, 255, .78);
      font-size: .92rem;
      font-weight: 650;
    }

    .breadcrumb a:hover {
      color: var(--color-secondary);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 7px 12px;
      border: 1px solid rgba(34, 211, 166, .35);
      border-radius: var(--radius-pill);
      color: #dffff5;
      background: rgba(34, 211, 166, .11);
      font-size: .86rem;
      font-weight: 760;
    }

    .hero-copy p {
      max-width: 680px;
      margin-bottom: 26px;
      color: rgba(255, 255, 255, .84);
      font-size: 1.08rem;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: var(--radius-pill);
      font-size: .82rem;
      font-weight: 750;
      line-height: 1.2;
      white-space: nowrap;
    }

    .tag {
      padding: 8px 12px;
      color: #e8fff6;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .badge {
      padding: 6px 10px;
      color: var(--color-primary-dark);
      background: rgba(22, 138, 69, .1);
    }

    .badge.hot {
      color: #8f410c;
      background: rgba(255, 138, 61, .15);
    }

    .badge.cyan {
      color: #087456;
      background: rgba(34, 211, 166, .16);
    }

    .hero-feature {
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius-lg);
      background: rgba(16, 37, 26, .78);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    }

    .hero-feature img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.16);
    }

    .hero-feature-panel {
      margin-top: -42px;
      margin-left: 20px;
      margin-right: 20px;
      position: relative;
      padding: 18px;
      border-radius: 18px;
      color: #e9fff6;
      background: rgba(16, 37, 26, .92);
      border: 1px solid rgba(34, 211, 166, .24);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
    }

    .hero-feature-panel strong {
      display: block;
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .hero-feature-panel span {
      color: rgba(233, 255, 246, .76);
      font-size: .92rem;
    }

    .section {
      padding: var(--section-y) 0;
    }

    .section.tight {
      padding-top: 64px;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      color: var(--color-primary-dark);
      font-weight: 800;
      font-size: .9rem;
    }

    .section-header p {
      max-width: 620px;
      margin-bottom: 0;
      font-size: 1.02rem;
    }

    .card {
      height: 100%;
      border: 1px solid rgba(22, 138, 69, .14);
      border-radius: var(--radius-md);
      background: var(--color-card);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(22, 138, 69, .32);
      box-shadow: var(--shadow-hover);
    }

    .lead-story {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      min-height: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(22, 138, 69, .14);
      box-shadow: var(--shadow-card);
    }

    .lead-story-media {
      position: relative;
      overflow: hidden;
      min-height: 360px;
    }

    .lead-story-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .lead-story:hover .lead-story-media img {
      transform: scale(1.04);
    }

    .lead-story-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(16,37,26,.58));
    }

    .lead-story-content {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .lead-story-content h2 {
      margin-bottom: 16px;
    }

    .lead-story-meta,
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 14px;
      color: var(--color-muted);
      font-size: .9rem;
      font-weight: 650;
    }

    .news-list {
      display: grid;
      gap: 16px;
    }

    .news-mini {
      padding: 18px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(22, 138, 69, .14);
      background: rgba(255,255,255,.84);
      transition: transform var(--transition), border-color var(--transition), background var(--transition);
    }

    .news-mini:hover {
      transform: translateX(4px);
      border-color: rgba(34, 211, 166, .5);
      background: #fff;
    }

    .news-mini h3 {
      margin-bottom: 8px;
      font-size: 1.06rem;
    }

    .news-mini p {
      margin-bottom: 0;
      font-size: .95rem;
    }

    .filter-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(22, 138, 69, .14);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 34px rgba(16, 37, 26, .06);
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 9px 15px;
      border: 1px solid rgba(22, 138, 69, .16);
      border-radius: var(--radius-pill);
      color: #315241;
      background: #fff;
      font-size: .92rem;
      font-weight: 760;
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
    }

    .article-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .article-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, rgba(22,138,69,.16), rgba(34,211,166,.14));
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .article-card:hover .article-image img {
      transform: scale(1.05);
    }

    .article-body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 22px;
    }

    .article-body h3 {
      margin-bottom: 10px;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .article-body p {
      margin-bottom: 18px;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .article-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-muted);
      font-size: .88rem;
      font-weight: 650;
    }

    .editor-zone {
      background:
        linear-gradient(135deg, rgba(16, 37, 26, .96), rgba(20, 60, 40, .92)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      color: #fff;
    }

    .editor-zone .section-kicker,
    .editor-zone h2 {
      color: #fff;
    }

    .editor-zone p {
      color: rgba(255,255,255,.76);
    }

    .pick-card {
      height: 100%;
      padding: 24px;
      border: 1px solid rgba(34, 211, 166, .2);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.08);
      box-shadow: 0 18px 44px rgba(0,0,0,.14);
      transition: transform var(--transition), background var(--transition), border-color var(--transition);
    }

    .pick-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.12);
      border-color: rgba(34, 211, 166, .45);
    }

    .pick-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      margin-bottom: 18px;
      border-radius: 13px;
      color: #10251a;
      background: var(--color-secondary);
      font-weight: 850;
      font-variant-numeric: tabular-nums;
    }

    .pick-card h3 {
      color: #fff;
      margin-bottom: 10px;
    }

    .topic-panel {
      padding: 30px;
      border-radius: var(--radius-lg);
      background: var(--color-card-warm);
      border: 1px solid rgba(22, 138, 69, .14);
      box-shadow: var(--shadow-card);
    }

    .topic-item {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(22, 138, 69, .12);
    }

    .topic-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .topic-date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 76px;
      border-radius: 16px;
      color: var(--color-primary-dark);
      background: rgba(22, 138, 69, .1);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
    }

    .topic-date span {
      color: var(--color-muted);
      font-size: .78rem;
      font-weight: 700;
    }

    .topic-item h3 {
      margin-bottom: 6px;
      font-size: 1.12rem;
    }

    .topic-item p {
      margin-bottom: 0;
      font-size: .96rem;
    }

    .insight-board {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid rgba(22, 138, 69, .14);
      box-shadow: var(--shadow-card);
    }

    .metric-line {
      margin-top: 18px;
    }

    .metric-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
      color: #294b39;
      font-size: .92rem;
      font-weight: 760;
    }

    .progress-track {
      height: 12px;
      border-radius: var(--radius-pill);
      background: rgba(22, 138, 69, .1);
      overflow: hidden;
    }

    .progress-fill {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    }

    .newsletter-card {
      padding: 30px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 92% 8%, rgba(255, 138, 61, .14), transparent 26%),
        #fff;
      border: 1px solid rgba(22, 138, 69, .14);
      box-shadow: var(--shadow-card);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      display: block;
      margin-bottom: 7px;
      color: #294b39;
      font-size: .9rem;
      font-weight: 760;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      min-height: 46px;
      margin: 0;
      padding: 12px 14px;
      border: 1px solid rgba(22, 138, 69, .2);
      border-radius: 14px;
      color: var(--color-text);
      background: #fbfdf8;
      box-shadow: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .form-field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--color-primary);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(34, 211, 166, .14);
      outline: none;
    }

    .faq-list {
      display: grid;
      gap: 16px;
    }

    .faq-item {
      padding: 24px 26px;
      border: 1px solid rgba(22, 138, 69, .14);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow: 0 12px 34px rgba(16, 37, 26, .05);
    }

    .faq-item h3 {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 1.08rem;
    }

    .faq-item h3::before {
      content: "问";
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 10px;
      color: #fff;
      background: var(--color-primary);
      font-size: .82rem;
    }

    .faq-item p {
      margin-bottom: 0;
      padding-left: 38px;
    }

    .cta-band {
      padding: 68px 0;
      background:
        linear-gradient(135deg, rgba(16, 37, 26, .94), rgba(19, 72, 45, .9)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color: #fff;
    }

    .cta-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 34px;
      border: 1px solid rgba(34, 211, 166, .2);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.07);
    }

    .cta-box h2 {
      color: #fff;
      margin-bottom: 10px;
    }

    .cta-box p {
      max-width: 700px;
      margin-bottom: 0;
      color: rgba(255,255,255,.78);
    }

    .site-footer {
      padding: 62px 0 30px;
      color: rgba(231, 244, 235, .78);
      background: var(--color-dark);
    }

    .footer-title {
      color: #fff;
      font-size: 1.08rem;
      font-weight: 820;
    }

    .footer-desc {
      max-width: 360px;
      margin-top: 16px;
      margin-bottom: 0;
      color: rgba(231, 244, 235, .72);
    }

    .footer-col h3 {
      margin-bottom: 14px;
      color: #fff;
      font-size: 1rem;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links li + li {
      margin-top: 8px;
    }

    .footer-links a {
      color: rgba(231, 244, 235, .72);
      font-weight: 620;
    }

    .footer-links a:hover {
      color: var(--color-secondary);
    }

    .footer-bottom {
      margin-top: 38px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      text-align: center;
      color: rgba(231, 244, 235, .7);
      font-size: .9rem;
    }

    .footer-bottom div + div {
      margin-top: 8px;
    }

    .footer-bottom a {
      color: rgba(231, 244, 235, .82);
    }

    .footer-bottom a:hover {
      color: var(--color-secondary);
    }

    .mobile-tabbar {
      display: none;
    }

    @media (max-width: 1024px) {
      :root {
        --section-y: 72px;
      }

      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .mobile-drawer {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        padding: 12px;
        border: 1px solid rgba(22, 138, 69, .16);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow-card);
      }

      .mobile-drawer.open {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
      }

      .mobile-drawer a {
        padding: 10px 12px;
        border-radius: 14px;
        color: #294b39;
        font-weight: 760;
        text-align: center;
        background: rgba(22, 138, 69, .06);
      }

      .mobile-drawer a.active,
      .mobile-drawer a:hover {
        color: #fff;
        background: var(--color-primary);
      }

      .lead-story {
        grid-template-columns: 1fr;
      }

      .lead-story-media {
        min-height: 300px;
      }

      .section-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-box {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 78px;
      }

      .nav-wrap {
        min-height: 68px;
      }

      .brand-sub {
        display: none;
      }

      .nav-actions .btn {
        display: none;
      }

      .page-hero {
        padding: 58px 0 52px;
      }

      .hero-feature {
        margin-top: 22px;
      }

      .lead-story-content {
        padding: 24px;
      }

      .filter-strip {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
      }

      .filter-chip {
        flex: 0 0 auto;
      }

      .topic-item {
        grid-template-columns: 1fr;
      }

      .topic-date {
        align-items: flex-start;
        width: max-content;
        min-height: auto;
        padding: 10px 14px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .faq-item p {
        padding-left: 0;
      }

      .mobile-tabbar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        padding: 8px;
        border: 1px solid rgba(22, 138, 69, .16);
        border-radius: 22px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 16px 42px rgba(16, 37, 26, .18);
      }

      .mobile-tabbar a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 54px;
        border-radius: 16px;
        color: #5f6f66;
        font-size: .75rem;
        font-weight: 760;
      }

      .mobile-tabbar .tab-icon {
        font-size: 1.05rem;
        line-height: 1;
        margin-bottom: 3px;
      }

      .mobile-tabbar a.active,
      .mobile-tabbar a:hover {
        color: var(--color-primary-dark);
        background: rgba(22, 138, 69, .1);
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 2.18rem;
      }

      .brand-name {
        font-size: .98rem;
      }

      .page-hero {
        padding-top: 46px;
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .hero-tags {
        gap: 8px;
      }

      .tag {
        padding: 7px 10px;
        font-size: .78rem;
      }

      .lead-story-media {
        min-height: 220px;
      }

      .section {
        padding: 58px 0;
      }

      .article-body,
      .topic-panel,
      .insight-board,
      .newsletter-card,
      .cta-box {
        padding: 22px;
      }

      .footer-bottom {
        font-size: .82rem;
      }
    }
