/* roulang page: index */
:root {
    --paper: #F3F5EF;
    --surface: #FFFFFF;
    --line: #DCE4DC;
    --ink: #1C2A22;
    --sub: #5B6A60;
    --night: #0A1D15;
    --deep: #0E3523;
    --lime: #A8E63D;
    --orange: #F26B21;
    --live: #FF4D3F;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(10, 29, 21, 0.08);
    --shadow-hover: 0 18px 40px rgba(10, 29, 21, 0.13);
    --container: 1200px;
    --transition: 0.25s ease;
  }
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    display: block;
  }
  a {
    color: var(--deep);
    text-decoration: none;
    transition: color .2s ease;
  }
  a:hover {
    color: #b5341d;
  }
  button,
  input,
  select {
    font: inherit;
  }
  button {
    cursor: pointer;
  }
  ul,
  ol {
    list-style: none;
  }
  .container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
  }
  @media (max-width: 520px) {
    .container {
      padding-inline: 16px;
    }
  }
  .section {
    padding-block: 88px;
  }
  @media (max-width: 767px) {
    .section {
      padding-block: 56px;
    }
  }
  .section-anchor {
    scroll-margin-top: 110px;
  }
  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 13px 22px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
  }
  .btn:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
  }
  .btn-lime {
    background: var(--lime);
    color: var(--deep);
    box-shadow: 0 8px 18px rgba(168, 230, 61, 0.22);
  }
  .btn-lime:hover {
    background: #8FCC29;
    color: var(--deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(168, 230, 61, 0.3);
  }
  .btn-lime i {
    transition: transform .25s ease;
  }
  .btn-lime:hover i {
    transform: translateX(4px);
  }
  .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #F4F7F3;
  }
  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
  }
  .btn-soft {
    background: rgba(168, 230, 61, 0.12);
    border-color: rgba(168, 230, 61, 0.3);
    color: var(--deep);
  }
  .btn-soft:hover {
    background: rgba(168, 230, 61, 0.22);
    border-color: rgba(168, 230, 61, 0.55);
    color: var(--deep);
    transform: translateY(-2px);
  }
  .btn-white {
    background: #fff;
    color: var(--deep);
  }
  .btn-white:hover {
    background: var(--lime);
    color: var(--deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  }
  .btn-sm {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
  /* ---------- Dock header ---------- */
  .site-header {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 80;
    padding-inline: 16px;
    transition: top .3s ease;
  }
  .site-header.scrolled {
    top: 4px;
  }
  .dock-nav {
    max-width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 29, 21, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 10px 16px 10px 18px;
    box-shadow: 0 16px 42px rgba(6, 22, 15, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
  }
  .site-header.scrolled .dock-nav {
    padding-block: 6px;
    box-shadow: 0 10px 34px rgba(6, 22, 15, 0.22);
  }
  .brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 0;
  }
  .brand-side {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--lime) 0%, var(--lime) 42%, var(--deep) 42%, var(--deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.24);
  }
  .brand-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  @media (max-width: 520px) {
    .brand-name {
      font-size: 15px;
    }
  }
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-inline: auto;
  }
  .nav-link {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 9px 13px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .nav-link.is-active {
    background: var(--lime);
    color: var(--deep);
    font-weight: 600;
  }
  .nav-link:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
  }
  .dock-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .dock-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--deep);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    transition: background .2s ease, transform .2s ease;
  }
  .dock-login:hover {
    background: #8FCC29;
    color: var(--deep);
    transform: translateY(-1px);
  }
  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid var(--lime);
  }
  .mobile-panel {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    z-index: 79;
    background: var(--deep);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 20, 13, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all .25s ease;
    backdrop-filter: blur(14px);
  }
  .mobile-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-panel .m-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 10px;
    border-radius: 12px;
  }
  .mobile-panel .m-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .mobile-panel .m-link.is-active {
    background: var(--lime);
    color: var(--deep);
    font-weight: 600;
  }
  @media (max-width: 1023px) {
    .main-nav {
      display: none;
    }
    .nav-toggle {
      display: inline-flex;
    }
    .dock-login span {
      display: none;
    }
    .dock-login {
      width: 40px;
      height: 40px;
      padding: 0;
      justify-content: center;
      border-radius: 12px;
    }
  }
  @media (min-width: 1024px) {
    .mobile-panel {
      display: none;
    }
  }
  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    background: var(--night);
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 30px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(10, 29, 21, 0.7) 10%, rgba(10, 29, 21, 0.28) 70%), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
    background-color: #0A1D15;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(0deg, rgba(10, 29, 21, 1) 0%, transparent 100%);
    opacity: 0.55;
  }
  .hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
  }
  .hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lime);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .hero-kicker::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: var(--lime);
  }
  .hero-title {
    color: #fff;
    font-size: clamp(42px, 6vw, 58px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 26px;
  }
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
  .hero-stage {
    position: relative;
  }
  .stage-card {
    background: rgba(18, 34, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
  }
  .stage-media {
    position: relative;
    height: 190px;
  }
  .stage-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .stage-media .status-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 29, 21, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .status-pill i {
    color: var(--orange);
    font-size: 10px;
  }
  .stage-info {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stage-series {
    color: var(--lime);
    font-size: 13px;
    margin-bottom: 6px;
  }
  .stage-match {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
  }
  .stage-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }
  .countdown-plate {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 14px 18px 16px;
  }
  .countdown-plate .plate-head {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .plate-head i {
    color: var(--orange);
  }
  .cd-unit {
    background: #12291D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 4px 8px;
    text-align: center;
  }
  .cd-unit b {
    display: block;
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }
  .cd-unit small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 4px;
  }
  .cd-unit.cd-accent b {
    color: var(--lime);
  }
  .cd-unit.cd-warn b {
    color: var(--orange);
  }
  .schedule-strip {
    position: relative;
    z-index: 4;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 12px 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .schedule-strip::-webkit-scrollbar {
    display: none;
  }
  .strip-date {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 10px;
  }
  .strip-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  .strip-item time {
    color: var(--lime);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .strip-item.is-hottest time {
    color: var(--orange);
  }
  @media (max-width: 1023px) {
    .hero {
      padding-top: 130px;
    }
    .hero-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  @media (max-width: 560px) {
    .hero-title {
      font-size: 38px;
    }
    .hero-sub {
      font-size: 15px;
    }
    .stage-media {
      height: 150px;
    }
    .schedule-strip {
      align-items: flex-start;
    }
  }
  /* ---------- Section title ---------- */
  .section-head {
    margin-bottom: 42px;
  }
  .section-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--deep);
    background: rgba(168, 230, 61, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 12px 5px 10px;
  }
  .section-head .eyebrow i {
    color: var(--orange);
  }
  .section-title {
    font-size: 30px;
    font-weight: 800;
    margin-top: 10px;
    line-height: 1.3;
  }
  .section-lead {
    color: var(--sub);
    margin-top: 8px;
    max-width: 680px;
  }
  /* ---------- Schedule timeline ---------- */
  .schedule-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 4px;
  }
  .schedule-card {
    display: grid;
    grid-template-columns: 118px 180px 1fr 172px;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    transition: box-shadow .3s ease, border-color .25s ease, transform .3s ease;
  }
  .schedule-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(14, 53, 35, 0.2);
    transform: translateY(-3px);
  }
  .schedule-time {
    text-align: center;
    padding: 8px 0;
    border-right: 1px solid var(--line);
  }
  .schedule-time .s-day {
    display: block;
    color: var(--deep);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .schedule-time .s-clock {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--night);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .schedule-card.is-ended .schedule-time .s-clock,
  .schedule-card.is-ended .schedule-time .s-day {
    color: #8C9890;
  }
  .schedule-media {
    position: relative;
    border-radius: 14px;
    height: 112px;
    overflow: hidden;
    background: #D5E0D6;
  }
  .schedule-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .schedule-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 29, 21, 0.3) 0%, transparent 60%);
  }
  .signal-badge {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 11px;
    padding: 3px 9px;
    white-space: nowrap;
  }
  .signal-badge.upcoming i {
    color: var(--orange);
  }
  .signal-badge.live i {
    color: var(--live);
    font-size: 8px;
    animation: blink 1.2s infinite;
  }
  .signal-badge.ended i {
    color: #c2c9c3;
  }
  .schedule-main h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
  }
  .schedule-main .match-vs {
    color: var(--deep);
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
  }
  .schedule-main .highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    margin-top: 12px;
  }
  .schedule-main .highlight-list li {
    position: relative;
    color: var(--sub);
    font-size: 13px;
    line-height: 1.6;
  }
  .schedule-main .highlight-list li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: var(--lime);
    margin-right: 7px;
    vertical-align: 2px;
  }
  .schedule-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: 4px;
  }
  .mini-desc {
    color: var(--sub);
    font-size: 13px;
  }
  .mini-desc b {
    color: var(--deep);
    font-variant-numeric: tabular-nums;
  }
  .schedule-card.is-ended .schedule-action .btn {
    border-color: var(--line);
    color: var(--sub);
  }
  @keyframes blink {
    0%, 60% { opacity: 1; }
    61%, 100% { opacity: 0.25; }
  }
  @media (max-width: 1100px) {
    .schedule-card {
      grid-template-columns: 100px 160px 1fr;
    }
    .schedule-action {
      grid-column: 3;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      text-align: right;
    }
  }
  @media (max-width: 840px) {
    .schedule-card {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 14px;
    }
    .schedule-time {
      border-right: 0;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
      padding: 4px 6px 10px;
    }
    .schedule-time .s-clock {
      font-size: 20px;
    }
    .schedule-media {
      height: 150px;
    }
    .schedule-action {
      grid-column: auto;
      flex-direction: column;
      text-align: center;
    }
  }
  /* ---------- News section ---------- */
  .news-section {
    background: var(--paper);
  }
  .news-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
  }
  .news-feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .news-feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
  .news-feature-media {
    height: 190px;
    background: #0E3523 url('/assets/images/coverpic/cover-2.webp') center/cover no-repeat;
  }
  .news-feature-body {
    padding: 18px 22px 22px;
  }
  .news-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 53, 35, 0.08);
    color: var(--deep);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 9px;
    margin-bottom: 8px;
  }
  .news-feature-body h3 {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
  }
  .news-feature-body h3 a:hover {
    color: var(--deep);
    text-decoration: underline;
  }
  .news-feature-body p {
    color: var(--sub);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 7px;
  }
  .news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    margin-top: 14px;
    color: #7A8880;
    font-size: 13px;
  }
  .news-meta time {
    font-variant-numeric: tabular-nums;
  }
  .read-more {
    margin-left: auto;
    font-weight: 600;
    color: var(--deep);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s ease;
  }
  .news-feature-card:hover .read-more {
    gap: 9px;
  }
  .news-side-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .news-mini-item {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 17px;
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .news-mini-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
  .news-mini-item h4 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 3px;
  }
  .news-mini-item h4 a:hover {
    text-decoration: underline;
  }
  .news-mini-item .snippet {
    color: var(--sub);
    font-size: 13px;
    line-height: 1.65;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-mini-item .m-time {
    color: #8C9890;
    font-size: 12px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .empty-panel {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed #B6C2B8;
    border-radius: 20px;
    padding: 44px 20px;
    text-align: center;
    color: var(--sub);
    font-size: 15px;
  }
  .empty-panel i {
    font-size: 28px;
    color: #ADB9B1;
    margin-bottom: 8px;
    display: inline-block;
  }
  @media (max-width: 860px) {
    .news-layout {
      grid-template-columns: 1fr;
    }
  }
  /* ---------- Entry modules ---------- */
  .entry-section {
    background: var(--surface);
  }
  .entry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .entry-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .entry-tile:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }
  .entry-tile a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: inherit;
    padding: 20px;
    gap: 5px;
  }
  .entry-tile a:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: -4px;
  }
  .entry-main {
    background: linear-gradient(135deg, #122719 0%, var(--deep) 100%);
    grid-column: span 2;
    grid-row: span 2;
    min-height: 320px;
    color: #fff;
  }
  .entry-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/coverpic/cover-8.webp') center/cover no-repeat;
    opacity: 0.35;
    z-index: 0;
  }
  .entry-main a {
    position: relative;
    z-index: 1;
  }
  .entry-main .entry-kicker {
    color: var(--lime);
    font-size: 13px;
    font-weight: 600;
  }
  .entry-main h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-top: 4px;
  }
  .entry-main p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    max-width: 260px;
    line-height: 1.7;
  }
  .entry-guide {
    background: #F0F7EA;
    border: 1px solid #D5E7CF;
    grid-column: span 2;
    min-height: 150px;
  }
  .entry-guide h3 {
    color: var(--deep);
    font-size: 25px;
    font-weight: 800;
  }
  .entry-guide p {
    color: var(--sub);
    font-size: 14px;
  }
  .entry-small {
    background: #10211A;
    color: #fff;
    min-height: 150px;
  }
  .entry-small::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
    opacity: 0.24;
  }
  .entry-small a {
    position: relative;
    z-index: 1;
    justify-content: center;
  }
  .entry-small .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--lime);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 6px;
  }
  .entry-small h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
  }
  .entry-small p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
  }
  .entry-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 14px;
    color: var(--lime);
    margin-top: 6px;
  }
  .entry-arrow i {
    transition: transform .22s ease;
  }
  .entry-tile:hover .entry-arrow i {
    transform: translateX(4px);
  }
  @media (max-width: 1023px) {
    .entry-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .entry-main {
      grid-column: span 2;
      grid-row: span 1;
      min-height: 220px;
    }
    .entry-guide {
      grid-column: span 2;
    }
  }
  @media (max-width: 560px) {
    .entry-grid {
      grid-template-columns: 1fr;
    }
    .entry-main,
    .entry-guide {
      grid-column: auto;
    }
    .entry-main {
      min-height: 220px;
    }
  }
  /* ---------- Advantage / login access ---------- */
  .advantage-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
  }
  .browser-window {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .3s ease;
  }
  .browser-top {
    background: #EEF1EC;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .browser-top .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
  }
  .browser-top .dot:nth-child(1) {
    background: #F26B21;
  }
  .browser-top .dot:nth-child(2) {
    background: #F5C84B;
  }
  .browser-top .dot:nth-child(3) {
    background: #7FBF61;
  }
  .browser-url {
    background: #F9FAF8;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--sub);
    font-size: 12px;
    text-align: center;
    padding: 5px 10px;
    margin-left: 6px;
    flex: 1;
    min-width: 0;
  }
  .browser-screen {
    position: relative;
  }
  .browser-screen img {
    height: 220px;
    object-fit: cover;
    width: 100%;
  }
  .browser-screen::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(10, 29, 21, 0.6), transparent);
    pointer-events: none;
  }
  .play-btn {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(168, 230, 61, 0.9);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 0 10px rgba(168, 230, 61, 0.16);
    transition: transform .2s ease;
  }
  .feature-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .feature-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 17px 18px;
    transition: box-shadow .3s ease, transform .3s ease;
  }
  .feature-panel:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
  .feature-panel .f-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: rgba(168, 230, 61, 0.2);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .feature-panel h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .feature-panel p {
    color: var(--sub);
    font-size: 13px;
    line-height: 1.65;
  }
  @media (max-width: 1023px) {
    .advantage-wrap {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  @media (max-width: 500px) {
    .feature-panels {
      grid-template-columns: 1fr;
    }
  }
  /* ---------- FAQ ---------- */
  .faq-wrap {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin-inline: auto;
  }
  .faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .faq-item.open {
    border-color: rgba(14, 53, 35, 0.35);
    box-shadow: var(--shadow);
  }
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    transition: color .2s ease;
  }
  .faq-question:hover {
    color: var(--deep);
  }
  .faq-question:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: -3px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(168, 230, 61, 0.2);
    color: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s ease, background .3s ease;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--lime);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    color: var(--sub);
    font-size: 15px;
    line-height: 1.8;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
  }
  .faq-answer p {
    padding: 0 20px 18px;
    border-top: 1px solid var(--line);
    padding-top: 13px;
  }
  /* ---------- Final CTA ---------- */
  .final-cta-section {
    padding-top: 0;
  }
  .final-card {
    background:
      radial-gradient(circle at 88% 20%, rgba(168, 230, 61, 0.20), transparent 28%),
      linear-gradient(120deg, #0A1D15 0%, #0E3523 100%);
    border-radius: 26px;
    color: #fff;
    padding: 42px 46px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(10, 29, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  .final-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 260px;
    height: 260px;
    background: rgba(168, 230, 61, 0.08);
    border-radius: 50%;
    filter: blur(20px);
  }
  .final-stage-tag {
    color: var(--lime);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .final-card h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
  }
  .final-card h2 span {
    color: var(--lime);
  }
  .final-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    max-width: 460px;
    margin-bottom: 16px;
  }
  .final-btn-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  @media (max-width: 700px) {
    .final-card {
      padding: 30px 20px;
      justify-content: center;
      text-align: center;
    }
    .final-card p {
      margin-inline: auto;
    }
    .final-card h2 {
      font-size: 25px;
    }
    .final-btn-wrap {
      justify-content: center;
    }
  }
  /* ---------- Footer ---------- */
  .site-footer {
    background: var(--night);
    color: rgba(255, 255, 255, 0.74);
    margin-top: 80px;
    padding-top: 62px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.6);
  }
  .footer-brand .brand-name {
    font-size: 20px;
  }
  .footer-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
  }
  .footer-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-link a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.5;
  }
  .footer-link a:hover {
    color: var(--lime);
  }
  .footer-bottom {
    margin-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
  }
  .footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
  }
  .footer-bottom a:hover {
    color: var(--lime);
  }
  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }
  @media (max-width: 520px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .site-footer {
      margin-top: 48px;
    }
  }
  /* ---------- Login modal ---------- */
  .login-modal-mask {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(5, 15, 10, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    backdrop-filter: blur(6px);
  }
  .login-modal-mask.open {
    display: flex;
  }
  .login-box {
    background: var(--paper);
    border-radius: 22px;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    max-height: 92vh;
    overflow-y: auto;
  }
  .login-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background: rgba(14, 53, 35, 0.1);
    color: var(--deep);
    font-size: 16px;
    transition: background .2s ease;
  }
  .login-close:hover {
    background: rgba(14, 53, 35, 0.2);
  }
  .login-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
  }
  .login-box .subline {
    color: var(--sub);
    font-size: 14px;
    margin: 5px 0 22px;
  }
  .login-form label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
  }
  .login-form input {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    width: 100%;
    padding: 11px 13px;
    color: var(--ink);
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .login-form input:focus {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
    border-color: transparent;
  }
  .login-form .input-row {
    margin-bottom: 14px;
  }
  .code-row {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 8px;
  }
  .code-btn {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 12px;
    color: var(--deep);
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    transition: all .2s ease;
  }
  .code-btn:hover {
    border-color: var(--deep);
    color: var(--deep);
    background: rgba(168, 230, 61, 0.12);
  }
  .login-enter-btn {
    width: 100%;
    margin-top: 18px;
  }
  .login-tip {
    font-size: 12px;
    color: var(--sub);
    margin-top: 14px;
    text-align: center;
  }
  @media (max-width: 520px) {
    .login-box {
      padding: 24px 18px;
    }
  }
  /* ---------- misc helpers ---------- */
  .eyebrow-cn {
    color: var(--sub);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .text-lime {
    color: var(--lime);
  }

/* roulang page: article */
:root {
  --paper: #F3F5EF;
  --surface: #FFFFFF;
  --line: #DCE4DC;
  --ink: #1C2A22;
  --sub: #5B6A60;
  --night: #0A1D15;
  --deep: #0E3523;
  --lime: #A8E63D;
  --lime-hover: #8FCC29;
  --orange: #F26B21;
  --live: #FF4D3F;
  --radius-card: 16px;
  --radius-btn: 12px;
  --shadow-card: 0 10px 30px rgba(10, 29, 21, .08);
  --shadow-card-hover: 0 18px 40px rgba(10, 29, 21, .13);
  --font-main: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
}

a {
  color: var(--deep);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.media-frame {
  background: #dfe5de;
  overflow: hidden;
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

/* ===== Dock ===== */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 80;
  padding-left: 16px;
  padding-right: 16px;
  transition: top .3s ease;
}

.site-header.is-scrolled {
  top: 8px;
}

.dock-nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(10, 29, 21, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 8px 10px 8px 12px;
  box-shadow: 0 14px 34px rgba(10, 29, 21, .22);
  transition: box-shadow .3s ease, padding .3s ease, background .3s ease;
}

.site-header.is-scrolled .dock-nav {
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(8, 24, 17, .94);
  box-shadow: 0 12px 28px rgba(10, 29, 21, .28);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 999px;
}

.brand-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.brand-side {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border-radius: 12px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  transition: color .2s ease, background .2s ease, transform .2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .09);
}

.nav-link:active {
  transform: scale(.98);
}

.nav-link.is-active {
  background: var(--lime);
  color: var(--deep);
  font-weight: 700;
}

.nav-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  color: #ffffff;
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dock-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.dock-login:hover {
  background: var(--lime-hover);
  box-shadow: 0 6px 16px rgba(168, 230, 61, .3);
}

.dock-login:active {
  transform: scale(.97);
}

.dock-login:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #ffffff;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, .18);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.site-header.nav-open .main-nav {
  display: flex;
}

/* ===== article hero ===== */
.article-kicker {
  padding-top: 148px;
  padding-bottom: 56px;
  background:
    linear-gradient(130deg, rgba(10, 29, 21, .34) 0%, rgba(10, 29, 21, .18) 46%, rgba(243, 245, 239, .98) 100%),
    url('/assets/images/backpic/back-1.webp') center 20% / cover no-repeat;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.article-kicker::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), transparent 60%);
}

.article-kicker-main {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--sub);
  font-size: 13px;
}

.breadcrumb a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s, color .2s;
  background: rgba(255, 255, 255, .14);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.breadcrumb a:hover {
  color: var(--lime);
  background: rgba(255, 255, 255, .2);
}

.breadcrumb .br-current {
  color: rgba(255, 255, 255, .88);
}

.article-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--deep);
  background: var(--lime);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.article-h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.article-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta-row i {
  color: var(--lime);
}

/* ===== article reading ===== */
.article-main {
  padding: 62px 0 20px;
}

.article-reading {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 38px 42px 42px;
}

.cms-content {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.9;
}

.cms-content > *:first-child {
  margin-top: 0;
}

.cms-content p {
  margin: 0 0 1.5em;
}

.cms-content h2,
.cms-content h3,
.cms-content h4 {
  margin: 1.7em 0 .75em;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.35;
}

.cms-content h2 {
  font-size: 25px;
}

.cms-content h3 {
  font-size: 19px;
}

.cms-content h4 {
  font-size: 16px;
}

.cms-content a {
  color: var(--deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-underline-offset: 5px;
  transition: color .2s, text-decoration-color .2s;
}

.cms-content a:hover {
  color: var(--lime-hover);
  text-decoration-color: var(--deep);
}

.cms-content img {
  margin: 28px 0;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.cms-content figure {
  margin: 28px 0;
}

.cms-content figure img {
  margin: 0;
}

.cms-content figcaption {
  font-size: 13px;
  color: var(--sub);
  padding: 10px 4px 0;
  text-align: center;
  line-height: 1.6;
}

.cms-content ul,
.cms-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.4em;
}

.cms-content li {
  margin-bottom: .5em;
}

.cms-content blockquote {
  margin: 28px 0;
  padding: 16px 20px;
  background: var(--paper);
  border-left: 4px solid var(--lime);
  border-radius: 0 16px 16px 0;
  color: var(--deep);
  font-weight: 500;
}

.cms-content blockquote p:last-child {
  margin-bottom: 0;
}

.cms-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.cms-content th,
.cms-content td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}

.cms-content th {
  background: var(--deep);
  color: #ffffff;
  font-weight: 600;
}

.cms-content tr:nth-child(even) td {
  background: #f8faf6;
}

.cms-content pre {
  margin: 28px 0;
  padding: 18px 20px;
  background: var(--night);
  color: #d8e6d3;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid rgba(255, 255, 255, .08);
}

.cms-content code {
  background: rgba(10, 29, 21, .06);
  padding: .15em .5em;
  border-radius: 6px;
  font-size: .92em;
}

.cms-content pre code {
  background: transparent;
  padding: 0;
}

@media (max-width: 640px) {
  .cms-content table {
    display: block;
    overflow-x: auto;
  }

  .article-body {
    padding: 28px 20px;
  }
}

/* ===== not found ===== */
.not-found-card {
  background: var(--surface);
  border: 1px dashed #b6c5b6;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
}

.not-found-card .nf-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--deep);
  border-radius: 999px;
  font-size: 26px;
  margin-bottom: 18px;
}

.not-found-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--deep);
  margin: 0 0 8px;
}

.not-found-card p {
  color: var(--sub);
  max-width: 360px;
  margin: 0 auto 24px;
}

/* ===== btn ===== */
.btn-lime,
.btn-line,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  border: 1px solid transparent;
  text-decoration: none !important;
}

.btn-lime {
  background: var(--lime);
  color: var(--deep);
}

.btn-lime:hover {
  background: var(--lime-hover);
  box-shadow: 0 12px 22px rgba(168, 230, 61, .3);
  transform: translateY(-2px);
}

.btn-lime i {
  transition: transform .25s ease;
}

.btn-lime:hover i {
  transform: translateX(4px);
}

.btn-lime:active,
.btn-line:active,
.btn-ghost:active,
.btn-dark:active {
  transform: scale(.97);
}

.btn-lime:focus-visible,
.btn-line:focus-visible,
.btn-ghost:focus-visible,
.btn-dark:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.btn-line {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: #ffffff;
}

.btn-line:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #ffffff;
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--deep);
}

.btn-ghost:hover {
  border-color: var(--deep);
  background: var(--paper);
}

.btn-dark {
  background: var(--deep);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--night);
  color: var(--lime);
}

/* ===== 返回栏目 ===== */
.article-return {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 10px;
}

.article-return a i {
  transition: transform .2s;
}

.article-return .back-link:hover i {
  transform: translateX(-4px);
}

/* ===== match strip card ===== */
.match-extra-card {
  border-radius: 20px;
  margin-top: 34px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 26px 28px;
  box-shadow: 0 14px 30px rgba(10, 29, 21, .16);
  position: relative;
  overflow: hidden;
}

.match-extra-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(168, 230, 61, .22), transparent 70%);
  pointer-events: none;
}

.match-extra-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 280px;
}

.match-extra-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.match-extra-info strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.match-extra-info span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

/* ===== related ===== */
.section-related {
  padding-top: 58px;
  padding-bottom: 66px;
}

.related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eyebrow-label::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 999px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.related-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.related-primary {
  grid-column: span 2;
}

.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
}

.related-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.related-card:hover .media-frame img {
  transform: scale(1.04);
}

.related-primary {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.related-primary .related-thumb {
  min-height: 220px;
  background: #dce4dc;
}

.related-card.related-lite .related-thumb {
  min-height: 154px;
  max-height: 170px;
}

.related-body {
  padding: 24px;
}

.related-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--deep);
  background: #edf3e8;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}

.related-body h3 {
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 800;
  transition: color .2s;
}

.related-card:hover .related-body h3 {
  color: var(--deep);
}

.related-body p {
  color: var(--sub);
  font-size: 14px;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--sub);
}

.related-arrow {
  color: var(--deep);
  font-weight: 600;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.related-card:hover .related-arrow {
  gap: 10px;
  color: var(--lime-hover);
}

/* ===== FAQ ===== */
.faq-sub-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 66px 0 78px;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.faq-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-block.is-open {
  border-color: var(--lime);
  box-shadow: 0 8px 20px rgba(10, 29, 21, .08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  cursor: pointer;
  transition: background .2s;
}

.faq-q:hover {
  background: rgba(168, 230, 61, .15);
}

.faq-q:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}

.faq-q .faq-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface);
  color: var(--deep);
  border: 1px solid var(--line);
  font-size: 13px;
  transition: transform .3s, background .3s, color .3s;
}

.faq-block.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--deep);
  color: var(--lime);
  border-color: var(--deep);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-block.is-open .faq-a {
  max-height: 240px;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.85;
  border-top: 1px dashed var(--line);
  margin: 0 20px 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 14px;
}

.faq-a-inner p {
  margin: 0;
}

/* ===== final CTA ===== */
.login-final {
  background: var(--night);
  border-radius: 26px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(10, 29, 21, .2);
}

.login-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(460px at 88% 28%, rgba(168, 230, 61, .15), transparent 72%);
  pointer-events: none;
}

.login-final-copy h2 {
  font-size: 30px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 800;
}

.login-final-copy p {
  color: rgba(255, 255, 255, .72);
  margin: 0;
  font-size: 15px;
}

.login-final-act {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== footer ===== */
.site-footer {
  margin-top: 76px;
  background: var(--night);
  color: rgba(255, 255, 255, .82);
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 30px;
}

.footer-brand .brand-name {
  display: inline-block;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  max-width: 320px;
  margin: 0;
  line-height: 1.85;
}

.footer-title {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 14px;
}

.footer-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .2s, padding-left .2s;
}

.footer-link a:hover {
  color: var(--lime);
  padding-left: 4px;
}

.footer-link a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .56);
}

.footer-bottom i {
  color: var(--lime);
  margin-right: 4px;
}

/* ===== modal ===== */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(10, 29, 21, .66);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 18px;
  opacity: 0;
  transition: opacity .25s;
}

.modal-mask.is-open {
  display: flex;
  opacity: 1;
}

.login-modal-card {
  width: 100%;
  max-width: 430px;
  background: var(--surface);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(10, 29, 21, .24);
  transform: translateY(10px);
  transition: transform .25s;
}

.modal-mask.is-open .login-modal-card {
  transform: translateY(0);
}

.modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--deep);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--deep);
  color: var(--lime);
}

.modal-close:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.auth-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbf7;
  padding: 0 14px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(168, 230, 61, .35);
}

.auth-field input::placeholder {
  color: #9aa89e;
}

.login-modal-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--deep);
  margin: 0;
}

.auth-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px;
}

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--night);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 22px 50px rgba(10, 29, 21, .3);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 12px 16px;
    color: rgba(255, 255, 255, .86);
  }

  .nav-link.is-active {
    background: var(--lime);
    color: var(--deep);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-primary {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .site-header {
    top: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .dock-nav {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 999px;
  }

  .brand-link {
    gap: 0;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-side {
    width: 31px;
    height: 31px;
    font-size: 13px;
  }

  .brand-name {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dock-login .dock-login-txt {
    display: none;
  }

  .dock-login {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .nav-toggle {
    width: 38px;
  }

  .article-kicker {
    padding-top: 116px;
    padding-bottom: 36px;
  }

  .article-kicker-main {
    max-width: 100%;
  }

  .article-reading {
    padding: 0 14px;
  }

  .article-body {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .article-h1 {
    font-size: 28px;
  }

  .article-return {
    flex-direction: column;
    align-items: flex-start;
  }

  .match-extra-card {
    padding: 22px;
  }

  .match-extra-left {
    flex-wrap: wrap;
  }

  .match-extra-info strong {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .related-primary .related-thumb,
  .related-card.related-lite .related-thumb {
    min-height: 160px;
  }

  .related-body {
    padding: 18px;
  }

  .faq-sub-section {
    padding: 52px 0 60px;
  }

  .faq-a-inner {
    margin: 0 16px;
  }

  .login-final {
    padding: 34px 24px;
  }

  .login-final::before {
    background: radial-gradient(300px at 88% 18%, rgba(168, 230, 61, .13), transparent 70%);
  }

  .login-final-copy h2 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .site-footer {
    margin-top: 50px;
  }

  .login-modal-card {
    padding: 24px 20px;
  }
}

/* roulang page: category1 */
:root {
      --paper: #F3F5EF;
      --surface: #FFFFFF;
      --line: #DCE4DC;
      --ink: #1C2A22;
      --sub: #5B6A60;
      --night: #0A1D15;
      --deep: #0E3523;
      --lime: #A8E63D;
      --orange: #F26B21;
      --live: #FF4D3F;
      --radius: 18px;
      --radius-sm: 12px;
      --shadow: 0 10px 30px rgba(10, 29, 21, 0.08);
      --shadow-hover: 0 18px 40px rgba(10, 29, 21, 0.13);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 120px;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    h1, h2, h3, h4 {
      margin: 0 0 0.55em;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: var(--ink);
    }

    h1 {
      font-size: clamp(36px, 4.4vw, 52px);
      line-height: 1.16;
    }

    h2 {
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.3;
    }

    h3 {
      font-size: clamp(18px, 1.8vw, 22px);
      line-height: 1.4;
    }

    p {
      margin: 0 0 1.1em;
    }

    a {
      color: inherit;
    }

    button {
      font-family: inherit;
    }

    .container {
      width: 100%;
      max-width: 1180px;
      margin-inline: auto;
      padding-inline: 24px;
    }

    .section {
      padding-block: 86px;
    }

    .section--tight {
      padding-block: 64px;
    }

    .section-head {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 38px;
    }

    .section-head .page-desc {
      color: var(--sub);
      font-size: 15px;
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: var(--deep);
      background: rgba(168, 230, 61, 0.2);
      border-radius: 999px;
      padding: 5px 13px 4px;
      text-transform: uppercase;
    }

    .page-title {
      font-size: clamp(30px, 3.2vw, 42px);
      color: var(--night);
      margin-bottom: 0.16em;
    }

    .page-sub {
      color: var(--sub);
      font-size: 16px;
      line-height: 1.8;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 14px 18px 0;
      pointer-events: none;
    }

    .dock-nav {
      max-width: 1200px;
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background: rgba(10, 29, 21, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 9px 14px;
      box-shadow: 0 12px 32px rgba(10, 29, 21, 0.18);
      transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
      pointer-events: auto;
    }

    .site-header.is-scrolled .dock-nav {
      background: rgba(8, 24, 17, 0.94);
      padding-block: 7px;
      box-shadow: 0 16px 40px rgba(10, 29, 21, 0.28);
    }

    .brand-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .brand-side {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 34px;
      padding-inline: 8px;
      background: var(--lime);
      color: var(--deep);
      font-weight: 900;
      font-size: 15px;
      letter-spacing: 0.02em;
      border-radius: 10px;
    }

    .brand-name {
      color: #ffffff;
      font-weight: 800;
      font-size: 17px;
      white-space: nowrap;
      letter-spacing: 0.02em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-inline: 16px;
      flex: 1;
      justify-content: center;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 14px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      text-decoration: none;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-link.is-active {
      background: var(--lime);
      color: var(--deep);
    }

    .dock-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .dock-login {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--deep);
      background: var(--lime);
      border: 0;
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 800;
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .dock-login:hover {
      background: #8FCC29;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(168, 230, 61, 0.25);
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 12px;
      font-size: 18px;
      cursor: pointer;
    }

    .nav-toggle:hover {
      background: rgba(255, 255, 255, 0.18);
    }

    .mobile-menu {
      position: fixed;
      top: 86px;
      left: 18px;
      right: 18px;
      z-index: 99;
      background: var(--deep);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 24px 50px rgba(10, 29, 21, 0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      pointer-events: none;
    }

    .mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 14px;
      transition: background 0.2s ease;
    }

    .mobile-menu a + a {
      margin-top: 4px;
    }

    .mobile-menu a.is-active {
      background: var(--lime);
      color: var(--deep);
    }

    .mobile-menu a:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .category-banner {
      position: relative;
      color: #ffffff;
      background-image: linear-gradient(105deg, rgba(6, 20, 14, 0.97) 0%, rgba(10, 33, 23, 0.9) 42%, rgba(10, 33, 23, 0.38) 100%), url('/assets/images/backpic/back-2.webp');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      padding: 148px 0 92px;
    }

    .category-banner__inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
      gap: 54px;
      align-items: center;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
      margin-bottom: 22px;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.78);
      text-decoration: none;
    }

    .breadcrumb a:hover {
      color: var(--lime);
    }

    .category-banner h1 {
      color: #ffffff;
      margin-bottom: 14px;
    }

    .banner-lead {
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
      line-height: 1.85;
      max-width: 640px;
      margin-bottom: 26px;
    }

    .banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .soft-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .soft-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 13px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      font-weight: 600;
    }

    .banner-ticket {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 22px;
      padding: 14px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
    }

    .banner-ticket__cover {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: #152d21;
    }

    .banner-ticket__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .banner-ticket__body {
      padding: 18px 10px 8px;
    }

    .ticket-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--lime);
    }

    .banner-ticket h3 {
      color: #ffffff;
      font-size: 22px;
      margin: 8px 0 6px;
    }

    .banner-ticket p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 24px;
      border: 0;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      line-height: 1.2;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    .btn:focus-visible,
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 3px;
    }

    .btn-mint {
      background: var(--lime);
      color: var(--deep);
    }

    .btn-mint:hover {
      background: #93D329;
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(168, 230, 61, 0.26);
    }

    .btn-ghost {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.48);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: #ffffff;
      transform: translateY(-2px);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--deep);
      border: 1px solid var(--line);
    }

    .btn-outline-dark:hover {
      background: var(--deep);
      color: #ffffff;
      border-color: var(--deep);
    }

    .btn-sm {
      padding: 9px 17px;
      font-size: 13px;
      border-radius: 11px;
    }

    .btn .fa-arrow-right {
      transition: transform 0.24s ease;
    }

    .btn:hover .fa-arrow-right {
      transform: translateX(4px);
    }

    .focus-zone {
      background: var(--paper);
    }

    .focus-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .focus-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.26s ease, box-shadow 0.26s ease;
    }

    .focus-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .focus-card__cover {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #173526;
    }

    .focus-card__cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .focus-card:hover .focus-card__cover img {
      transform: scale(1.04);
    }

    .focus-card__cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 18, 13, 0.02) 40%, rgba(6, 18, 13, 0.72) 100%);
      pointer-events: none;
    }

    .cover-tags {
      position: absolute;
      top: 14px;
      left: 14px;
      right: 14px;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
    }

    .match-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 6px 13px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .match-status.is-live {
      background: var(--live);
      color: #ffffff;
    }

    .match-status.is-waiting {
      background: rgba(255, 255, 255, 0.92);
      color: var(--deep);
    }

    .match-status.is-replay {
      background: rgba(255, 255, 255, 0.92);
      color: var(--sub);
    }

    .match-status .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ffffff;
      animation: blink 1.1s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .match-kickoff {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 11px;
      background: rgba(10, 29, 21, 0.72);
      color: var(--lime);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      backdrop-filter: blur(8px);
    }

    .focus-card__body {
      padding: 24px;
    }

    .series-label {
      display: block;
      color: var(--sub);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .focus-card h3 {
      font-size: 23px;
      color: var(--ink);
      margin-bottom: 10px;
    }

    .match-talk {
      color: var(--sub);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .quick-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .quick-point {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #F1F4EE;
      border: 1px solid #E3E9E1;
      color: var(--deep);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 700;
    }

    .quick-point::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .focus-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

    .match-remark {
      color: var(--sub);
      font-size: 13px;
      font-weight: 600;
    }

    .schedule-zone {
      background: var(--surface);
    }

    .mini-schedule {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .mini-card {
      display: flex;
      flex-direction: column;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
    }

    .mini-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: #b5c5b5;
    }

    .mini-cover {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #dce4dc;
    }

    .mini-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mini-cover .mini-state {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 11px;
      font-weight: 800;
      color: #ffffff;
      background: rgba(10, 29, 21, 0.8);
      padding: 4px 10px;
      border-radius: 999px;
      backdrop-filter: blur(6px);
    }

    .mini-cover .mini-state.late {
      background: var(--live);
    }

    .mini-card__body {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 16px;
    }

    .mini-meta {
      font-size: 12px;
      color: var(--sub);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 5px;
    }

    .mini-card h3 {
      font-size: 16px;
      margin-bottom: 4px;
    }

    .mini-result {
      color: var(--deep);
      font-size: 14px;
      font-weight: 800;
    }

    .mini-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid #E1E8E0;
    }

    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--deep);
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
    }

    .mini-link:hover {
      color: var(--orange);
    }

    .feature-block {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      color: #ffffff;
      background-image: linear-gradient(100deg, rgba(7, 24, 17, 0.95) 0%, rgba(7, 24, 17, 0.87) 56%, rgba(7, 24, 17, 0.6) 100%), url('/assets/images/backpic/back-1.webp');
      background-position: center;
      background-size: cover;
      padding: 56px;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
      gap: 44px;
      align-items: center;
    }

    .feature-kicker {
      color: var(--lime);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.14em;
      margin-bottom: 10px;
    }

    .feature-block h2 {
      color: #ffffff;
      font-size: 28px;
      margin-bottom: 14px;
    }

    .feature-block p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
      line-height: 1.85;
    }

    .feature-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .stat-zone {
      background: var(--night);
      color: #ffffff;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: 1.15fr repeat(3, 1fr);
      gap: 26px;
      align-items: center;
    }

    .stat-copy {
      padding-right: 22px;
    }

    .stat-copy .eyebrow {
      color: var(--lime);
      background: rgba(168, 230, 61, 0.13);
    }

    .stat-copy h2 {
      color: #ffffff;
      margin: 10px 0 8px;
    }

    .stat-copy p {
      color: rgba(255, 255, 255, 0.66);
      font-size: 14px;
      margin-bottom: 0;
    }

    .stat-item {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      padding: 20px;
      text-align: center;
    }

    .stat-item strong {
      display: block;
      color: var(--lime);
      font-size: 32px;
      font-weight: 900;
      line-height: 1.2;
      font-variant-numeric: tabular-nums;
    }

    .stat-item span {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      margin-top: 7px;
    }

    .guide-zone {
      background: var(--surface);
    }

    .guide-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 54px;
      align-items: center;
    }

    .guide-visual {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .guide-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 18, 13, 0.04) 30%, rgba(6, 18, 13, 0.18) 100%);
    }

    .guide-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .guide-copy {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .guide-point {
      border-radius: 18px;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 20px;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .guide-point:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .guide-point i {
      color: var(--deep);
      background: var(--lime);
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 13px;
      font-size: 17px;
      margin-bottom: 13px;
    }

    .guide-point h3 {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .guide-point p {
      font-size: 13px;
      color: var(--sub);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .faq-zone {
      background: var(--paper);
    }

    .faq-layout {
      max-width: 900px;
      margin-inline: auto;
      display: block;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 16px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .faq-item:hover {
      border-color: #aebfb2;
    }

    .faq-item.is-open {
      box-shadow: var(--shadow);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      background: transparent;
      border: 0;
      padding: 18px 22px;
      color: var(--ink);
      font-size: 15px;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(14, 53, 35, 0.08);
      color: var(--deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 800;
      transition: transform 0.24s ease, background 0.24s ease;
    }

    .faq-item.is-open .faq-icon {
      transform: rotate(45deg);
      background: var(--lime);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.26s ease, padding 0.3s ease;
      padding-inline: 22px;
    }

    .faq-item.is-open .faq-answer {
      max-height: 260px;
      opacity: 1;
      padding-block: 0 18px;
      border-top: 1px solid var(--line);
    }

    .faq-answer p {
      color: var(--sub);
      font-size: 14px;
      margin: 15px 0 0;
      line-height: 1.85;
    }

    .cta-zone {
      background: var(--surface);
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      background: linear-gradient(110deg, var(--deep) 0%, #0D452C 100%);
      border-radius: 24px;
      padding: 52px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 34px;
      flex-wrap: wrap;
      box-shadow: 0 22px 48px rgba(10, 29, 21, 0.2);
    }

    .cta-box::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -80px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(168, 230, 61, 0.16);
      pointer-events: none;
    }

    .cta-box h2 {
      color: #ffffff;
      font-size: 28px;
    }

    .cta-box p {
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 0;
      max-width: 620px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    .site-footer {
      background: var(--night);
      color: rgba(255, 255, 255, 0.72);
      padding: 60px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
      gap: 40px;
    }

    .footer-brand .brand-name {
      font-size: 19px;
    }

    .footer-brand p {
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
      margin-top: 12px;
      max-width: 340px;
    }

    .footer-title {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-link {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-link a {
      color: rgba(255, 255, 255, 0.66);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s ease, transform 0.2s ease;
      width: fit-content;
    }

    .footer-link a:hover {
      color: var(--lime);
      transform: translateX(3px);
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 48px;
      color: rgba(255, 255, 255, 0.45);
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .main-nav {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .dock-login span {
        display: none;
      }

      .dock-login {
        padding: 10px 12px;
      }

      .dock-login i {
        margin: 0;
      }

      .category-banner {
        padding: 132px 0 72px;
      }

      .category-banner__inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .banner-ticket {
        max-width: 420px;
      }

      .focus-grid {
        grid-template-columns: 1fr;
      }

      .mini-schedule {
        grid-template-columns: 1fr 1fr;
      }

      .feature-block {
        grid-template-columns: 1fr;
        padding: 40px;
      }

      .stat-strip {
        grid-template-columns: 1fr 1fr;
      }

      .stat-copy {
        grid-column: 1 / -1;
      }

      .guide-panel {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding-block: 64px;
      }

      .container {
        padding-inline: 20px;
      }

      .category-banner {
        padding-top: 116px;
      }

      .category-banner h1 {
        font-size: 33px;
      }

      .banner-actions .btn {
        width: 100%;
      }

      .quick-points .quick-point {
        margin-bottom: 0;
      }

      .schedule-zone .mini-schedule {
        grid-template-columns: 1fr;
      }

      .feature-block {
        padding: 32px 24px;
      }

      .cta-box {
        padding: 34px 24px;
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-actions {
        width: 100%;
      }

      .cta-actions .btn {
        flex: 1;
      }

      .guide-copy {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        padding-inline: 16px;
      }

      .site-header {
        padding-inline: 12px;
      }

      .mobile-menu {
        left: 12px;
        right: 12px;
      }

      .brand-side {
        min-width: 34px;
        height: 31px;
        font-size: 13px;
      }

      .brand-name {
        font-size: 15px;
      }

      .dock-nav {
        gap: 6px;
        padding-inline: 10px;
      }

      .dock-login {
        padding: 10px 11px;
        width: 42px;
        height: 42px;
        justify-content: center;
        border-radius: 12px;
      }

      .category-banner {
        padding-top: 108px;
        padding-bottom: 56px;
      }

      .category-banner__inner {
        gap: 26px;
      }

      .soft-chips .soft-chip {
        font-size: 12px;
      }

      .section-head {
        margin-bottom: 28px;
      }

      .page-title {
        font-size: 29px;
      }

      .focus-card__body {
        padding: 18px;
      }

      .focus-card h3 {
        font-size: 20px;
      }

      .focus-actions {
        gap: 10px;
      }

      .focus-actions .btn {
        width: 100%;
      }

      .match-remark {
        width: 100%;
      }

      .stat-strip {
        grid-template-columns: 1fr;
      }

      .stat-copy {
        grid-column: auto;
      }

      .cta-box h2 {
        font-size: 24px;
      }
    }

/* roulang page: category2 */
:root {
  --paper: #F3F5EF;
  --surface: #FFFFFF;
  --line: #DCE4DC;
  --ink: #1C2A22;
  --sub: #5B6A60;
  --night: #0A1D15;
  --deep: #0E3523;
  --lime: #A8E63D;
  --orange: #F26B21;
  --live: #FF4D3F;
  --radius-card: 16px;
  --radius-hero: 20px;
  --shadow-card: 0 10px 30px rgba(10,29,21,0.08);
  --shadow-lift: 0 18px 40px rgba(10,29,21,0.13);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--deep);
  text-decoration: none;
  transition: color .2s ease;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  padding: 84px 0;
}
.section-tight {
  padding: 64px 0;
}
h1, h2, h3, h4 {
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
}
h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
p {
  margin: 0;
}
.sub {
  color: var(--sub);
}
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 6px;
}

/* 顶部 Dock 导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 16px 0;
  transition: padding .25s ease;
}
.header-scrolled .site-header {
  padding-top: 8px;
}
.dock-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(10,29,21,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 10px 14px 10px 18px;
  box-shadow: 0 14px 36px rgba(5,16,10,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s, padding .3s, box-shadow .3s;
  position: relative;
}
.header-scrolled .dock-nav {
  background: rgba(8,24,17,0.94);
  box-shadow: 0 18px 40px rgba(5,12,8,0.30);
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.brand-side {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 8px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--deep);
  font-weight: 800;
  font-size: 15px;
}
.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.84);
  transition: background .22s, color .22s, transform .18s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.10);
  color: #FFFFFF;
}
.nav-link.is-active {
  background: var(--lime);
  color: var(--deep);
  font-weight: 700;
}
.nav-link.is-active:hover {
  background: #C1FF62;
  color: var(--deep);
}
.dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dock-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: var(--lime);
  color: var(--deep);
  transition: background .22s, transform .18s, box-shadow .22s;
}
.dock-login:hover {
  background: #C7F35E;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(168,230,61,0.22);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 18px;
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.16);
}
@media (max-width: 1023px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .brand-name {
    font-size: 15px;
  }
  .dock-login span {
    display: none;
  }
  .dock-login {
    width: 42px;
    padding: 0;
    justify-content: center;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--deep);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 14px;
    gap: 8px;
    box-shadow: 0 30px 60px rgba(4,12,8,0.32);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transform-origin: top center;
    transition: opacity .24s ease, transform .24s ease;
  }
  .dock-nav.open .main-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .nav-link {
    white-space: normal;
  }
}

/* Guide 顶部横幅 */
.guide-top {
  position: relative;
  padding: 74px 0 82px;
  color: #FFFFFF;
  border-radius: 0 0 34px 34px;
  overflow: hidden;
  background-color: #0A1D15;
  background-image: linear-gradient(100deg, rgba(10,29,21,0.97) 0%, rgba(10,29,21,0.86) 38%, rgba(14,53,35,0.55) 80%), url('/assets/images/backpic/back-2.webp');
  background-size: cover;
  background-position: right center;
}
.guide-top::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,230,61,0.24) 0%, rgba(168,230,61,0) 70%);
  pointer-events: none;
}
.guide-top .container {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.66);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.78);
}
.breadcrumb a:hover {
  color: var(--lime);
}
.guide-top-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 18px;
}
.guide-top h1 {
  font-size: 44px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.guide-top .lead {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
}
.guide-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-lime {
  background: var(--lime);
  color: var(--deep);
  box-shadow: 0 12px 30px rgba(168,230,61,0.25);
}
.btn-lime:hover {
  background: #C7F35E;
  color: #062016;
  box-shadow: 0 16px 36px rgba(168,230,61,0.34);
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.34);
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}
@media (max-width: 767px) {
  .guide-top {
    padding: 56px 0 64px;
  }
  .guide-top h1 {
    font-size: 32px;
  }
  .guide-top .lead {
    font-size: 15.5px;
  }
}

/* 双栏目录 + 步骤 */
.doc-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 46px;
  align-items: start;
}
.guide-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.guide-toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.toc-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--sub);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc-label i {
  color: var(--deep);
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  transition: background .2s, color .2s, padding-left .2s;
}
.toc-link .toc-no {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #E4EBE3;
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.toc-link:hover,
.toc-link.is-active {
  background: #F0F5EC;
  color: var(--deep);
  padding-left: 14px;
}
.toc-link:hover .toc-no,
.toc-link.is-active .toc-no {
  background: var(--lime);
  color: var(--deep);
}
.sidebar-help {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.sidebar-help .help-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.sidebar-help h3 {
  font-size: 17px;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.sidebar-help p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.74);
  margin-bottom: 16px;
}
.sidebar-help .btn {
  width: 100%;
  background: var(--lime);
  color: var(--deep);
  font-size: 14px;
  border-radius: 11px;
  padding: 11px 14px;
}
@media (max-width: 900px) {
  .doc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .guide-sidebar {
    position: static;
    order: 2;
  }
  .guide-toc {
    padding: 16px;
  }
  .toc-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .sidebar-help {
    display: none;
  }
}
.doc-main {
  min-width: 0;
}
.doc-intro {
  padding: 4px 0 30px;
}
.doc-intro h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.doc-intro p {
  color: var(--sub);
  font-size: 16px;
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 32px 28px 30px;
  margin-bottom: 26px;
  transition: box-shadow .25s, transform .25s;
}
.step-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.step-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--lime);
  color: var(--deep);
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-top h3 {
  font-size: 21px;
}
.step-card > p {
  color: #425348;
  margin-bottom: 16px;
}
.step-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33483C;
  font-size: 15px;
}
.step-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid #CAE79B;
  margin-top: 10px;
  flex-shrink: 0;
}
.step-tip {
  border-left: 3px solid var(--lime);
  background: #F4F8EE;
  border-radius: 0 10px 10px 0;
  padding: 10px 16px;
  color: #41543F;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.step-tip i {
  color: #6B9D2E;
  margin-top: 4px;
}
.doc-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
}
.doc-split__text {
  background: #F3F7F0;
  border: 1px solid #E1E9DE;
  border-radius: 18px;
  padding: 22px;
}
.doc-split__text h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.doc-split__text p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.7;
}
.screen-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #E7EDE6;
  aspect-ratio: 16 / 9;
}
.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.screen-shot:hover img {
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .doc-split {
    grid-template-columns: 1fr;
  }
  .step-card {
    padding: 24px 18px;
  }
}

/* 登录方式表格 */
.login-way-section {
  background: #FFFFFF;
  border-top: 1px solid #E5EBE2;
  border-bottom: 1px solid #E5EBE2;
}
.login-way-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 36px;
}
.login-way-head .lead {
  max-width: 620px;
  color: var(--sub);
  margin-top: 8px;
}
.table-scroll {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  background: #102F22;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 20px;
  white-space: nowrap;
}
.data-table td {
  padding: 16px 20px;
  font-size: 14.5px;
  vertical-align: top;
  border-top: 1px solid #E4EBE1;
  color: #2D4438;
  line-height: 1.7;
}
.data-table tr:nth-child(even) td {
  background: #F7F9F4;
}
.data-table td strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.way-tag {
  display: inline-block;
  background: #EAF6D8;
  color: #2C633B;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-right: 8px;
  white-space: nowrap;
}
.table-note {
  margin-top: 16px;
  color: var(--sub);
  font-size: 13.5px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.table-note i {
  color: #75954D;
  margin-top: 3px;
}
@media (max-width: 767px) {
  .login-way-section .section,
  .guide-faq .section {
    padding: 56px 0;
  }
}

/* 设备支持 */
.device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.device-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.device-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: #C9D9C4;
}
.device-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #EDF4E7;
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.device-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.device-card p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.75;
}
@media (max-width: 1023px) {
  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .device-grid {
    grid-template-columns: 1fr;
  }
}

/* 深色自查区 */
.check-panel {
  background: var(--night);
  border-radius: 26px;
  color: rgba(255,255,255,0.9);
  padding: 54px 54px;
  position: relative;
  overflow: hidden;
}
.check-panel::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,230,61,0.18) 0%, rgba(168,230,61,0) 70%);
}
.check-panel .section-head h2 {
  color: #FFFFFF;
}
.check-panel .section-head .lead {
  color: rgba(255,255,255,0.7);
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(168,230,61,0.12);
  color: var(--lime);
  border: 1px solid rgba(168,230,61,0.24);
  margin-bottom: 16px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 38px;
}
.check-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: background .25s, border-color .25s, transform .25s;
}
.check-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--lime);
  transform: translateY(-4px);
}
.check-icon {
  color: var(--lime);
  font-size: 20px;
  margin-bottom: 12px;
}
.check-item h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 6px;
}
.check-item p {
  color: rgba(255,255,255,0.66);
  font-size: 13.5px;
  line-height: 1.7;
}
.check-panel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 26px;
}
.check-panel-cta .cta-text {
  font-size: 17px;
  color: #FFFFFF;
  font-weight: 700;
}
.check-panel-cta .cta-text span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .check-panel {
    padding: 32px 24px;
  }
  .check-panel-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .check-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 38px;
}
.qa-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,29,21,0.04);
  transition: border-color .2s, box-shadow .2s;
}
.qa-item.active {
  border-color: #BAD3B2;
  box-shadow: var(--shadow-card);
}
.qa-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  transition: background .2s;
}
.qa-toggle:hover {
  background: #F4F8F0;
}
.qa-toggle .qa-q {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.qa-q-mark {
  width: 24px;
  height: 24px;
  background: var(--lime);
  color: var(--deep);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2px);
  flex-shrink: 0;
}
.qa-toggle i {
  color: var(--deep);
  transition: transform .3s;
  flex-shrink: 0;
}
.qa-item.active .qa-toggle i {
  transform: rotate(45deg);
}
.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.qa-item.active .qa-answer {
  max-height: 380px;
}
.qa-body {
  border-top: 1px dashed var(--line);
  padding: 16px 24px 22px 56px;
  color: #43564A;
  font-size: 14.5px;
  line-height: 1.85;
}

/* 订阅与最终 CTA */
.subscribe-section {
  background: var(--night);
  color: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding: 64px 8% 54px;
  text-align: center;
  background-image: linear-gradient(145deg, rgba(168,230,61,0.08), rgba(242,107,33,0.04));
}
.subscribe-section h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 12px;
}
.subscribe-section .lead {
  max-width: 540px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.7);
}
.guide-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.form-field {
  flex: 1;
  min-width: 240px;
  text-align: left;
}
.form-field input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  padding: 0 18px;
  font-size: 15px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-field input::placeholder {
  color: rgba(255,255,255,0.42);
}
.form-field input:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(168,230,61,0.16);
}
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
  margin-top: 18px;
}
.subscribe-section .btn-sub {
  height: 52px;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  background: var(--lime);
  color: var(--deep);
  font-weight: 800;
  transition: background .2s, transform .2s;
}
.btn-sub:hover {
  background: #C7F35E;
  transform: translateY(-2px);
}
.form-meta {
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 12.5px;
}
.subscribe-note-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}
@media (max-width: 640px) {
  .subscribe-section {
    padding: 44px 24px;
  }
  .subscribe-section h2 {
    font-size: 26px;
  }
  .guide-form {
    flex-direction: column;
  }
  .form-field input,
  .subscribe-section .btn-sub {
    width: 100%;
  }
  .btn-sub {
    justify-content: center;
  }
}

/* 页脚 */
.site-footer {
  background: #071B13;
  color: rgba(255,255,255,0.66);
  margin-top: 0;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .brand-name {
  display: inline-block;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link a {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  transition: color .2s, padding-left .2s;
  padding-left: 0;
}
.footer-link a:hover {
  color: var(--lime);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}
.footer-bottom i {
  color: var(--lime);
  margin-right: 4px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
}
