/* roulang page: index */
:root {
      --green-950: #0B1512;
      --green-900: #12382F;
      --green-800: #18483D;
      --green-100: #E7EFEA;
      --gold-600: #B98A3B;
      --gold-700: #9E732D;
      --cyan-500: #24BFA5;
      --amber-600: #D9822B;
      --bg: #F6F3EC;
      --paper: #FFFFFF;
      --paper-soft: #FBFAF5;
      --text: #1C2421;
      --muted: #5E6863;
      --light: #F7F3E8;
      --border: rgba(18, 56, 47, 0.12);
      --shadow: 0 16px 40px rgba(18, 56, 47, 0.10);
      --shadow-soft: 0 10px 26px rgba(18, 56, 47, 0.07);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-sm: 10px;
      --container: 1220px;
      --section: 88px;
      --speed: 220ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(185, 138, 59, 0.08), transparent 34%),
        linear-gradient(180deg, #F7F4ED 0%, var(--bg) 52%, #EFE9DC 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--speed), background var(--speed), transform var(--speed), box-shadow var(--speed);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      background: #fff;
      color: var(--text);
      padding: 12px 14px;
      outline: none;
      transition: border-color var(--speed), box-shadow var(--speed);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--cyan-500);
      box-shadow: 0 0 0 3px rgba(36, 191, 165, 0.14);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(246, 243, 236, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(18, 56, 47, 0.10);
    }

    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--gold-600), #D9BB75 45%, var(--green-900) 46%),
        var(--green-900);
      position: relative;
      box-shadow: 0 10px 22px rgba(18, 56, 47, 0.18);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 11px;
      border: 2px solid rgba(247, 243, 232, 0.75);
      border-radius: 50%;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .brand-name {
      font-weight: 800;
      color: var(--green-900);
      font-size: 18px;
      letter-spacing: -0.2px;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
    }

    .main-nav a {
      position: relative;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--green-900);
      font-size: 15px;
      font-weight: 650;
      white-space: nowrap;
    }

    .main-nav a:hover {
      color: var(--cyan-500);
      background: rgba(18, 56, 47, 0.06);
    }

    .main-nav a.active {
      background: var(--green-900);
      color: var(--light);
    }

    .main-nav a.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 5px;
      height: 2px;
      background: var(--gold-600);
      border-radius: 999px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      background: var(--green-900);
      color: var(--light);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-toggle span {
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform var(--speed), opacity var(--speed);
    }

    .menu-toggle.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: var(--radius-md);
      font-weight: 750;
      line-height: 1.2;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #D3AB62, var(--gold-600));
      color: #102A24;
      box-shadow: 0 12px 24px rgba(185, 138, 59, 0.22);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #C79A4A, var(--gold-700));
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(185, 138, 59, 0.28);
    }

    .btn-outline {
      color: var(--green-900);
      border-color: rgba(18, 56, 47, 0.22);
      background: rgba(255, 255, 255, 0.54);
    }

    .btn-outline:hover {
      background: var(--green-100);
      border-color: rgba(18, 56, 47, 0.36);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--green-900);
      color: var(--light);
      border-color: rgba(247, 243, 232, 0.12);
    }

    .btn-dark:hover {
      background: var(--green-800);
      color: #fff;
      transform: translateY(-2px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-600);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
    }

    .section {
      padding: var(--section) 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 34px;
    }

    .section-title {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.22;
      color: var(--green-900);
      font-weight: 850;
      letter-spacing: -0.5px;
    }

    .section-desc {
      color: var(--muted);
      max-width: 560px;
      margin-top: 10px;
      font-size: 16px;
    }

    .hero {
      position: relative;
      min-height: 720px;
      color: var(--light);
      background:
        linear-gradient(110deg, rgba(11, 21, 18, 0.95) 0%, rgba(18, 56, 47, 0.90) 48%, rgba(11, 21, 18, 0.84) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(185, 138, 59, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(185, 138, 59, 0.06) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 86%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 108px 0 44px;
    }

    .hero-mosaic {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 38px;
      align-items: center;
    }

    .hero-copy {
      max-width: 720px;
    }

    .hero-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border: 1px solid rgba(247, 243, 232, 0.16);
      background: rgba(247, 243, 232, 0.08);
      border-radius: 999px;
      color: #EBD5A0;
      font-weight: 750;
      font-size: 14px;
      margin-bottom: 22px;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan-500);
      box-shadow: 0 0 0 6px rgba(36, 191, 165, 0.14);
    }

    h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.14;
      letter-spacing: -1.2px;
      font-weight: 900;
      color: #FFF9E9;
      margin-bottom: 20px;
    }

    .hero-lead {
      color: rgba(247, 243, 232, 0.82);
      font-size: 18px;
      max-width: 650px;
      margin-bottom: 28px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 24px;
    }

    .notice-strip {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      max-width: 680px;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(217, 130, 43, 0.35);
      background: rgba(217, 130, 43, 0.12);
      color: #FFE2B8;
      font-size: 14px;
      line-height: 1.65;
    }

    .notice-strip strong {
      color: #FFD28D;
      white-space: nowrap;
    }

    .arena-panel {
      position: relative;
      padding: 22px;
      border-radius: 30px;
      background: rgba(251, 250, 245, 0.08);
      border: 1px solid rgba(247, 243, 232, 0.14);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(12px);
      overflow: hidden;
    }

    .arena-panel::before {
      content: "";
      position: absolute;
      width: 210px;
      height: 210px;
      right: -70px;
      top: -80px;
      background: radial-gradient(circle, rgba(185,138,59,0.36), transparent 62%);
    }

    .panel-top {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-bottom: 18px;
    }

    .panel-title {
      font-size: 20px;
      font-weight: 850;
      color: #FFF8E5;
    }

    .status-badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(36, 191, 165, 0.13);
      color: #A7F3E7;
      font-size: 13px;
      font-weight: 750;
      border: 1px solid rgba(36, 191, 165, 0.22);
    }

    .score-stack {
      display: grid;
      gap: 12px;
    }

    .score-row {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      background: rgba(11, 21, 18, 0.54);
      border: 1px solid rgba(247, 243, 232, 0.12);
    }

    .team-line {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .team-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--green-800), rgba(185, 138, 59, 0.85));
      display: grid;
      place-items: center;
      color: var(--light);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .team-name {
      font-weight: 800;
      color: #FFF8E5;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .team-meta {
      font-size: 12px;
      color: rgba(247, 243, 232, 0.60);
    }

    .score-num {
      color: var(--gold-600);
      font-size: 26px;
      font-weight: 900;
      min-width: 44px;
      text-align: right;
    }

    .panel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .panel-note {
      margin-top: 16px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(217, 130, 43, 0.14);
      color: #FFE1B2;
      font-size: 13px;
      border-left: 4px solid var(--amber-600);
    }

    .hero-index {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 44px;
    }

    .index-card {
      padding: 18px;
      border-radius: 20px;
      background: rgba(247, 243, 232, 0.09);
      border: 1px solid rgba(247, 243, 232, 0.13);
      backdrop-filter: blur(10px);
      transition: transform var(--speed), background var(--speed), border-color var(--speed);
    }

    .index-card:hover {
      transform: translateY(-4px);
      background: rgba(247, 243, 232, 0.13);
      border-color: rgba(185, 138, 59, 0.42);
    }

    .index-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(185, 138, 59, 0.20);
      color: #FFD891;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .index-card h3 {
      color: #FFF8E5;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .index-card p {
      color: rgba(247, 243, 232, 0.72);
      font-size: 14px;
      line-height: 1.55;
    }

    .archive-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
      gap: 32px;
      align-items: stretch;
    }

    .timeline {
      position: relative;
      padding: 30px;
      border-radius: var(--radius-xl);
      background: var(--paper);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 46px;
      top: 44px;
      bottom: 44px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold-600), rgba(185,138,59,0.18));
    }

    .time-item {
      position: relative;
      padding-left: 48px;
      padding-bottom: 26px;
    }

    .time-item:last-child {
      padding-bottom: 0;
    }

    .time-dot {
      position: absolute;
      left: 9px;
      top: 4px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--green-900);
      border: 4px solid #E7D1A5;
      box-shadow: 0 0 0 5px rgba(185,138,59,0.12);
      z-index: 1;
    }

    .time-item h3 {
      font-size: 20px;
      color: var(--green-900);
      margin-bottom: 7px;
    }

    .time-item p {
      color: var(--muted);
    }

    .archive-cover {
      position: relative;
      min-height: 100%;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--green-900);
    }

    .archive-cover img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      transition: transform 500ms ease;
    }

    .archive-cover:hover img {
      transform: scale(1.04);
    }

    .cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 20%, rgba(11, 21, 18, 0.88) 100%);
      display: flex;
      align-items: flex-end;
      padding: 26px;
    }

    .cover-card {
      color: var(--light);
    }

    .cover-card .tag {
      background: rgba(185, 138, 59, 0.18);
      color: #F6D99B;
      border-color: rgba(185, 138, 59, 0.36);
      margin-bottom: 12px;
    }

    .cover-card h3 {
      font-size: 24px;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .cover-card p {
      color: rgba(247, 243, 232, 0.75);
      font-size: 14px;
    }

    .score-section {
      background:
        linear-gradient(180deg, rgba(18,56,47,0.04), rgba(18,56,47,0.00)),
        var(--paper-soft);
      border-block: 1px solid rgba(18, 56, 47, 0.08);
    }

    .score-board {
      background: var(--paper);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .score-head,
    .match-row {
      display: grid;
      grid-template-columns: 1.1fr 1.4fr 0.8fr 1fr 0.8fr;
      gap: 16px;
      align-items: center;
      padding: 18px 22px;
    }

    .score-head {
      background: var(--green-900);
      color: #F7F3E8;
      font-weight: 800;
      font-size: 14px;
    }

    .match-row {
      border-top: 1px solid rgba(18, 56, 47, 0.09);
      transition: background var(--speed);
    }

    .match-row:hover {
      background: #F8F3E8;
    }

    .match-status {
      display: inline-flex;
      width: max-content;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(36, 191, 165, 0.12);
      color: #137C6C;
      font-weight: 800;
      font-size: 13px;
    }

    .match-status.amber {
      background: rgba(217, 130, 43, 0.13);
      color: #9B5716;
    }

    .match-vs {
      font-weight: 800;
      color: var(--green-900);
    }

    .match-score {
      font-weight: 900;
      font-size: 20px;
      color: var(--gold-600);
    }

    .link-more {
      display: inline-flex;
      width: max-content;
      align-items: center;
      gap: 6px;
      color: var(--green-900);
      font-weight: 800;
      border-bottom: 2px solid transparent;
    }

    .link-more:hover {
      color: var(--cyan-500);
      border-color: var(--cyan-500);
    }

    .guide-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
      gap: 28px;
    }

    .steps-card,
    .risk-card,
    .compare-wrap,
    .topic-card,
    .form-card,
    .proof-card {
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
    }

    .steps-card {
      padding: 30px;
    }

    .step-list {
      display: grid;
      gap: 16px;
    }

    .step-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 16px;
      align-items: start;
      padding: 18px;
      border-radius: 18px;
      background: #FBFAF5;
      border: 1px solid rgba(18, 56, 47, 0.08);
    }

    .step-num {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--green-900);
      color: var(--gold-600);
      font-weight: 900;
    }

    .step-item h3 {
      color: var(--green-900);
      font-size: 19px;
      margin-bottom: 4px;
    }

    .step-item p {
      color: var(--muted);
      font-size: 15px;
    }

    .risk-card {
      padding: 28px;
      background:
        linear-gradient(180deg, rgba(11,21,18,0.92), rgba(18,56,47,0.96)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color: var(--light);
      position: relative;
      overflow: hidden;
    }

    .risk-card::before {
      content: "!";
      position: absolute;
      right: 24px;
      top: 8px;
      font-size: 112px;
      line-height: 1;
      font-weight: 900;
      color: rgba(185, 138, 59, 0.12);
    }

    .risk-card h3 {
      position: relative;
      font-size: 24px;
      margin-bottom: 14px;
      color: #FFE6B0;
    }

    .risk-list {
      position: relative;
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .risk-list li {
      padding-left: 24px;
      color: rgba(247, 243, 232, 0.80);
      font-size: 15px;
      position: relative;
    }

    .risk-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--amber-600);
    }

    .compare-wrap {
      overflow: hidden;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--paper);
    }

    .compare-table th,
    .compare-table td {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(18, 56, 47, 0.09);
      text-align: left;
      vertical-align: top;
    }

    .compare-table th {
      background: var(--green-900);
      color: var(--light);
      font-weight: 850;
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .compare-table td:first-child {
      color: var(--green-900);
      font-weight: 850;
      width: 20%;
    }

    .compare-table td:nth-child(2) {
      color: #265147;
    }

    .compare-table td:nth-child(3) {
      color: #7A4E20;
    }

    .warning-banner {
      margin-top: 18px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 18px;
      border-left: 5px solid var(--amber-600);
      background: rgba(217, 130, 43, 0.12);
      color: #6D4317;
      font-weight: 650;
    }

    .topics-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
    }

    .topic-card {
      overflow: hidden;
      display: grid;
      grid-template-columns: 45% 55%;
      min-height: 260px;
      transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
    }

    .topic-card.large {
      grid-column: 1 / -1;
      grid-template-columns: 52% 48%;
      min-height: 300px;
    }

    .topic-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(185, 138, 59, 0.42);
    }

    .topic-img {
      overflow: hidden;
      background: var(--green-900);
      min-height: 220px;
    }

    .topic-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 500ms ease;
    }

    .topic-card:hover .topic-img img {
      transform: scale(1.06);
    }

    .topic-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .topic-body .tag {
      width: max-content;
      background: rgba(18, 56, 47, 0.06);
      color: var(--green-900);
      border-color: rgba(18, 56, 47, 0.12);
      margin-bottom: 12px;
    }

    .topic-card:hover .topic-body .tag {
      background: rgba(185, 138, 59, 0.14);
      color: #8A6429;
      border-color: rgba(185, 138, 59, 0.28);
    }

    .topic-body h3 {
      font-size: 23px;
      line-height: 1.3;
      color: var(--green-900);
      margin-bottom: 10px;
    }

    .topic-body p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .proof-section {
      padding: 64px 0;
      background: var(--green-950);
      color: var(--light);
      position: relative;
      overflow: hidden;
    }

    .proof-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(185, 138, 59, 0.18), transparent 28%),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      opacity: 0.25;
    }

    .proof-inner {
      position: relative;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      align-items: center;
    }

    .proof-card {
      background: rgba(247, 243, 232, 0.08);
      border-color: rgba(247, 243, 232, 0.14);
      padding: 26px;
      color: var(--light);
      backdrop-filter: blur(12px);
    }

    .proof-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      list-style: none;
    }

    .proof-list li {
      padding: 16px;
      border-radius: 16px;
      background: rgba(247, 243, 232, 0.08);
      border: 1px solid rgba(247, 243, 232, 0.12);
    }

    .proof-list strong {
      display: block;
      color: #F2D08B;
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .proof-list span {
      color: rgba(247, 243, 232, 0.72);
      font-size: 14px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: 34px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 104px;
      padding: 26px;
      border-radius: var(--radius-xl);
      background: var(--green-900);
      color: var(--light);
      box-shadow: var(--shadow);
    }

    .faq-aside h2 {
      font-size: 28px;
      line-height: 1.25;
      margin-bottom: 12px;
      color: #FFE6B0;
    }

    .faq-aside p {
      color: rgba(247, 243, 232, 0.78);
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--paper);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      padding: 20px 22px;
      background: transparent;
      color: var(--green-900);
      font-weight: 850;
      font-size: 17px;
    }

    .faq-question:hover {
      background: #FBF7ED;
    }

    .faq-question:focus-visible,
    .btn:focus-visible,
    .main-nav a:focus-visible,
    .footer-links a:focus-visible {
      outline: 3px solid rgba(36, 191, 165, 0.35);
      outline-offset: 3px;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-100);
      color: var(--green-900);
      flex: 0 0 auto;
      transition: transform var(--speed), background var(--speed);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(185, 138, 59, 0.18);
      color: var(--gold-700);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 260ms ease;
    }

    .faq-answer p {
      padding: 0 22px 20px;
      color: var(--muted);
    }

    .cta-section {
      padding: 0 0 var(--section);
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(18,56,47,0.97), rgba(11,21,18,0.94)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color: var(--light);
      padding: 38px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .cta-box::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -90px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(185, 138, 59, 0.34);
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.25;
      color: #FFE6B0;
      margin-bottom: 12px;
    }

    .cta-content p {
      color: rgba(247, 243, 232, 0.78);
      max-width: 670px;
    }

    .form-card {
      position: relative;
      z-index: 1;
      padding: 24px;
      background: rgba(251, 250, 245, 0.96);
      color: var(--text);
    }

    .form-card h3 {
      color: var(--green-900);
      margin-bottom: 14px;
      font-size: 21px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-grid .full {
      grid-column: 1 / -1;
    }

    .form-note {
      color: var(--muted);
      font-size: 13px;
      margin-top: 12px;
      line-height: 1.55;
    }

    .site-footer {
      background: #09120F;
      color: rgba(247, 243, 232, 0.74);
      padding: 54px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.7fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(247, 243, 232, 0.12);
    }

    .footer-title {
      color: #FFE6B0;
      font-weight: 850;
      margin-bottom: 14px;
      font-size: 18px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer-brand .brand-name {
      color: #FFE6B0;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: var(--cyan-500);
      padding-left: 3px;
    }

    .footer-warning {
      padding: 16px;
      border-radius: 18px;
      background: rgba(217, 130, 43, 0.10);
      border-left: 4px solid var(--amber-600);
      color: #F4C88A;
      font-size: 14px;
    }

    .copyright {
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
      color: rgba(247, 243, 232, 0.55);
    }

    @media (max-width: 1080px) {
      .nav-actions .btn {
        display: none;
      }

      .hero-mosaic,
      .archive-grid,
      .guide-grid,
      .proof-inner,
      .faq-wrap,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .hero-index {
        grid-template-columns: repeat(2, 1fr);
      }

      .archive-cover img {
        min-height: 340px;
      }

      .faq-aside {
        position: static;
      }
    }

    @media (max-width: 820px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav-wrap {
        min-height: 68px;
      }

      .brand {
        min-width: 0;
      }

      .brand-sub {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .main-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 20px;
        background: rgba(246, 243, 236, 0.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-inner {
        padding: 70px 0 32px;
      }

      .hero-mosaic {
        gap: 26px;
      }

      .arena-panel {
        padding: 16px;
        border-radius: 24px;
      }

      .hero-index {
        margin-top: 30px;
      }

      .section {
        padding: 64px 0;
      }

      .section-head {
        display: block;
      }

      .score-board {
        background: transparent;
        border: 0;
        box-shadow: none;
        display: grid;
        gap: 14px;
      }

      .score-head {
        display: none;
      }

      .match-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
        background: var(--paper);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
      }

      .match-row > *::before {
        display: block;
        font-size: 12px;
        color: var(--muted);
        font-weight: 700;
        margin-bottom: 2px;
      }

      .match-row > *:nth-child(1)::before { content: "赛事状态"; }
      .match-row > *:nth-child(2)::before { content: "对阵"; }
      .match-row > *:nth-child(3)::before { content: "比分"; }
      .match-row > *:nth-child(4)::before { content: "更新时间"; }
      .match-row > *:nth-child(5)::before { content: "解读入口"; }

      .topics-grid {
        grid-template-columns: 1fr;
      }

      .topic-card,
      .topic-card.large {
        grid-column: auto;
        grid-template-columns: 1fr;
      }

      .topic-img {
        aspect-ratio: 16 / 9;
        min-height: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 540px) {
      body {
        font-size: 15px;
      }

      .brand-name {
        font-size: 16px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-cta,
      .cta-content .hero-cta {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        white-space: normal;
      }

      .notice-strip {
        display: block;
      }

      .notice-strip strong {
        display: block;
        margin-bottom: 4px;
      }

      .hero-index {
        grid-template-columns: 1fr;
      }

      .score-row {
        grid-template-columns: 1fr;
      }

      .score-num {
        text-align: left;
      }

      .timeline {
        padding: 22px;
      }

      .timeline::before {
        left: 32px;
      }

      .time-item {
        padding-left: 36px;
      }

      .time-dot {
        left: 2px;
      }

      .step-item {
        grid-template-columns: 1fr;
      }

      .compare-wrap {
        overflow-x: auto;
      }

      .compare-table {
        min-width: 720px;
      }

      .proof-list,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .cta-box {
        padding: 26px 18px;
        border-radius: 24px;
      }

      .topic-body,
      .steps-card,
      .risk-card {
        padding: 22px;
      }
    }

/* roulang page: category1 */
:root{
      --green:#12382F;
      --green-2:#0B1512;
      --green-3:#1D4A3F;
      --gold:#B98A3B;
      --gold-2:#D6A653;
      --cyan:#24BFA5;
      --amber:#D9822B;
      --bg:#F6F3EC;
      --paper:#FFFFFF;
      --paper-2:#FBFAF5;
      --text:#1C2421;
      --muted:#5E6863;
      --light:#F7F3E8;
      --border:rgba(18,56,47,.12);
      --border-dark:rgba(247,243,232,.14);
      --shadow:0 14px 34px rgba(18,56,47,.10);
      --shadow-soft:0 8px 22px rgba(18,56,47,.07);
      --radius:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1200px;
    }
    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      background:
        radial-gradient(circle at 10% 0%, rgba(185,138,59,.12), transparent 30%),
        linear-gradient(180deg,#F8F5EE 0%, var(--bg) 58%, #EFE9DC 100%);
      color:var(--text);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease, background .22s ease, transform .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer;border:none}
    :focus-visible{outline:3px solid rgba(36,191,165,.35);outline-offset:3px}
    .container{width:min(var(--container), calc(100% - 40px));margin:0 auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,21,18,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--border-dark);
    }
    .header-inner{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:13px;
      background:
        linear-gradient(135deg, rgba(185,138,59,.95), rgba(36,191,165,.72)),
        radial-gradient(circle at 30% 30%, #fff, transparent 28%);
      box-shadow:0 10px 20px rgba(0,0,0,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:9px;
      border:1px solid rgba(11,21,18,.5);
      border-radius:9px;
      transform:rotate(45deg);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.25}
    .brand-name{font-weight:800;color:var(--light);font-size:18px;letter-spacing:.2px}
    .brand-sub{font-size:12px;color:rgba(247,243,232,.62);margin-top:2px}
    .main-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }
    .main-nav a{
      color:rgba(247,243,232,.78);
      padding:10px 14px;
      border-radius:999px;
      font-size:14px;
      position:relative;
      white-space:nowrap;
    }
    .main-nav a:hover{
      color:var(--light);
      background:rgba(247,243,232,.08);
    }
    .main-nav a.active{
      color:#13231E;
      background:var(--gold);
      font-weight:700;
      box-shadow:0 8px 18px rgba(185,138,59,.25);
    }
    .header-action{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:12px;
      background:rgba(36,191,165,.12);
      color:var(--light);
      border:1px solid rgba(36,191,165,.34);
      font-weight:700;
      font-size:14px;
    }
    .nav-cta:hover{background:rgba(36,191,165,.2);transform:translateY(-1px)}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:12px;
      background:rgba(247,243,232,.08);
      color:var(--light);
      border:1px solid var(--border-dark);
    }
    .menu-toggle span{
      width:18px;
      height:2px;
      background:currentColor;
      display:block;
      margin:5px auto;
      border-radius:2px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:12px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--gold),var(--gold-2));
      color:#10231E;
      box-shadow:0 12px 24px rgba(185,138,59,.22);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 30px rgba(185,138,59,.30)}
    .btn-secondary{
      background:rgba(255,255,255,.72);
      color:var(--green);
      border-color:rgba(18,56,47,.22);
    }
    .btn-secondary:hover{background:#EAF3EF;border-color:rgba(36,191,165,.46);transform:translateY(-2px)}
    .badge,.tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      color:var(--green);
      background:rgba(18,56,47,.08);
      border:1px solid rgba(18,56,47,.10);
      line-height:1;
    }
    .badge:before,.tag.active:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(185,138,59,.15);
    }
    .hero{
      position:relative;
      padding:72px 0 64px;
      overflow:hidden;
      background:
        linear-gradient(90deg, rgba(246,243,236,.96), rgba(246,243,236,.82)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border-bottom:1px solid var(--border);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:auto -120px -180px auto;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(36,191,165,.16), transparent 68%);
      pointer-events:none;
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--muted);
      font-size:14px;
      margin-bottom:22px;
    }
    .breadcrumb a:hover{color:var(--cyan)}
    .breadcrumb span{color:rgba(94,104,99,.75)}
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.75fr);
      gap:42px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .hero h1{
      font-size:clamp(30px,4.1vw,48px);
      line-height:1.18;
      letter-spacing:-.8px;
      color:var(--green);
      margin:18px 0 18px;
      font-weight:850;
      max-width:780px;
    }
    .hero-lead{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-note{
      margin-top:22px;
      padding:14px 16px;
      border-left:4px solid var(--amber);
      background:rgba(217,130,43,.10);
      border-radius:0 14px 14px 0;
      color:#5E4324;
      font-size:14px;
      max-width:740px;
    }
    .hero-panel{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(18,56,47,.12);
      border-radius:28px;
      padding:18px;
      box-shadow:var(--shadow);
      transform:rotate(1deg);
    }
    .hero-panel-inner{
      border-radius:22px;
      overflow:hidden;
      background:var(--green-2);
      position:relative;
    }
    .hero-panel-inner img{
      width:100%;
      aspect-ratio:4/3;
      object-fit:cover;
      opacity:.82;
      transform:scale(1.02);
    }
    .hero-panel-inner:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(11,21,18,.12), rgba(11,21,18,.88));
    }
    .panel-caption{
      position:absolute;
      left:18px;
      right:18px;
      bottom:18px;
      z-index:2;
      color:var(--light);
    }
    .panel-caption strong{
      display:block;
      font-size:22px;
      line-height:1.35;
      margin-bottom:8px;
    }
    .panel-caption p{
      color:rgba(247,243,232,.76);
      font-size:14px;
      line-height:1.65;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .tag-row .tag{
      background:rgba(255,255,255,.72);
      cursor:default;
    }
    .tag-row .tag.active{
      background:var(--green);
      color:var(--light);
      border-color:rgba(18,56,47,.24);
    }
    main{position:relative}
    .section{padding:76px 0}
    .section-tight{padding:56px 0}
    .section-head{
      max-width:760px;
      margin-bottom:30px;
    }
    .section-eyebrow{
      color:var(--gold);
      font-weight:850;
      font-size:14px;
      margin-bottom:8px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .section-eyebrow:before{
      content:"";
      width:26px;
      height:2px;
      background:var(--gold);
      border-radius:999px;
    }
    h2{
      color:var(--green);
      font-size:clamp(25px,3vw,34px);
      line-height:1.28;
      margin-bottom:12px;
      letter-spacing:-.35px;
    }
    .section-head p{color:var(--muted);font-size:16px}
    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:28px;
      align-items:start;
    }
    .article-list{
      display:grid;
      gap:18px;
    }
    .article-card{
      display:grid;
      grid-template-columns:220px minmax(0,1fr);
      gap:20px;
      padding:18px;
      background:rgba(255,255,255,.88);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .article-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(36,191,165,.24);
    }
    .article-thumb{
      border-radius:18px;
      overflow:hidden;
      background:var(--green);
      min-height:154px;
    }
    .article-thumb img{
      width:100%;
      height:100%;
      aspect-ratio:4/3;
      object-fit:cover;
      transition:transform .35s ease;
    }
    .article-card:hover .article-thumb img{transform:scale(1.06)}
    .article-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:10px;
    }
    .date{
      color:var(--muted);
      font-size:13px;
      padding:4px 0;
    }
    .article-card h3{
      font-size:22px;
      line-height:1.35;
      color:var(--green);
      margin-bottom:8px;
    }
    .article-card h3 a:hover{color:var(--cyan)}
    .article-card p{
      color:var(--muted);
      line-height:1.72;
      margin-bottom:14px;
    }
    .read-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green);
      font-weight:800;
      font-size:14px;
    }
    .read-link:after{
      content:"";
      width:18px;
      height:2px;
      background:var(--gold);
      transition:width .22s ease, background .22s ease;
    }
    .read-link:hover{color:var(--cyan)}
    .read-link:hover:after{width:30px;background:var(--cyan)}
    .sidebar{
      position:sticky;
      top:98px;
      display:grid;
      gap:16px;
    }
    .side-card{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-soft);
    }
    .side-card.dark{
      background:linear-gradient(145deg,var(--green),#0F2A24);
      color:var(--light);
      border-color:rgba(185,138,59,.24);
    }
    .side-card.warning{
      border-left:5px solid var(--amber);
      background:#FFF8EC;
    }
    .side-card h3{
      font-size:20px;
      line-height:1.35;
      color:var(--green);
      margin-bottom:12px;
    }
    .side-card.dark h3{color:var(--light)}
    .side-card p,.side-card li{color:var(--muted);font-size:14px}
    .side-card.dark p,.side-card.dark li{color:rgba(247,243,232,.76)}
    .side-list{
      list-style:none;
      display:grid;
      gap:10px;
      margin-top:12px;
    }
    .side-list li{
      display:flex;
      gap:9px;
      align-items:flex-start;
      padding-bottom:10px;
      border-bottom:1px dashed rgba(18,56,47,.12);
    }
    .side-list li:last-child{border-bottom:none;padding-bottom:0}
    .side-list li:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
      margin-top:8px;
      flex:0 0 auto;
    }
    .keyword-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:12px;
    }
    .keyword-cloud span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(18,56,47,.07);
      color:var(--green);
      font-size:13px;
      font-weight:700;
    }
    .feature-band{
      background:linear-gradient(135deg,var(--green-2),var(--green));
      color:var(--light);
      border-radius:30px;
      padding:34px;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .feature-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(185,138,59,.10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(185,138,59,.08) 1px, transparent 1px);
      background-size:46px 46px;
      opacity:.55;
      pointer-events:none;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:26px;
      position:relative;
      z-index:1;
      align-items:center;
    }
    .feature-band h2{color:var(--light)}
    .feature-band p{color:rgba(247,243,232,.76)}
    .score-table-wrap{
      overflow-x:auto;
      border-radius:18px;
      border:1px solid rgba(247,243,232,.14);
      background:rgba(255,255,255,.06);
    }
    .score-table{
      width:100%;
      border-collapse:collapse;
      min-width:620px;
      color:var(--light);
    }
    .score-table th,.score-table td{
      padding:14px 16px;
      text-align:left;
      border-bottom:1px solid rgba(247,243,232,.12);
      font-size:14px;
    }
    .score-table th{
      color:#E7C37C;
      font-weight:800;
      background:rgba(0,0,0,.12);
    }
    .score-table tr:last-child td{border-bottom:none}
    .status{
      display:inline-flex;
      padding:4px 9px;
      border-radius:999px;
      background:rgba(36,191,165,.14);
      color:#8CF2DD;
      font-weight:800;
      font-size:12px;
    }
    .check-section{
      background:rgba(255,255,255,.48);
      border-top:1px solid rgba(18,56,47,.08);
      border-bottom:1px solid rgba(18,56,47,.08);
    }
    .check-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .check-card{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .check-card .num{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(185,138,59,.14);
      color:var(--green);
      font-weight:900;
      margin-bottom:14px;
    }
    .check-card h3{
      color:var(--green);
      font-size:20px;
      margin-bottom:8px;
    }
    .check-card p{color:var(--muted);font-size:15px}
    .faq-list{
      display:grid;
      gap:14px;
    }
    .faq-item{
      background:var(--paper);
      border:1px solid var(--border);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      font-weight:850;
      color:var(--green);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary:after{
      content:"+";
      width:30px;
      height:30px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(18,56,47,.08);
      color:var(--gold);
      font-size:20px;
      flex:0 0 auto;
      transition:transform .22s ease, background .22s ease;
    }
    .faq-item[open] summary:after{
      content:"−";
      background:rgba(36,191,165,.12);
      transform:rotate(180deg);
    }
    .faq-item .answer{
      padding:0 22px 20px;
      color:var(--muted);
      border-top:1px solid rgba(18,56,47,.08);
    }
    .faq-item .answer p{padding-top:15px}
    .cta-panel{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      padding:34px;
      border-radius:30px;
      background:
        linear-gradient(135deg, rgba(185,138,59,.16), rgba(36,191,165,.10)),
        var(--paper);
      border:1px solid rgba(185,138,59,.20);
      box-shadow:var(--shadow);
    }
    .cta-panel h2{margin-bottom:8px}
    .cta-panel p{color:var(--muted)}
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .site-footer{
      background:var(--green-2);
      color:rgba(247,243,232,.72);
      padding:58px 0 24px;
      border-top:1px solid rgba(185,138,59,.22);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .6fr 1fr;
      gap:34px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .footer-brand .brand-name{font-size:19px}
    .site-footer p{font-size:14px;line-height:1.8;color:rgba(247,243,232,.66)}
    .footer-title{
      color:var(--light);
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a{color:rgba(247,243,232,.68);font-size:14px}
    .footer-links a:hover{color:var(--cyan)}
    .footer-warning{
      border-left:4px solid var(--amber);
      background:rgba(217,130,43,.10);
      padding:13px 14px;
      border-radius:0 14px 14px 0;
      font-size:14px;
      line-height:1.75;
      color:rgba(247,243,232,.72);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:36px;
      padding-top:20px;
      border-top:1px solid rgba(247,243,232,.10);
      font-size:13px;
      color:rgba(247,243,232,.48);
    }
    @media (max-width:1024px){
      .header-action{display:none}
      .content-layout{grid-template-columns:1fr}
      .sidebar{position:static;grid-template-columns:repeat(2,1fr)}
      .hero-grid{grid-template-columns:1fr}
      .hero-panel{max-width:560px;transform:none}
      .feature-grid{grid-template-columns:1fr}
      .check-grid{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px, var(--container))}
      .header-inner{min-height:68px}
      .menu-toggle{display:block}
      .main-nav{
        position:absolute;
        left:14px;
        right:14px;
        top:76px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        background:rgba(11,21,18,.98);
        border:1px solid var(--border-dark);
        border-radius:18px;
        padding:12px;
        box-shadow:0 22px 50px rgba(0,0,0,.32);
      }
      .main-nav.open{display:flex}
      .main-nav a{padding:13px 14px}
      .brand-sub{display:none}
      .hero{padding:46px 0 48px}
      .hero-actions .btn{width:100%}
      .tag-row{gap:8px}
      .section{padding:56px 0}
      .article-card{grid-template-columns:1fr}
      .article-thumb{min-height:auto}
      .sidebar{grid-template-columns:1fr}
      .check-grid{grid-template-columns:1fr}
      .cta-panel{grid-template-columns:1fr;padding:26px}
      .cta-actions{justify-content:flex-start}
      .cta-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }
    @media (max-width:520px){
      body{font-size:15px}
      .brand-name{font-size:16px}
      .hero h1{font-size:29px}
      .hero-lead{font-size:15.5px}
      .hero-panel{padding:12px;border-radius:22px}
      .panel-caption strong{font-size:18px}
      .feature-band{padding:24px 18px;border-radius:22px}
      .article-card,.side-card,.check-card{padding:18px;border-radius:18px}
      .article-card h3{font-size:19px}
      .faq-item summary{padding:17px 18px}
      .faq-item .answer{padding:0 18px 18px}
    }
