/* roulang page: index */
:root {
      --green: #16a34a;
      --green-light: #22c55e;
      --green-soft: #ecfdf5;
      --ink: #111827;
      --muted: #6b7280;
      --line: #d1d5db;
      --line-dark: #374151;
      --paper: #ffffff;
      --wash: #f8fafc;
      --wash-2: #f3f4f6;
      --yellow: #facc15;
      --purple: #8b5cf6;
      --shadow: 4px 4px 0 rgba(17, 24, 39, .14);
      --shadow-strong: 6px 6px 0 rgba(17, 24, 39, .18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        linear-gradient(rgba(17, 24, 39, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .035) 1px, transparent 1px),
        var(--paper);
      background-size: 22px 22px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-container {
      width: min(100% - 32px, 1220px);
      margin-inline: auto;
    }

    .pixel-border {
      border: 2px solid var(--ink);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      background: var(--paper);
    }

    .pixel-soft {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .92);
      box-shadow: 2px 2px 0 rgba(17, 24, 39, .08);
    }

    .pixel-dot {
      width: 12px;
      height: 12px;
      display: inline-block;
      border: 2px solid var(--ink);
      background: var(--green-light);
      box-shadow: 2px 2px 0 rgba(17, 24, 39, .18);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border: 1px solid var(--line-dark);
      border-radius: 6px;
      background: var(--paper);
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
    }

    .badge-green {
      border-color: var(--green);
      background: var(--green-soft);
      color: #166534;
    }

    .badge-yellow {
      border-color: #ca8a04;
      background: #fefce8;
      color: #854d0e;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 18px;
      border: 2px solid var(--ink);
      border-radius: 7px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      outline: none;
    }

    .btn-primary {
      color: white;
      background: var(--green);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      background: #15803d;
      transform: translate(-1px, -1px);
      box-shadow: var(--shadow-strong);
    }

    .btn-secondary {
      color: var(--ink);
      background: white;
      box-shadow: var(--shadow);
    }

    .btn-secondary:hover,
    .btn-secondary:focus {
      background: var(--green-soft);
      border-color: var(--green);
      transform: translate(-1px, -1px);
    }

    .btn:active {
      transform: translate(2px, 2px);
      box-shadow: 1px 1px 0 rgba(17, 24, 39, .18);
    }

    .focusable:focus,
    input:focus,
    select:focus {
      outline: 3px solid rgba(34, 197, 94, .32);
      outline-offset: 2px;
      border-color: var(--green);
    }

    .top-strip {
      background: rgba(248, 250, 252, .96);
      border-bottom: 1px solid var(--line);
      font-size: 13px;
    }

    .header-main {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--ink);
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      padding: 4px;
      border: 2px solid var(--ink);
      border-radius: 6px;
      background: white;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .14);
      flex: none;
    }

    .brand-mark span {
      background: var(--green-light);
      border: 1px solid var(--ink);
    }

    .brand-mark span:nth-child(2),
    .brand-mark span:nth-child(6) {
      background: var(--yellow);
    }

    .search-box {
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: white;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .08);
    }

    .channel-row {
      border-top: 1px solid var(--line);
      background: var(--wash);
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 13px;
      border: 1px solid var(--line-dark);
      border-radius: 999px;
      background: white;
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
    }

    .channel-link:hover,
    .channel-link.active {
      color: white;
      background: var(--green);
      border-color: var(--green);
      transform: translateY(-1px);
    }

    .hero-stage {
      position: relative;
      overflow: hidden;
      border: 2px solid var(--ink);
      border-radius: 10px;
      background:
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, .13), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 54%, #ecfdf5 100%);
      box-shadow: 8px 8px 0 rgba(17, 24, 39, .12);
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(17, 24, 39, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .04) 1px, transparent 1px);
      background-size: 18px 18px;
      pointer-events: none;
    }

    .screen-window {
      position: relative;
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: white;
      box-shadow: var(--shadow-strong);
      overflow: hidden;
    }

    .window-bar {
      height: 36px;
      border-bottom: 2px solid var(--ink);
      background: var(--wash-2);
      display: flex;
      align-items: center;
      gap: 8px;
      padding-inline: 12px;
    }

    .window-dot {
      width: 10px;
      height: 10px;
      border: 1px solid var(--ink);
      background: var(--green-light);
    }

    .window-dot:nth-child(2) {
      background: var(--yellow);
    }

    .window-dot:nth-child(3) {
      background: var(--purple);
    }

    .count-card {
      border: 2px solid var(--green);
      border-radius: 8px;
      background: white;
      box-shadow: var(--shadow);
      padding: 18px 10px;
      text-align: center;
    }

    .count-num {
      font-variant-numeric: tabular-nums;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1;
      font-weight: 950;
      color: var(--green);
      text-shadow: 2px 2px 0 rgba(17, 24, 39, .12);
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.18;
      font-weight: 950;
      letter-spacing: 0;
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      max-width: 760px;
    }

    .watch-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 18px;
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: white;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .1);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    .watch-item:hover {
      transform: translate(-1px, -1px);
      border-color: var(--green);
      box-shadow: var(--shadow);
    }

    .pixel-number {
      min-width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--ink);
      background: var(--green-soft);
      color: #166534;
      font-weight: 950;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .13);
    }

    .form-input {
      width: 100%;
      min-height: 48px;
      border: 2px solid var(--ink);
      border-radius: 7px;
      background: white;
      padding: 11px 13px;
      transition: border-color .18s ease, outline .18s ease;
    }

    .entry-card {
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: white;
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .entry-card:hover {
      transform: translate(-2px, -2px);
      box-shadow: var(--shadow-strong);
    }

    .entry-head {
      border-bottom: 2px solid var(--ink);
      background: var(--wash-2);
      padding: 12px 14px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
    }

    .news-link {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px dashed var(--line-dark);
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover h3 {
      color: var(--green);
    }

    details.faq-item {
      border: 2px solid var(--ink);
      border-radius: 8px;
      background: white;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .1);
      overflow: hidden;
      transition: border-color .18s ease, background .18s ease;
    }

    details.faq-item[open] {
      border-color: var(--green);
      background: var(--green-soft);
    }

    details.faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px;
      font-weight: 900;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    .footer {
      border-top: 2px solid var(--ink);
      background:
        linear-gradient(rgba(17, 24, 39, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .045) 1px, transparent 1px),
        var(--wash);
      background-size: 20px 20px;
    }

    @media (max-width: 1024px) {
      .site-container {
        width: min(100% - 28px, 920px);
      }

      .watch-item {
        grid-template-columns: auto 1fr;
      }

      .watch-item .status-wrap {
        grid-column: 2;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 56px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .top-strip {
        font-size: 12px;
      }

      .brand-name {
        max-width: 190px;
      }

      .channel-scroll {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .channel-scroll::-webkit-scrollbar {
        display: none;
      }

      .watch-item {
        grid-template-columns: 1fr;
      }

      .watch-item .status-wrap {
        grid-column: auto;
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 24px, 100%);
      }

      .hero-stage {
        border-radius: 8px;
        box-shadow: 5px 5px 0 rgba(17, 24, 39, .12);
      }

      .screen-window,
      .pixel-border,
      .entry-card {
        box-shadow: 3px 3px 0 rgba(17, 24, 39, .12);
      }

      .count-card {
        padding: 14px 8px;
      }
    }

/* roulang page: category1 */
:root {
      --green: #16A34A;
      --green-2: #22C55E;
      --green-dark: #15803D;
      --ink: #111827;
      --muted: #64748B;
      --line: #E5E7EB;
      --soft: #F8FAFC;
      --soft-2: #F3F4F6;
      --yellow: #FACC15;
      --purple: #8B5CF6;
      --shadow: 4px 4px 0 rgba(17, 24, 39, .12);
      --shadow-strong: 6px 6px 0 rgba(17, 24, 39, .18);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background:
        linear-gradient(rgba(17, 24, 39, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .035) 1px, transparent 1px),
        #fff;
      background-size: 24px 24px;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.65;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    .site-container {
      width: min(1180px, calc(100% - 32px));
      margin-inline: auto;
    }

    .focusable:focus-visible,
    .btn:focus-visible,
    .channel-link:focus-visible,
    input:focus-visible,
    select:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(34, 197, 94, .35);
      outline-offset: 3px;
    }

    .top-strip {
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(10px);
      font-size: 13px;
    }

    .header-main {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
    }

    .brand-mark {
      display: grid;
      grid-template-columns: repeat(3, 8px);
      grid-template-rows: repeat(3, 8px);
      gap: 3px;
      padding: 7px;
      border: 2px solid var(--ink);
      border-radius: 6px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .brand-mark span {
      width: 8px;
      height: 8px;
      background: var(--green);
    }

    .brand-mark span:nth-child(2),
    .brand-mark span:nth-child(4),
    .brand-mark span:nth-child(9) {
      background: var(--line);
    }

    .brand-name {
      max-width: 390px;
      overflow-wrap: anywhere;
    }

    .search-box {
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 2px 2px 0 rgba(17, 24, 39, .06);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .search-box:focus-within {
      border-color: var(--green);
      box-shadow: 3px 3px 0 rgba(22, 163, 74, .18);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      border: 2px solid var(--ink);
      border-radius: 7px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: var(--green);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translate(-1px, -1px);
      box-shadow: var(--shadow-strong);
    }

    .btn-secondary {
      color: var(--ink);
      background: #fff;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .10);
    }

    .btn-secondary:hover {
      background: #ECFDF5;
      transform: translate(-1px, -1px);
    }

    .btn:active {
      transform: translate(2px, 2px);
      box-shadow: 1px 1px 0 rgba(17, 24, 39, .12);
    }

    .channel-row {
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .channel-scroll {
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-scroll::-webkit-scrollbar {
      display: none;
    }

    .channel-link {
      display: inline-flex;
      min-height: 36px;
      align-items: center;
      justify-content: center;
      padding: .45rem .85rem;
      border: 2px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: #475569;
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
      transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
    }

    .channel-link:hover {
      border-color: rgba(22, 163, 74, .55);
      color: var(--green-dark);
      background: #F0FDF4;
      transform: translateY(-1px);
    }

    .channel-link.active {
      border-color: var(--green);
      color: #fff;
      background: var(--green);
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .12);
    }

    main {
      background: linear-gradient(180deg, rgba(248, 250, 252, .9), rgba(255,255,255,.96) 28%, rgba(248,250,252,.8));
    }

    .section {
      padding: 76px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .pixel-card,
    .status-panel,
    .timeline-item,
    .filter-bar,
    .faq-card,
    .cta-panel {
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .96);
      box-shadow: var(--shadow);
    }

    .pixel-card:hover,
    .timeline-item:hover {
      border-color: rgba(22, 163, 74, .5);
      box-shadow: var(--shadow-strong);
    }

    .label {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      min-height: 28px;
      padding: .25rem .65rem;
      border: 2px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: #475569;
      font-size: 13px;
      font-weight: 800;
    }

    .label-green {
      border-color: rgba(22, 163, 74, .45);
      color: var(--green-dark);
      background: #F0FDF4;
    }

    .label-yellow {
      border-color: rgba(250, 204, 21, .7);
      color: #854D0E;
      background: #FEFCE8;
    }

    .label-purple {
      border-color: rgba(139, 92, 246, .45);
      color: #6D28D9;
      background: #F5F3FF;
    }

    .hero-mini {
      position: relative;
      overflow: hidden;
      padding: 64px 0 44px;
    }

    .hero-mini::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 10%, rgba(34, 197, 94, .12), transparent 30%),
        linear-gradient(135deg, rgba(22, 163, 74, .06), transparent 42%);
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .5rem;
      color: #64748B;
      font-size: 14px;
      font-weight: 700;
    }

    .screen-panel {
      border: 2px solid var(--ink);
      border-radius: 10px;
      background: #fff;
      box-shadow: 8px 8px 0 rgba(17, 24, 39, .12);
      overflow: hidden;
    }

    .screen-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--line);
      background: var(--soft);
      padding: .75rem .9rem;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: var(--green);
      box-shadow: 14px 0 0 var(--yellow), 28px 0 0 var(--purple);
    }

    .filter-bar {
      padding: 16px;
    }

    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: .35rem .8rem;
      border: 2px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: #475569;
      font-size: 14px;
      font-weight: 800;
      transition: all .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      border-color: var(--green);
      background: #F0FDF4;
      color: var(--green-dark);
    }

    .select-field,
    .input-field {
      min-height: 44px;
      width: 100%;
      border: 2px solid var(--line);
      border-radius: 7px;
      background: #fff;
      padding: 0 .8rem;
      color: var(--ink);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .select-field:focus,
    .input-field:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
      outline: none;
    }

    .timeline {
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 8px;
      bottom: 8px;
      left: 18px;
      width: 3px;
      background: repeating-linear-gradient(to bottom, var(--green), var(--green) 8px, transparent 8px, transparent 15px);
    }

    .timeline-item {
      position: relative;
      margin-left: 48px;
      padding: 20px;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .timeline-item + .timeline-item {
      margin-top: 18px;
    }

    .timeline-item:hover {
      transform: translateY(-2px);
    }

    .timeline-date {
      position: absolute;
      left: -48px;
      top: 20px;
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 2px solid var(--ink);
      border-radius: 6px;
      background: #fff;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(17, 24, 39, .12);
    }

    .countdown-mini {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .time-cell {
      border: 2px solid rgba(22, 163, 74, .55);
      border-radius: 7px;
      background: #fff;
      padding: 12px 8px;
      text-align: center;
      box-shadow: 3px 3px 0 rgba(22, 163, 74, .12);
    }

    .time-num {
      display: block;
      color: var(--green-dark);
      font-size: 28px;
      font-weight: 950;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .time-label {
      margin-top: 5px;
      display: block;
      color: #64748B;
      font-size: 12px;
      font-weight: 800;
    }

    .notice-box {
      border: 2px dashed rgba(22, 163, 74, .55);
      border-radius: var(--radius);
      background: #F0FDF4;
    }

    .subscribe-panel {
      border: 2px solid var(--ink);
      border-radius: 10px;
      background: #fff;
      box-shadow: 7px 7px 0 rgba(17, 24, 39, .13);
    }

    .checkbox-line {
      display: flex;
      gap: .65rem;
      align-items: flex-start;
      border: 2px solid var(--line);
      border-radius: 7px;
      background: var(--soft);
      padding: .8rem;
      color: #475569;
      font-size: 14px;
    }

    .checkbox-line input {
      width: 18px;
      height: 18px;
      margin-top: 4px;
      accent-color: var(--green);
    }

    .faq-card {
      overflow: hidden;
      transition: border-color .2s ease, background-color .2s ease;
    }

    .faq-card[open] {
      border-color: var(--green);
      background: #F0FDF4;
    }

    .faq-card summary {
      display: flex;
      align-items: center;
      gap: .7rem;
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 900;
      list-style: none;
    }

    .faq-card summary::-webkit-details-marker {
      display: none;
    }

    .faq-card summary::before {
      content: "";
      width: 12px;
      height: 12px;
      flex: 0 0 12px;
      border: 2px solid var(--ink);
      background: var(--green);
      box-shadow: 2px 2px 0 rgba(17, 24, 39, .12);
    }

    .faq-card p {
      margin: 0;
      padding: 0 20px 20px 44px;
      color: #475569;
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-color: rgba(22, 163, 74, .45);
      background:
        linear-gradient(135deg, rgba(34, 197, 94, .12), rgba(255,255,255,.96) 40%),
        #fff;
    }

    .footer {
      border-top: 1px solid var(--line);
      background:
        linear-gradient(rgba(17, 24, 39, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .035) 1px, transparent 1px),
        #fff;
      background-size: 22px 22px;
    }

    @media (max-width: 1024px) {
      .section {
        padding: 62px 0;
      }

      .brand-name {
        max-width: 320px;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 24px, 1180px);
      }

      .top-strip .site-container {
        gap: .5rem;
      }

      .hero-mini {
        padding: 44px 0 32px;
      }

      .section,
      .section-tight {
        padding: 48px 0;
      }

      .brand-name {
        max-width: 260px;
        font-size: 16px;
      }

      .timeline::before {
        left: 14px;
      }

      .timeline-item {
        margin-left: 40px;
        padding: 16px;
      }

      .timeline-date {
        left: -40px;
        width: 32px;
        height: 32px;
        font-size: 11px;
      }

      .countdown-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .time-num {
        font-size: 24px;
      }
    }

    @media (max-width: 520px) {
      .btn {
        width: 100%;
      }

      .brand-mark {
        grid-template-columns: repeat(3, 7px);
        grid-template-rows: repeat(3, 7px);
        gap: 2px;
      }

      .brand-mark span {
        width: 7px;
        height: 7px;
      }

      .filter-bar {
        padding: 12px;
      }

      .screen-panel {
        box-shadow: 5px 5px 0 rgba(17, 24, 39, .12);
      }

      .faq-card summary {
        padding: 16px;
      }

      .faq-card p {
        padding: 0 16px 16px 38px;
      }
    }
