/* roulang page: index */
:root {
      --brand: #8f1235;
      --brand-deep: #5f0a22;
      --brand-soft: #fff0f3;
      --accent: #ff6b35;
      --gold: #ffd447;
      --pink: #f72585;
      --ink: #1c1719;
      --muted: #6f6267;
      --line: #ead9dd;
      --paper: #fffaf4;
      --white: #ffffff;
      --gray: #f7efe9;
      --radius: 22px;
      --radius-sm: 14px;
      --shadow: 0 22px 60px rgba(95, 10, 34, 0.14);
      --shadow-soft: 0 12px 34px rgba(28, 23, 25, 0.08);
      --container: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(255, 107, 53, 0.16), transparent 34rem),
        linear-gradient(180deg, #fffaf4 0%, #fff6ed 38%, #fffaf4 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 107, 53, .42);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 36px));
      margin: 0 auto;
    }

    .top-strip {
      background: var(--ink);
      color: #fff7ed;
      font-size: 13px;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .top-strip-inner {
      min-height: 38px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 18px;
    }

    .domain-mark {
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .strip-note {
      text-align: center;
      color: rgba(255, 250, 244, .78);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .strip-action {
      color: var(--ink);
      background: var(--gold);
      padding: 5px 12px;
      border-radius: 999px;
      font-weight: 800;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 250, 244, .94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(143, 18, 53, .14);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--brand-deep);
      min-width: max-content;
    }

    .logo-badge {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--accent));
      box-shadow: 0 12px 26px rgba(143, 18, 53, .24);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
    }

    .nav-link {
      padding: 9px 15px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      color: var(--muted);
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff;
      background: var(--brand);
      box-shadow: 0 10px 22px rgba(143, 18, 53, .18);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      color: var(--brand);
      background: var(--brand-soft);
      border: 1px solid rgba(143, 18, 53, .18);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 900;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), #c91645 62%, var(--accent));
      box-shadow: 0 16px 32px rgba(143, 18, 53, .28);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 46px rgba(143, 18, 53, .34);
    }

    .btn-secondary {
      color: var(--brand);
      background: #fff;
      border: 1px solid rgba(143, 18, 53, .24);
      box-shadow: var(--shadow-soft);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: var(--brand);
      background: var(--brand-soft);
    }

    .btn-ghost {
      color: var(--brand-deep);
      background: rgba(255, 212, 71, .34);
      border: 1px solid rgba(255, 107, 53, .24);
    }

    .section {
      padding: 74px 0;
    }

    .section-tight {
      padding: 56px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--brand);
      background: var(--brand-soft);
      border: 1px solid rgba(143, 18, 53, .14);
      font-size: 13px;
      font-weight: 900;
    }

    .section-title {
      margin: 12px 0 0;
      max-width: 720px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.14;
      letter-spacing: 0;
      font-weight: 900;
    }

    .section-desc {
      max-width: 600px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero {
      padding: 42px 0 72px;
    }

    .hero-stage {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      overflow: hidden;
      border-radius: 30px;
      padding: clamp(26px, 5vw, 58px);
      min-height: 590px;
      background:
        linear-gradient(135deg, rgba(95, 10, 34, .95), rgba(143, 18, 53, .93) 48%, rgba(255, 107, 53, .88)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.07) 0 1px, transparent 1px 18px);
      box-shadow: var(--shadow);
      color: #fff;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: auto -90px -160px auto;
      width: 420px;
      height: 420px;
      border-radius: 999px;
      background: rgba(255, 212, 71, .18);
      filter: blur(2px);
    }

    .burst {
      position: absolute;
      right: clamp(18px, 4vw, 48px);
      top: 28px;
      width: 112px;
      height: 112px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--ink);
      background: var(--gold);
      clip-path: polygon(50% 0%, 59% 22%, 82% 12%, 78% 36%, 100% 50%, 78% 64%, 82% 88%, 59% 78%, 50% 100%, 41% 78%, 18% 88%, 22% 64%, 0% 50%, 22% 36%, 18% 12%, 41% 22%);
      font-weight: 900;
      line-height: 1.22;
      animation: pulsePop 2.8s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes pulsePop {
      0%, 100% { transform: scale(1) rotate(-7deg); }
      50% { transform: scale(1.05) rotate(-3deg); }
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: clamp(24px, 4vw, 54px);
      align-items: center;
      min-height: 470px;
    }

    .hero-copy {
      max-width: 560px;
    }

    .hero h1 {
      margin: 16px 0 18px;
      font-size: clamp(38px, 6vw, 76px);
      line-height: .98;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hero-intro {
      margin: 0;
      color: rgba(255, 250, 244, .88);
      font-size: 18px;
      max-width: 540px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero .btn-secondary {
      background: rgba(255, 255, 255, .92);
      color: var(--brand-deep);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 32px;
    }

    .stat {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .stat strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      color: var(--gold);
      font-variant-numeric: tabular-nums;
    }

    .stat span {
      display: block;
      margin-top: 7px;
      font-size: 13px;
      color: rgba(255, 250, 244, .78);
    }

    .hero-panel {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 16px;
      align-items: stretch;
    }

    .feature-board,
    .countdown-card,
    .entry-card,
    .mini-card {
      border-radius: var(--radius);
      background: rgba(255, 250, 244, .95);
      color: var(--ink);
      border: 1px solid rgba(255, 255, 255, .68);
      box-shadow: 0 18px 52px rgba(28, 23, 25, .18);
    }

    .feature-board {
      padding: 22px;
      min-height: 360px;
    }

    .board-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--brand);
      font-weight: 900;
      font-size: 13px;
    }

    .live-dot::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 7px rgba(255, 107, 53, .14);
    }

    .screen-slide {
      display: none;
      padding-top: 20px;
    }

    .screen-slide.active {
      display: block;
    }

    .screen-title {
      margin: 0 0 10px;
      font-size: 25px;
      line-height: 1.2;
      font-weight: 900;
    }

    .screen-text {
      margin: 0;
      color: var(--muted);
    }

    .progress-lines {
      margin-top: 22px;
      display: grid;
      gap: 13px;
    }

    .progress-line {
      height: 12px;
      border-radius: 999px;
      background: #f0e1dc;
      overflow: hidden;
    }

    .progress-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand), var(--accent), var(--gold));
    }

    .slide-controls {
      display: flex;
      gap: 8px;
      margin-top: 22px;
    }

    .slide-dot {
      width: 34px;
      height: 10px;
      border-radius: 999px;
      background: #ead9dd;
      transition: width .2s ease, background .2s ease;
    }

    .slide-dot.active {
      width: 52px;
      background: var(--brand);
    }

    .side-stack {
      display: grid;
      gap: 16px;
    }

    .countdown-card {
      padding: 20px;
      background: var(--gold);
    }

    .countdown-label {
      display: block;
      font-weight: 900;
      color: var(--brand-deep);
    }

    .timer {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 13px;
      font-variant-numeric: tabular-nums;
    }

    .timer-box {
      padding: 11px 6px;
      border-radius: 13px;
      background: rgba(28, 23, 25, .9);
      color: #fff;
      text-align: center;
      font-weight: 900;
    }

    .timer-box small {
      display: block;
      margin-top: 2px;
      color: rgba(255, 255, 255, .64);
      font-size: 11px;
    }

    .entry-card {
      padding: 20px;
    }

    .entry-card h3,
    .mini-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 900;
    }

    .entry-card p,
    .mini-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-card {
      padding: 18px;
      background: #fff;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--brand);
      background: var(--brand-soft);
      border: 1px solid rgba(143, 18, 53, .12);
      font-size: 12px;
      font-weight: 900;
    }

    .promo-track {
      display: grid;
      grid-template-columns: 1.05fr .95fr 1.2fr;
      gap: 18px;
      align-items: stretch;
    }

    .promo-card {
      position: relative;
      overflow: hidden;
      min-height: 220px;
      padding: 24px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .promo-card:hover {
      transform: translateY(-4px);
      border-color: rgba(143, 18, 53, .32);
      box-shadow: var(--shadow);
    }

    .promo-card.dark {
      color: #fff;
      background: linear-gradient(145deg, var(--ink), var(--brand-deep));
      border-color: rgba(255, 255, 255, .08);
    }

    .promo-card.tall {
      min-height: 290px;
    }

    .corner-ribbon {
      position: absolute;
      right: 18px;
      top: 18px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--gold);
      font-size: 12px;
      font-weight: 900;
    }

    .promo-card h3 {
      margin: 34px 0 10px;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.22;
    }

    .promo-card p {
      margin: 0;
      color: var(--muted);
    }

    .promo-card.dark p {
      color: rgba(255, 250, 244, .78);
    }

    .inventory-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }

    .inventory-panel {
      padding: 28px;
      border-radius: 28px;
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .inventory-list {
      display: grid;
      gap: 13px;
      margin-top: 22px;
    }

    .inventory-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .inventory-item strong {
      font-weight: 900;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(255, 212, 71, .18);
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .matrix-card {
      padding: 28px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 20px;
    }

    .matrix-cell {
      min-height: 112px;
      padding: 18px;
      border-radius: 18px;
      background: var(--gray);
      border: 1px solid rgba(143, 18, 53, .1);
    }

    .matrix-cell b {
      display: block;
      color: var(--brand);
      margin-bottom: 6px;
      font-weight: 900;
    }

    .matrix-cell span {
      color: var(--muted);
      font-size: 14px;
    }

    .carousel-shell {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .screens {
      display: flex;
      transform: translateX(0);
      transition: transform .45s ease;
    }

    .shot-card {
      min-width: 33.333%;
      padding: 24px;
      border-right: 1px solid var(--line);
    }

    .shot-thumb {
      height: 180px;
      border-radius: 20px;
      padding: 18px;
      background:
        linear-gradient(135deg, rgba(143, 18, 53, .88), rgba(255, 107, 53, .82)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 1px, transparent 1px 16px);
      color: #fff;
      display: grid;
      align-content: end;
      gap: 10px;
      overflow: hidden;
    }

    .shot-bars {
      display: grid;
      gap: 8px;
    }

    .shot-bars i {
      display: block;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .48);
    }

    .shot-bars i:nth-child(2) {
      width: 76%;
    }

    .shot-bars i:nth-child(3) {
      width: 54%;
    }

    .shot-card h3 {
      margin: 18px 0 8px;
      font-size: 20px;
      font-weight: 900;
    }

    .shot-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .carousel-actions {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 18px;
      background: #fffaf7;
      border-top: 1px solid var(--line);
    }

    .arrow-btn {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      color: var(--brand);
      background: #fff;
      border: 1px solid rgba(143, 18, 53, .18);
      box-shadow: var(--shadow-soft);
    }

    .arrow-btn:hover {
      background: var(--brand);
      color: #fff;
      transform: translateY(-2px);
    }

    .requirements {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .req-card {
      padding: 22px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .req-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--accent));
      margin-bottom: 16px;
      font-weight: 900;
    }

    .req-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 900;
    }

    .req-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
      gap: 22px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .news-item:hover {
      transform: translateY(-3px);
      border-color: rgba(143, 18, 53, .28);
      box-shadow: var(--shadow);
    }

    .news-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: #fff;
      background: var(--brand);
      font-weight: 900;
      font-variant-numeric: tabular-nums;
    }

    .news-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 900;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .trend {
      color: var(--accent);
      font-weight: 900;
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-card {
      position: sticky;
      top: 116px;
      padding: 24px;
      border-radius: 24px;
      background: linear-gradient(155deg, #fff, #fff1dc);
      border: 1px solid rgba(255, 107, 53, .22);
      box-shadow: var(--shadow-soft);
    }

    .recommend-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
      font-weight: 900;
    }

    .recommend-card p {
      margin: 0;
      color: var(--muted);
    }

    .rank-list {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .rank-row {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(143, 18, 53, .1);
    }

    .rank-row b {
      color: var(--brand);
      font-variant-numeric: tabular-nums;
    }

    .compare {
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      min-height: 74px;
      border-bottom: 1px solid var(--line);
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-cell {
      padding: 18px 20px;
      display: flex;
      align-items: center;
      border-right: 1px solid var(--line);
    }

    .compare-cell:last-child {
      border-right: 0;
    }

    .compare-head {
      color: #fff;
      background: var(--brand-deep);
      font-weight: 900;
    }

    .compare-highlight {
      background: var(--brand-soft);
      color: var(--brand);
      font-weight: 900;
    }

    .review-wall {
      display: grid;
      grid-template-columns: 1.15fr .85fr 1fr;
      gap: 16px;
      align-items: start;
    }

    .review-card {
      padding: 22px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .review-card.large {
      min-height: 250px;
      background: linear-gradient(150deg, #fff, #fff0f3);
    }

    .stars {
      color: #ffb703;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .review-card p {
      margin: 0;
      color: var(--muted);
    }

    .reviewer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 18px;
      color: var(--brand);
      font-weight: 900;
      font-size: 14px;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      padding: clamp(28px, 5vw, 52px);
      color: #fff;
      background:
        linear-gradient(135deg, var(--brand-deep), var(--brand) 55%, var(--accent)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.1) 0 1px, transparent 1px 18px);
      box-shadow: var(--shadow);
    }

    .cta-band::after {
      content: "限时";
      position: absolute;
      right: 34px;
      top: 28px;
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--ink);
      background: var(--gold);
      font-weight: 900;
      transform: rotate(6deg);
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .cta-band h2 {
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      font-weight: 900;
    }

    .cta-band p {
      margin: 0;
      max-width: 660px;
      color: rgba(255, 250, 244, .82);
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--ink);
      background: #fff;
      text-align: left;
      font-weight: 900;
    }

    .faq-question span {
      color: var(--brand);
      font-size: 22px;
      line-height: 1;
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-question span {
      transform: rotate(45deg);
    }

    .site-footer {
      padding: 54px 0 30px;
      color: rgba(255, 250, 244, .78);
      background: var(--ink);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .9fr .9fr;
      gap: 28px;
      align-items: start;
    }

    .footer-title {
      margin: 0 0 14px;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .mobile-quick {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 60;
      padding: 10px;
      border-radius: 20px;
      background: rgba(28, 23, 25, .92);
      backdrop-filter: blur(12px);
      box-shadow: 0 18px 40px rgba(28,23,25,.28);
    }

    .mobile-quick .btn {
      width: 100%;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .inventory-wrap,
      .news-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        grid-template-columns: 1fr;
      }

      .promo-track,
      .review-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .requirements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .recommend-card {
        position: static;
      }

      .shot-card {
        min-width: 50%;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-buttons {
        justify-content: flex-start;
      }
    }

    @media (max-width: 820px) {
      .top-strip-inner {
        grid-template-columns: 1fr auto;
      }

      .strip-note {
        display: none;
      }

      .nav {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        padding: 12px 0;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .nav-links {
        display: none;
        width: 100%;
        order: 3;
        border-radius: 18px;
        padding: 10px;
        align-items: stretch;
        flex-direction: column;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        width: 100%;
        text-align: center;
      }

      .nav-actions .btn-secondary {
        display: none;
      }

      .hero {
        padding-top: 24px;
      }

      .hero-stage {
        min-height: auto;
        border-radius: 24px;
      }

      .burst {
        width: 88px;
        height: 88px;
        font-size: 13px;
        right: 18px;
        top: 18px;
      }

      .hero h1 {
        padding-right: 70px;
      }

      .hero-stats,
      .matrix-grid,
      .promo-track,
      .review-wall {
        grid-template-columns: 1fr;
      }

      .compare {
        overflow-x: auto;
      }

      .compare-row {
        min-width: 720px;
      }

      .section-head {
        display: block;
      }

      .mobile-quick {
        display: block;
      }

      body {
        padding-bottom: 78px;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .section {
        padding: 54px 0;
      }

      .hero-stage {
        padding: 22px;
      }

      .hero-actions,
      .cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
        min-height: 48px;
      }

      .hero-stats,
      .requirements {
        grid-template-columns: 1fr;
      }

      .feature-board {
        padding: 18px;
      }

      .shot-card {
        min-width: 86%;
        padding: 18px;
      }

      .news-item {
        grid-template-columns: auto 1fr;
      }

      .news-item .trend {
        grid-column: 2;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        display: block;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#f7f1ea;
      --bg-2:#fff8f1;
      --surface:#fffaf6;
      --card:#ffffff;
      --card-2:#fff4eb;
      --text:#201816;
      --muted:#6d5e57;
      --muted-2:#8b7a72;
      --line:rgba(119, 84, 71, .18);
      --line-2:rgba(143, 32, 51, .18);
      --primary:#8f2033;
      --primary-2:#b63643;
      --primary-3:#d14b53;
      --accent:#f47b3c;
      --accent-2:#f4c35a;
      --success:#2f8f63;
      --shadow:0 16px 38px rgba(53, 26, 27, .10);
      --shadow-soft:0 8px 24px rgba(53, 26, 27, .08);
      --radius:22px;
      --radius-sm:16px;
      --radius-xs:12px;
      --container:1200px;
      --gap:24px;
      --gap-lg:36px;
      --header-h:74px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(244,123,60,.12), transparent 25%),
        radial-gradient(circle at 88% 12%, rgba(143,32,51,.12), transparent 24%),
        linear-gradient(180deg, #fffaf6 0%, #f8f1ea 44%, #f5ede6 100%);
      min-height:100vh;
      overflow-x:hidden;
      line-height:1.65;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(transparent 0, transparent 96%, rgba(143,32,51,.05) 100%);
      background-size:100% 18px;
      opacity:.25;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(180%) blur(12px);
    }
    .top-strip{
      background:linear-gradient(90deg, #6f1527 0%, #8f2033 45%, #a72e3d 100%);
      color:#fff8f4;
      font-size:13px;
      letter-spacing:.01em;
    }
    .top-strip-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:7px 0;
    }
    .domain-mark{
      font-weight:700;
      color:#fff;
      white-space:nowrap;
    }
    .strip-note{
      flex:1;
      text-align:center;
      color:rgba(255,255,255,.92);
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .strip-action{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:28px;
      padding:0 12px;
      border-radius:999px;
      background:#fff;
      color:var(--primary);
      font-weight:700;
      box-shadow:0 6px 16px rgba(0,0,0,.12);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .strip-action:hover{transform:translateY(-1px);box-shadow:0 10px 18px rgba(0,0,0,.14)}
    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      min-height:calc(var(--header-h) - 38px);
      padding:14px 0;
      background:rgba(255,250,246,.92);
      border-bottom:1px solid rgba(143,32,51,.10);
      box-shadow:0 10px 26px rgba(53,26,27,.05);
    }
    .logo,
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.01em;
      color:var(--text);
    }
    .logo{
      flex:0 0 auto;
      font-size:17px;
    }
    .logo-badge{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
      box-shadow:0 10px 18px rgba(143,32,51,.22);
      flex:0 0 auto;
    }
    .menu-toggle{
      display:none;
      margin-left:auto;
      width:44px;
      height:44px;
      border:1px solid var(--line);
      background:var(--card);
      color:var(--primary);
      border-radius:14px;
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .menu-toggle:hover{
      transform:translateY(-1px);
      border-color:rgba(143,32,51,.32);
      background:#fffdfb;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      margin:0 auto;
      padding:6px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(143,32,51,.10);
      border-radius:999px;
      box-shadow:0 10px 26px rgba(53,26,27,.04);
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 18px;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      color:var(--primary);
      background:rgba(143,32,51,.08);
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
      box-shadow:0 10px 18px rgba(143,32,51,.22);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:800;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px);box-shadow:0 16px 28px rgba(53,26,27,.14)}
    .btn:focus,
    .nav-link:focus,
    .strip-action:focus,
    .entry-card .card-action:focus,
    summary:focus{
      outline:3px solid rgba(244,123,60,.26);
      outline-offset:2px;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
      color:#fff;
      box-shadow:0 14px 24px rgba(143,32,51,.22);
    }
    .btn-primary:hover{
      background:linear-gradient(135deg, #7f1b2d 0%, #c73f4b 100%);
      color:#fff;
    }
    .btn-secondary{
      background:rgba(255,255,255,.74);
      color:var(--primary);
      border-color:rgba(143,32,51,.16);
    }
    .btn-secondary:hover{
      background:#fff;
      color:var(--primary);
      border-color:rgba(143,32,51,.28);
    }
    .btn-soft{
      background:rgba(244,123,60,.10);
      color:#a84d1f;
      border-color:rgba(244,123,60,.15);
    }
    .btn-soft:hover{background:rgba(244,123,60,.16)}
    .hero{
      padding:32px 0 10px;
    }
    .hero-shell{
      display:grid;
      grid-template-columns:minmax(0,1.18fr) minmax(340px,.82fr);
      gap:26px;
      align-items:stretch;
      padding:28px;
      border:1px solid rgba(143,32,51,.10);
      border-radius:30px;
      background:
        radial-gradient(circle at top left, rgba(244,123,60,.12), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,241,.96));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-shell:after{
      content:"";
      position:absolute;
      inset:auto -6% -20% auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(244,195,90,.26) 0%, rgba(244,195,90,.08) 38%, transparent 70%);
      pointer-events:none;
    }
    .hero-copy{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:18px;
      padding:8px 6px 8px 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:max-content;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(143,32,51,.08);
      color:var(--primary);
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
      border:1px solid rgba(143,32,51,.10);
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(244,123,60,.14);
    }
    .hero h1,
    .section-title{
      margin:0;
      line-height:1.12;
      letter-spacing:-.02em;
    }
    .hero h1{
      font-size:clamp(34px, 4.2vw, 58px);
      font-weight:800;
      max-width:12ch;
    }
    .hero-desc{
      margin:0;
      max-width:56ch;
      color:var(--muted);
      font-size:17px;
    }
    .hero-stats{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .stat-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:var(--card);
      border:1px solid var(--line);
      color:var(--muted);
      box-shadow:0 8px 18px rgba(53,26,27,.05);
      font-size:14px;
      font-weight:700;
    }
    .stat-chip strong{color:var(--text)}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:4px;
    }
    .hero-note{
      display:flex;
      align-items:center;
      gap:10px;
      width:max-content;
      max-width:100%;
      padding:12px 16px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(244,123,60,.10), rgba(143,32,51,.08));
      border:1px solid rgba(143,32,51,.10);
      color:var(--muted);
      font-size:14px;
    }
    .hero-note b{color:var(--primary)}
    .hero-panel{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:14px;
      padding:4px;
    }
    .panel-banner{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:18px 18px 16px;
      border-radius:24px;
      background:linear-gradient(180deg, #7c1829 0%, #a52b3a 100%);
      color:#fff8f4;
      box-shadow:0 18px 28px rgba(124,24,41,.22);
      position:relative;
      overflow:hidden;
    }
    .panel-banner:before{
      content:"";
      position:absolute;
      inset:auto -10px -14px auto;
      width:108px;
      height:108px;
      border-radius:50%;
      background:rgba(255,255,255,.10);
    }
    .banner-copy{
      position:relative;
      z-index:1;
      max-width:220px;
    }
    .banner-title{
      font-size:18px;
      font-weight:800;
      margin:0 0 6px;
      letter-spacing:-.01em;
    }
    .banner-desc{
      margin:0;
      color:rgba(255,248,244,.88);
      font-size:14px;
    }
    .countdown{
      position:relative;
      z-index:1;
      text-align:right;
      min-width:118px;
    }
    .countdown-label{
      font-size:12px;
      color:rgba(255,248,244,.78);
      margin-bottom:4px;
    }
    .countdown-value{
      font-family:"SFMono-Regular",Consolas,Monaco,monospace;
      font-size:28px;
      font-weight:800;
      letter-spacing:.03em;
      line-height:1;
    }
    .countdown-sub{
      font-size:12px;
      color:rgba(255,248,244,.82);
      margin-top:6px;
    }
    .panel-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .mini-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:20px;
      padding:16px;
      box-shadow:var(--shadow-soft);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .mini-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(143,32,51,.22);
    }
    .mini-label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(143,32,51,.08);
      color:var(--primary);
      font-size:12px;
      font-weight:800;
      margin-bottom:12px;
    }
    .mini-value{
      font-size:20px;
      font-weight:800;
      line-height:1.2;
      margin-bottom:6px;
      letter-spacing:-.01em;
    }
    .mini-text{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .section{
      padding:22px 0 14px;
    }
    .section-shell{
      padding:26px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(143,32,51,.09);
      border-radius:28px;
      box-shadow:var(--shadow-soft);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .section-title-wrap{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .section-kicker{
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .section-title{
      font-size:clamp(24px, 2.6vw, 36px);
      font-weight:800;
    }
    .section-desc{
      margin:0;
      color:var(--muted);
      max-width:60ch;
      font-size:15px;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .chip,
    .tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.86);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .chip:hover{
      transform:translateY(-1px);
      border-color:rgba(143,32,51,.24);
      color:var(--primary);
      background:#fff;
    }
    .chip.active{
      background:rgba(143,32,51,.08);
      color:var(--primary);
      border-color:rgba(143,32,51,.18);
    }
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0,1.34fr) minmax(290px,.66fr);
      gap:18px;
      align-items:start;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:16px;
    }
    .entry-card{
      position:relative;
      min-height:230px;
      display:flex;
      flex-direction:column;
      padding:18px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,241,.95));
      border:1px solid rgba(143,32,51,.10);
      box-shadow:var(--shadow-soft);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      overflow:hidden;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:rgba(143,32,51,.24);
    }
    .entry-card.featured{
      grid-column:span 2;
      background:
        radial-gradient(circle at top right, rgba(244,123,60,.14), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fff7f0 100%);
    }
    .entry-card.warm{
      background:
        radial-gradient(circle at top left, rgba(244,195,90,.14), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8ee 100%);
    }
    .entry-card .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      letter-spacing:.01em;
    }
    .badge.hot{
      background:rgba(244,123,60,.14);
      color:#a84d1f;
    }
    .badge.new{
      background:rgba(143,32,51,.12);
      color:var(--primary);
    }
    .badge.ok{
      background:rgba(47,143,99,.12);
      color:var(--success);
    }
    .badge.warn{
      background:rgba(244,195,90,.2);
      color:#8a6418;
    }
    .entry-title{
      font-size:19px;
      line-height:1.3;
      margin:0 0 8px;
      font-weight:800;
      letter-spacing:-.01em;
    }
    .entry-desc{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      flex:1;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
      color:var(--muted-2);
      font-size:13px;
    }
    .meta-item{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(143,32,51,.05);
      border:1px solid rgba(143,32,51,.08);
    }
    .card-action{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      width:100%;
      border-radius:14px;
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
      color:#fff;
      font-weight:800;
      border:1px solid rgba(143,32,51,.10);
      box-shadow:0 14px 24px rgba(143,32,51,.18);
      transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
    }
    .card-action:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 26px rgba(143,32,51,.22);
      filter:saturate(1.03);
    }
    .side-panel{
      position:sticky;
      top:104px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-card{
      padding:18px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,248,241,.96));
      border:1px solid rgba(143,32,51,.10);
      box-shadow:var(--shadow-soft);
    }
    .side-title{
      margin:0 0 12px;
      font-size:18px;
      font-weight:800;
      letter-spacing:-.01em;
    }
    .note-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .note-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }
    .note-list li:before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--accent) 0%, var(--primary-2) 100%);
      margin-top:7px;
      flex:0 0 auto;
      box-shadow:0 0 0 5px rgba(244,123,60,.12);
    }
    .status-box{
      display:grid;
      gap:12px;
    }
    .status-row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      background:rgba(143,32,51,.05);
      border:1px solid rgba(143,32,51,.08);
      border-radius:16px;
      font-size:14px;
      color:var(--muted);
    }
    .status-row strong{color:var(--text)}
    .side-cta{
      display:grid;
      gap:10px;
    }
    .side-cta .btn{width:100%}
    .separator{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(143,32,51,.16), transparent);
      margin:6px 0;
    }
    .faq-wrap{
      display:grid;
      gap:12px;
    }
    details.faq-item{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(143,32,51,.10);
      border-radius:20px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details.faq-item[open]{
      border-color:rgba(143,32,51,.18);
      box-shadow:var(--shadow);
    }
    summary{
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:18px 18px;
      cursor:pointer;
      font-weight:800;
      color:var(--text);
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{
      content:"＋";
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--primary);
      background:rgba(143,32,51,.08);
      flex:0 0 auto;
      transition:transform .2s ease, background .2s ease;
    }
    details[open] summary:after{
      content:"－";
      background:rgba(244,123,60,.12);
      transform:rotate(0deg);
    }
    .faq-body{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:14px;
    }
    .cta-band{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:18px 20px;
      border-radius:24px;
      background:linear-gradient(135deg, rgba(143,32,51,.95), rgba(177,54,67,.98));
      color:#fff;
      box-shadow:0 18px 28px rgba(143,32,51,.20);
    }
    .cta-band h3{
      margin:0 0 6px;
      font-size:20px;
      font-weight:800;
    }
    .cta-band p{
      margin:0;
      color:rgba(255,248,244,.88);
      font-size:14px;
    }
    .cta-band .btn{
      flex:0 0 auto;
      background:#fff;
      color:var(--primary);
      box-shadow:none;
    }
    .cta-band .btn:hover{background:#fff3ee}
    .site-footer{
      margin-top:28px;
      padding:30px 0 22px;
      background:linear-gradient(180deg, #7b1828 0%, #611220 100%);
      color:#f7ebe6;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr .85fr .95fr;
      gap:24px;
      align-items:start;
      padding-bottom:24px;
    }
    .footer-brand{
      color:#fff8f4;
      font-size:18px;
      margin-bottom:12px;
    }
    .site-footer p{
      margin:0;
      color:rgba(255,245,240,.82);
      font-size:14px;
    }
    .footer-title{
      margin:0 0 12px;
      color:#fff;
      font-size:16px;
      font-weight:800;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,245,240,.86);
      font-size:14px;
      transition:color .2s ease, transform .2s ease;
      width:max-content;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .copyright{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,245,240,.74);
      font-size:13px;
      flex-wrap:wrap;
    }
    .mobile-cta{
      display:none;
    }
    .kicker-inline{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:13px;
    }
    .kicker-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(244,123,60,.12);
    }
    @media (max-width: 1279px){
      .hero-shell{grid-template-columns:1fr .9fr}
      .entry-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .entry-card.featured{grid-column:span 2}
      .footer-grid{grid-template-columns:1.2fr .8fr .8fr}
      .footer-grid > div:last-child{grid-column:1 / -1}
    }
    @media (max-width: 1023px){
      .nav{
        position:relative;
        flex-wrap:wrap;
      }
      .nav-links{
        order:4;
        width:100%;
        display:none;
        border-radius:20px;
        padding:10px;
        margin:0;
        justify-content:flex-start;
        overflow:auto;
      }
      .nav-links.open{display:flex}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
      .nav-actions{margin-left:auto}
      .hero-shell{grid-template-columns:1fr;gap:18px}
      .content-grid{grid-template-columns:1fr}
      .side-panel{position:static}
      .entry-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 767px){
      .top-strip-inner{
        gap:10px;
      }
      .strip-note{
        display:none;
      }
      .nav{
        gap:10px;
      }
      .nav-actions{
        display:none;
      }
      .hero{
        padding-top:22px;
      }
      .hero-shell,
      .section-shell{
        padding:20px;
        border-radius:24px;
      }
      .hero h1{
        max-width:100%;
      }
      .hero-desc{font-size:15px}
      .panel-grid{
        grid-template-columns:1fr;
      }
      .entry-grid{
        grid-template-columns:1fr;
      }
      .entry-card.featured{
        grid-column:auto;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .filter-row{
        justify-content:flex-start;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .copyright{
        flex-direction:column;
        align-items:flex-start;
      }
      .mobile-cta{
        position:fixed;
        inset:auto 12px 12px 12px;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        z-index:60;
      }
      .mobile-cta .btn{
        box-shadow:0 16px 26px rgba(53,26,27,.18);
      }
      body{
        padding-bottom:86px;
      }
    }
    @media (max-width: 520px){
      .container{width:min(var(--container), calc(100% - 20px))}
      .hero h1{font-size:30px}
      .entry-title{font-size:18px}
      .cta-band{
        flex-direction:column;
        align-items:flex-start;
      }
      .cta-band .btn{width:100%}
    }
