
    :root {
      --bg-a: #fff8ef;
      --bg-b: #e4fff4;
      --ink: #122026;
      --muted: #4e616b;
      --line: rgba(18, 32, 38, 0.16);
      --card: rgba(255, 255, 255, 0.86);
      --primary: #0a7b63;
      --hot: #d54f1c;
      --radius: 18px;
      --shadow: 0 20px 45px rgba(18, 32, 38, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      min-height: 100%;
      font-family: "Sora", "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 14% 12%, rgba(213, 79, 28, 0.19), transparent 45%),
        radial-gradient(circle at 82% 0%, rgba(10, 123, 99, 0.24), transparent 46%),
        linear-gradient(180deg, var(--bg-a) 0%, var(--bg-b) 100%);
    }

    a {
      color: inherit;
    }

    .shell {
      width: min(1220px, 100% - 28px);
      margin: 20px auto 42px;
    }

    .hero {
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 6px);
      padding: 20px;
      background: linear-gradient(138deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.72));
      box-shadow: var(--shadow);
      animation: rise 500ms ease-out;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(1.6rem, 5vw, 2.7rem);
      letter-spacing: -0.03em;
    }

    .hero p {
      margin: 9px 0 0;
      color: var(--muted);
      max-width: 780px;
      line-height: 1.55;
    }

    .chips {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 16px;
    }

    .chip {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.82);
      padding: 10px;
    }

    .chip .k {
      font-size: 0.78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .chip .v {
      margin-top: 6px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .layout {
      display: grid;
      grid-template-columns: 1fr 330px;
      gap: 14px;
      margin-top: 14px;
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      padding: 14px;
      box-shadow: 0 8px 20px rgba(18, 32, 38, 0.08);
    }

    .panel h2 {
      margin: 0 0 10px;
      font-size: 1.02rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .filters {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-bottom: 10px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .field label {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.85);
      color: var(--ink);
      padding: 9px 10px;
      font: inherit;
    }

    .field textarea {
      resize: vertical;
      min-height: 82px;
    }

    .meta-line {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 6px;
      font-family: "IBM Plex Mono", monospace;
    }

    .list {
      display: grid;
      gap: 10px;
    }

    .deal {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.9);
      display: grid;
      gap: 8px;
      transition: transform 160ms ease, box-shadow 160ms ease;
    }

    .deal:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(18, 32, 38, 0.12);
    }

    .deal.deal-expired {
      opacity: 0.72;
      border-style: dashed;
    }

    .deal-head {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      align-items: baseline;
    }

    .deal-title {
      margin: 0;
      font-size: 1rem;
      line-height: 1.45;
    }

    .badge {
      border: 1px solid rgba(213, 79, 28, 0.24);
      color: var(--hot);
      background: rgba(213, 79, 28, 0.08);
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 0.78rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .deal-meta {
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      font-size: 0.85rem;
      font-family: "IBM Plex Mono", monospace;
    }

    .deal-actions {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .btn {
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 9px 12px;
      background: rgba(255, 255, 255, 0.88);
      color: var(--ink);
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
      font: inherit;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn.primary {
      background: var(--primary);
      border-color: rgba(10, 123, 99, 0.55);
      color: #ffffff;
    }

    .btn.hot {
      background: var(--hot);
      border-color: rgba(213, 79, 28, 0.55);
      color: #fff;
    }

    .paywall {
      border: 1px dashed rgba(213, 79, 28, 0.5);
      border-radius: 14px;
      padding: 14px;
      background: rgba(213, 79, 28, 0.07);
      display: grid;
      gap: 10px;
    }

    .small {
      color: var(--muted);
      font-size: 0.83rem;
      line-height: 1.5;
    }

    .actions-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .quick-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .quick-btn {
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      color: var(--ink);
      padding: 6px 10px;
      font: inherit;
      font-size: 0.8rem;
      cursor: pointer;
    }

    .quick-btn.active {
      background: rgba(10, 123, 99, 0.12);
      border-color: rgba(10, 123, 99, 0.4);
      color: #0b5d4d;
      font-weight: 700;
    }

    .pricing {
      display: grid;
      gap: 10px;
    }

    .price-card {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.88);
      display: grid;
      gap: 6px;
    }

    .price {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    footer {
      margin-top: 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.7);
      padding: 11px 12px;
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.5;
    }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1020px) {
      .layout {
        grid-template-columns: 1fr;
      }

      .chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .shell {
        width: min(1220px, 100% - 16px);
        margin-top: 12px;
      }

      .hero,
      .panel {
        padding: 12px;
      }

      .chips,
      .filters {
        grid-template-columns: 1fr;
      }

      .deal-head {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  
