    /* ─── Lootbit Design Tokens ───────────────────────────────────────── */
    :root {
      /* Backgrounds — deep purple-black with stepped layers */
      --bg:           #07050E;
      --bg-1:         #0E0A1C;
      --bg-2:         #16102A;
      --bg-3:         #1F1840;
      --bg-card:      #0E0A1C;
      --bg-muted:     #16102A;
      --bg-border:    rgba(168,139,250,0.14);

      /* Lines (hairline accents) */
      --line:         rgba(168,139,250,0.14);
      --line-strong:  rgba(168,139,250,0.28);

      /* Brand */
      --violet:       oklch(0.65 0.22 305);
      --violet-deep:  oklch(0.5 0.24 295);
      --pink:         oklch(0.68 0.24 358);
      --pink-deep:    oklch(0.58 0.26 350);
      --lime:         oklch(0.85 0.18 130);

      /* Legacy aliases — preserved so older pages keep rendering */
      --primary:      var(--violet);
      --primary-glow: rgba(124, 58, 237, 0.35);
      --secondary:    #A78BFA;
      --cta:          var(--pink);
      --cta-hover:    var(--pink-deep);
      --cta-glow:     rgba(236, 72, 153, 0.4);
      --green:        var(--lime);
      --yellow:       #EAB308;

      --fg:           #F4F1FA;
      --fg-muted:     #B8AED4;
      --fg-dim:       #6F6590;

      --radius:       6px;
      --radius-lg:    10px;
      --radius-xl:    16px;
      --font-head:    'Space Grotesk', sans-serif;
      --font-display: 'Space Grotesk', sans-serif;
      --font-body:    'Space Grotesk', sans-serif;
      --font-mono:    'JetBrains Mono', monospace;
      --transition:   150ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ─── Reset ────────────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--fg);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }
    /* Page-wide atmospheric backdrop — radial glows + hairline grid.
       Pinned to viewport so it stays warm under every scroll position
       instead of cutting to flat black past the hero. */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 90% at 15% 20%, rgba(124,58,237,0.22), transparent 60%),
        radial-gradient(ellipse 60% 80% at 95% 90%, rgba(236,72,153,0.18), transparent 60%);
      pointer-events: none;
      z-index: -2;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(168,139,250,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,139,250,0.05) 1px, transparent 1px);
      background-size: 80px 80px;
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 75%);
              mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 75%);
      pointer-events: none;
      z-index: -1;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
    ul { list-style: none; }

    /* ─── Announcement Bar ─────────────────────────────────────────────── */
    .announce {
      background: linear-gradient(90deg, var(--primary), #9333EA, var(--cta));
      text-align: center;
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .announce span { opacity: 0.85; }
    .announce strong { opacity: 1; }

    /* ─── Header ───────────────────────────────────────────────────────── */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 26, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--bg-border);
    }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--cta));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { width: 20px; height: 20px; fill: #fff; }
    .logo-text {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 900;
      background: linear-gradient(90deg, var(--secondary), #fff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Search */
    .search-wrap {
      flex: 1;
      max-width: 540px;
      position: relative;
    }
    .search-wrap input {
      width: 100%;
      height: 42px;
      padding: 0 16px 0 44px;
      background: var(--bg-muted);
      border: 1px solid var(--bg-border);
      border-radius: 100px;
      color: var(--fg);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .search-wrap input::placeholder { color: var(--fg-dim); }
    .search-wrap input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-glow);
    }
    .search-icon {
      position: absolute;
      left: 14px; top: 50%;
      transform: translateY(-50%);
      color: var(--fg-dim);
      pointer-events: none;
    }

    /* Live search dropdown */
    .kv-search-results {
      position: absolute;
      top: calc(100% + 6px);
      left: 0; right: 0;
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      z-index: 50;
      max-height: 70vh;
      overflow-y: auto;
    }
    .kv-search-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-bottom: 1px solid var(--bg-border);
      transition: background var(--transition);
    }
    .kv-search-row:last-child { border-bottom: none; }
    .kv-search-row:hover { background: var(--bg-muted); }
    .kv-search-thumb {
      width: 56px; height: 32px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
      background: var(--bg-muted);
    }
    .kv-search-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .kv-search-thumb-empty { display: block; width: 100%; height: 100%; }
    .kv-search-meta { display: flex; flex-direction: column; min-width: 0; }
    .kv-search-title {
      font-size: 13px;
      color: var(--fg);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .kv-search-price { font-size: 12px; color: var(--secondary); }
    .kv-search-empty {
      padding: 14px;
      color: var(--fg-dim);
      font-size: 13px;
      text-align: center;
    }
    .kv-search-loading {
      padding: 14px;
      color: var(--fg-dim);
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .kv-spinner {
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 2px solid var(--fg-dim);
      border-top-color: transparent;
      border-radius: 50%;
      animation: kv-spin 0.7s linear infinite;
    }
    @keyframes kv-spin {
      to { transform: rotate(360deg); }
    }

    /* Nav */
    .nav { display: flex; align-items: center; gap: 4px; }
    .nav a {
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-muted);
      transition: color var(--transition), background var(--transition);
    }
    .nav a:hover { color: var(--fg); background: var(--bg-muted); }
    .nav a.active { color: var(--secondary); }

    /* Header actions */
    .header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
    .btn-ghost {
      height: 38px;
      padding: 0 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-muted);
      border: 1px solid var(--bg-border);
      transition: all var(--transition);
    }
    .btn-ghost:hover { color: var(--fg); border-color: var(--fg-dim); background: var(--bg-muted); }
    .btn-primary {
      height: 38px;
      padding: 0 18px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      background: var(--cta);
      color: #fff;
      transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .btn-primary:hover {
      background: var(--cta-hover);
      box-shadow: 0 4px 20px var(--cta-glow);
      transform: translateY(-1px);
    }
    .btn-primary:active { transform: translateY(0); }

    .cart-btn {
      position: relative;
      width: 40px; height: 40px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--bg-border);
      color: var(--fg-muted);
      transition: all var(--transition);
    }
    .cart-btn:hover { color: var(--fg); border-color: var(--primary); background: var(--bg-muted); }
    .cart-badge {
      position: absolute;
      top: -5px; right: -5px;
      width: 18px; height: 18px;
      background: var(--cta);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--bg);
    }

    /* ─── Hero ─────────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 64px 24px 72px;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 30%, rgba(244, 63, 94, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    }
    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }
    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .hero-content { flex: 1; max-width: 580px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.35);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 24px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--secondary);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }
    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .hero h1 .gradient-text {
      background: linear-gradient(90deg, var(--secondary) 0%, var(--cta) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 17px;
      color: var(--fg-muted);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 460px;
    }
    .hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .btn-hero {
      height: 52px;
      padding: 0 28px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 700;
      background: linear-gradient(135deg, var(--primary), var(--cta));
      color: #fff;
      transition: all var(--transition);
      box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
    }
    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
    }
    .btn-hero:active { transform: translateY(0); }
    .btn-hero-outline {
      height: 52px;
      padding: 0 28px;
      border-radius: 100px;
      font-size: 15px;
      font-weight: 600;
      border: 1.5px solid var(--bg-border);
      color: var(--fg-muted);
      transition: all var(--transition);
    }
    .btn-hero-outline:hover {
      color: var(--fg);
      border-color: var(--secondary);
      background: rgba(167, 139, 250, 0.08);
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
    }
    .hero-stat-num {
      font-family: var(--font-head);
      font-size: 24px;
      font-weight: 900;
      color: var(--fg);
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-stat-num .accent { color: var(--secondary); }
    .hero-stat-label { font-size: 12px; color: var(--fg-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

    /* Hero featured game card */
    .hero-visual { flex: 0 0 340px; position: relative; }
    .hero-featured-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(124, 58, 237, 0.1);
    }
    .hero-featured-img {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #1a0a2e 0%, #2d1a4a 40%, #1a0a2e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-featured-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(244,63,94,0.2));
    }
    .hero-featured-img .game-logo-placeholder {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 900;
      color: rgba(255,255,255,0.9);
      z-index: 1;
      text-align: center;
      text-shadow: 0 0 40px rgba(167,139,250,0.8);
    }
    .hero-featured-img .glow-orb {
      position: absolute;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124,58,237,0.6) 0%, transparent 70%);
      top: 20px; right: 40px;
    }
    .hero-featured-img .glow-orb-2 {
      position: absolute;
      width: 80px; height: 80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244,63,94,0.5) 0%, transparent 70%);
      bottom: 10px; left: 30px;
    }
    .hero-featured-body { padding: 20px; }
    .hero-featured-platform {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 10px;
      background: rgba(124,58,237,0.15);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }
    .hero-featured-title {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    .hero-featured-pricing {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .hero-featured-prices { display: flex; flex-direction: column; }
    .price-original {
      font-size: 12px;
      color: var(--fg-dim);
      text-decoration: line-through;
      font-family: var(--font-mono);
    }
    .price-sale {
      font-family: var(--font-mono);
      font-size: 26px;
      font-weight: 500;
      color: var(--green);
      line-height: 1;
    }
    .discount-badge-hero {
      background: var(--cta);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 8px;
      font-family: var(--font-head);
    }
    .floating-review {
      position: absolute;
      bottom: -16px;
      left: -24px;
      background: var(--bg-muted);
      border: 1px solid var(--bg-border);
      border-radius: 12px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .review-stars { color: var(--yellow); font-size: 13px; letter-spacing: -1px; }
    .review-text { font-size: 12px; font-weight: 600; }
    .review-sub { font-size: 11px; color: var(--fg-dim); }
    .floating-deal {
      position: absolute;
      top: -16px;
      right: -16px;
      background: linear-gradient(135deg, var(--primary), var(--cta));
      border-radius: 50%;
      width: 64px; height: 64px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(244,63,94,0.4);
    }
    .floating-deal-text { font-size: 10px; font-weight: 700; color: #fff; line-height: 1; }
    .floating-deal-num {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    /* ─── Section Wrapper ──────────────────────────────────────────────── */
    .section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 64px 24px;
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 16px;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--secondary);
      margin-bottom: 8px;
    }
    .section-label::before {
      content: '';
      width: 16px; height: 2px;
      background: var(--primary);
      border-radius: 1px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }
    .section-title span { color: var(--secondary); }
    .view-all {
      font-size: 13px;
      font-weight: 600;
      color: var(--secondary);
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 16px;
      border: 1px solid rgba(167,139,250,0.25);
      border-radius: 8px;
      white-space: nowrap;
      transition: all var(--transition);
      flex-shrink: 0;
    }
    .view-all:hover { background: rgba(167,139,250,0.08); border-color: var(--secondary); }
    .view-all svg { width: 14px; height: 14px; }

    /* ─── Platforms ────────────────────────────────────────────────────── */
    .platforms-strip {
      background: var(--bg-card);
      border-top: 1px solid var(--bg-border);
      border-bottom: 1px solid var(--bg-border);
    }
    .platforms-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: stretch;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .platforms-inner::-webkit-scrollbar { display: none; }
    .platform-tab {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 20px 28px;
      border-right: 1px solid var(--bg-border);
      cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
      min-width: 120px;
    }
    .platform-tab:first-child { border-left: 1px solid var(--bg-border); }
    .platform-tab:hover { background: var(--bg-muted); }
    .platform-tab.active {
      background: rgba(124,58,237,0.1);
      border-bottom: 2px solid var(--primary);
    }
    .platform-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .platform-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-muted);
    }
    .platform-tab.active .platform-name { color: var(--secondary); }
    .platform-count {
      font-size: 11px;
      color: var(--fg-dim);
    }

    /* ─── Game Cards ───────────────────────────────────────────────────── */
    .games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }
    .game-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }
    .game-card:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(124,58,237,0.2);
    }
    .game-cover {
      width: 100%;
      aspect-ratio: 460 / 215;
      position: relative;
      overflow: hidden;
      background: #1a1030;
    }
    .game-cover-art {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 900;
      text-align: center;
      padding: 10px;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.02em;
    }
    .game-cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,26,0.95) 0%, transparent 50%);
    }
    .game-discount-pill {
      position: absolute;
      top: 10px; left: 10px;
      background: var(--cta);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      font-family: var(--font-head);
    }
    .game-platform-pill {
      position: absolute;
      top: 10px; right: 10px;
      padding: 3px 9px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      backdrop-filter: blur(8px);
    }
    .pill-steam { background: rgba(26,159,255,0.25); border: 1px solid rgba(26,159,255,0.5); color: #60B9FF; }
    .pill-psn   { background: rgba(0,70,180,0.25);   border: 1px solid rgba(0,70,180,0.5);   color: #6099FF; }
    .pill-xbox  { background: rgba(16,185,80,0.25);  border: 1px solid rgba(16,185,80,0.5);  color: #4ADE80; }
    .pill-epic  { background: rgba(255,255,255,0.12);border: 1px solid rgba(255,255,255,0.2);color: #E2E8F0; }

    .game-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
    .game-title {
      font-weight: 700;
      font-size: 14px;
      line-height: 1.35;
      margin-bottom: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .game-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .game-genre {
      font-size: 11px;
      color: var(--fg-dim);
      background: var(--bg-muted);
      padding: 2px 8px;
      border-radius: 4px;
    }
    .game-rating {
      display: flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      color: var(--yellow);
    }
    .game-rating span { color: var(--fg-dim); }
    .game-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
    }
    .price-block {}
    .price-was {
      font-size: 11px;
      color: var(--fg-dim);
      text-decoration: line-through;
      font-family: var(--font-mono);
      line-height: 1;
      margin-bottom: 1px;
    }
    .price-now {
      font-family: var(--font-mono);
      font-size: 20px;
      font-weight: 500;
      color: var(--green);
      line-height: 1;
    }
    .btn-buy {
      height: 36px;
      padding: 0 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      background: var(--primary);
      color: #fff;
      transition: all var(--transition);
      white-space: nowrap;
    }
    .btn-buy:hover {
      background: #6D28D9;
      box-shadow: 0 4px 16px var(--primary-glow);
      transform: translateY(-1px);
    }
    .btn-buy:active { transform: translateY(0); }

    /* ─── Hot Deal Banner ──────────────────────────────────────────────── */
    .hot-deal-banner {
      background: linear-gradient(135deg, #1A0A3A 0%, #2D1A5A 40%, #1A0A3A 100%);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: var(--radius-xl);
      padding: 48px;
      display: flex;
      align-items: center;
      gap: 48px;
      position: relative;
      overflow: hidden;
    }
    .hot-deal-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 100% at 0% 50%, rgba(124,58,237,0.25), transparent),
        radial-gradient(ellipse 40% 80% at 100% 50%, rgba(244,63,94,0.15), transparent);
    }
    .hot-deal-banner > * { position: relative; }
    .hot-deal-content { flex: 1; }
    .hot-deal-eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--cta);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hot-deal-eyebrow::after { content: ''; flex: 1; height: 1px; background: rgba(244,63,94,0.3); }
    .hot-deal-title {
      font-family: var(--font-head);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .hot-deal-sub { font-size: 15px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.6; }
    .countdown {
      display: flex;
      gap: 12px;
      margin-bottom: 28px;
    }
    .countdown-unit {
      text-align: center;
    }
    .countdown-num {
      font-family: var(--font-mono);
      font-size: 32px;
      font-weight: 500;
      color: var(--fg);
      background: var(--bg-muted);
      border: 1px solid var(--bg-border);
      border-radius: 8px;
      padding: 8px 16px;
      line-height: 1;
      display: block;
      min-width: 64px;
    }
    .countdown-label { font-size: 10px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
    .countdown-sep { font-family: var(--font-mono); font-size: 32px; color: var(--fg-dim); padding-top: 8px; }
    .hot-deal-visual {
      flex: 0 0 280px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      aspect-ratio: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      overflow: hidden;
      position: relative;
    }
    .hot-deal-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(244,63,94,0.1));
    }
    .hot-deal-game-name {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 900;
      text-align: center;
      padding: 0 16px;
      z-index: 1;
      text-shadow: 0 0 30px rgba(167,139,250,0.6);
    }
    .hot-deal-price-wrap { z-index: 1; text-align: center; }

    /* ─── Featured Row ─────────────────────────────────────────────────── */
    .featured-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .featured-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      gap: 0;
      transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .featured-card:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 32px rgba(124,58,237,0.15);
      transform: translateY(-2px);
    }
    .featured-cover {
      width: 140px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 900;
      text-align: center;
      padding: 12px;
      color: rgba(255,255,255,0.7);
    }
    .featured-info {
      padding: 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .featured-platform-badge {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--secondary);
      margin-bottom: 6px;
    }
    .featured-title {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .featured-desc { font-size: 12px; color: var(--fg-dim); line-height: 1.5; margin-bottom: 12px; }
    .featured-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }

    /* ─── How it Works ─────────────────────────────────────────────────── */
    .how-it-works {
      background: var(--bg-card);
      border-top: 1px solid var(--bg-border);
      border-bottom: 1px solid var(--bg-border);
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .step {
      padding: 40px 32px;
      border-right: 1px solid var(--bg-border);
      position: relative;
      transition: background var(--transition);
    }
    .step:last-child { border-right: none; }
    .step:hover { background: var(--bg-muted); }
    .step-num {
      font-family: var(--font-head);
      font-size: 48px;
      font-weight: 900;
      color: rgba(124,58,237,0.15);
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .step-icon {
      width: 48px; height: 48px;
      background: rgba(124,58,237,0.15);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      font-size: 22px;
    }
    .step-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
    .step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
    .step-connector {
      position: absolute;
      top: 40px; right: -12px;
      width: 24px; height: 24px;
      background: var(--bg-border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 1;
      color: var(--fg-dim);
      font-size: 10px;
    }

    /* ─── Trust Badges ─────────────────────────────────────────────────── */
    .trust-bar {
      max-width: 1400px;
      margin: 0 auto;
      padding: 48px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--bg-border);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .trust-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(124,58,237,0.12);
      border: 1px solid rgba(124,58,237,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .trust-text-main { font-weight: 700; font-size: 14px; }
    .trust-text-sub { font-size: 12px; color: var(--fg-dim); }

    /* ─── Footer ───────────────────────────────────────────────────────── */
    footer {
      background: var(--bg-card);
      border-top: 1px solid var(--bg-border);
    }
    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 56px 24px 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--fg-muted);
      line-height: 1.7;
      margin: 16px 0 24px;
      max-width: 280px;
    }
    .social-links { display: flex; gap: 8px; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      border: 1px solid var(--bg-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px;
      color: var(--fg-muted);
      transition: all var(--transition);
    }
    .social-btn:hover { color: var(--fg); border-color: var(--primary); background: rgba(124,58,237,0.1); }
    .footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-dim); margin-bottom: 16px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: var(--fg-muted); transition: color var(--transition); }
    .footer-links a:hover { color: var(--fg); }
    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 24px;
      border-top: 1px solid var(--bg-border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 13px; color: var(--fg-dim); }
    .payment-icons { display: flex; gap: 8px; }
    .pay-badge {
      padding: 4px 10px;
      border: 1px solid var(--bg-border);
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
      color: var(--fg-dim);
    }

    /* ─── Notification Toast ───────────────────────────────────────────── */
    .toast-wrap {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 999;
      display: flex; flex-direction: column; gap: 10px;
      pointer-events: none;
    }
    .toast {
      background: var(--bg-muted);
      border: 1px solid var(--bg-border);
      border-left: 3px solid var(--green);
      border-radius: 12px;
      padding: 14px 18px;
      min-width: 280px;
      max-width: 340px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      animation: slideIn 0.3s ease forwards;
      pointer-events: all;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .toast-icon { font-size: 20px; flex-shrink: 0; }
    .toast-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
    .toast-sub { font-size: 12px; color: var(--fg-muted); }

    /* ─── Misc ─────────────────────────────────────────────────────────── */
    .divider {
      border: none;
      border-top: 1px solid var(--bg-border);
    }
    .tag-new {
      display: inline-block;
      padding: 2px 7px;
      background: rgba(34,197,94,0.15);
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-left: 6px;
    }

    /* ─── Responsive ───────────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .hero-visual { flex: 0 0 280px; }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .step:nth-child(2) { border-right: none; }
      .step:nth-child(3) { border-top: 1px solid var(--bg-border); }
      .step:nth-child(4) { border-top: 1px solid var(--bg-border); }
    }
    @media (max-width: 900px) {
      .hero-inner { flex-direction: column; text-align: center; }
      .hero-content { max-width: 100%; }
      .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { width: 100%; max-width: 360px; flex: none; }
      .floating-review { left: 0; }
      .featured-grid { grid-template-columns: 1fr; }
      .hot-deal-banner { flex-direction: column; padding: 32px 24px; }
      .hot-deal-visual { flex: none; width: 100%; max-width: 320px; }
      .nav { display: none; }
    }
    @media (max-width: 640px) {
      .header-inner { padding: 0 16px; gap: 12px; }
      .search-wrap { display: none; }
      .hero { padding: 40px 16px 48px; }
      .section { padding: 40px 16px; }
      .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .steps-grid { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--bg-border); }
      .step:last-child { border-bottom: none; }
      .footer-main { grid-template-columns: 1fr; gap: 32px; }
      .trust-bar { gap: 24px; padding: 32px 16px; }
      .hot-deal-banner { padding: 24px 16px; }
      .countdown-num { font-size: 22px; padding: 6px 10px; min-width: 48px; }
    }
</head>
<body>

<!-- ─── Announcement Bar ─────────────────────────────────────────── -->
<div class="announce">
  <strong>SUMMER SALE</strong> <span>— Up to 80% off on 500+ games!</span>

    /* ─── Forms (auth pages) ──────────────────────────────────────────── */
    .section-narrow {
      max-width: 560px;
      margin: 0 auto;
      padding: 64px 24px;
    }
    .form-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-xl);
      padding: 36px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    }
    .form-card h1 {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }
    .form-eyebrow {
      font-size: 12px;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .form-card p.lead {
      font-size: 14px;
      color: var(--fg-muted);
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .form-field { margin-bottom: 18px; }
    .form-field label {
      display: block;
      font-size: 12px;
      color: var(--fg-muted);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }
    .form-field input,
    .form-field textarea {
      width: 100%;
      padding: 0 16px;
      height: 46px;
      background: var(--bg-muted);
      border: 1px solid var(--bg-border);
      border-radius: 10px;
      color: var(--fg);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-field textarea {
      height: auto;
      padding: 14px 16px;
      font-family: var(--font-mono);
      font-size: 14px;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-glow);
    }
    .form-card .btn-hero {
      width: 100%;
      justify-content: center;
      height: 48px;
      display: inline-flex;
      align-items: center;
    }
    .form-foot {
      margin-top: 18px;
      font-size: 13px;
      color: var(--fg-muted);
      text-align: center;
    }
    .form-foot a { color: var(--secondary); font-weight: 600; }

    .alert {
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 14px;
      margin-bottom: 16px;
      border: 1px solid;
    }
    .alert-err { background: rgba(244,63,94,0.1); border-color: rgba(244,63,94,0.35); color: #FCA5A5; }
    .alert-ok  { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.3);  color: #86EFAC; }

    /* ─── User pill (logged-in chip) ──────────────────────────────────── */
    .user-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 38px;
      padding: 0 14px;
      border-radius: 8px;
      border: 1px solid var(--bg-border);
      background: var(--bg-muted);
      font-size: 13px;
      color: var(--fg-muted);
      transition: all var(--transition);
    }
    .user-pill:hover { color: var(--fg); border-color: var(--secondary); }
    .user-pill::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
    }

    /* ─── Product detail page ─────────────────────────────────────────── */
    .product-page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 24px;
    }
    .product-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 36px;
    }
    .product-cover {
      aspect-ratio: 460 / 215;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--bg-border);
      background: #1a1030;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.1);
    }
    .product-cover img { width: 100%; height: 100%; object-fit: cover; }
    .product-info h1 {
      font-family: var(--font-head);
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
    }
    .product-genres { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
    .product-genre {
      font-size: 11px;
      color: var(--secondary);
      background: rgba(167,139,250,0.12);
      border: 1px solid rgba(167,139,250,0.25);
      padding: 3px 10px;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .product-desc {
      font-size: 15px;
      color: var(--fg-muted);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .price-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-bottom: 16px;
    }
    .price-eyebrow {
      font-size: 11px;
      color: var(--fg-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
    .price-big {
      font-family: var(--font-mono);
      font-size: 36px;
      font-weight: 500;
      color: var(--green);
      line-height: 1;
      margin-bottom: 18px;
    }
    .price-big .price-was-inline {
      font-size: 18px;
      color: var(--fg-dim);
      text-decoration: line-through;
      margin-left: 12px;
    }
    .product-status { font-size: 13px; color: var(--fg-muted); margin-top: 12px; }

    /* ─── Orders table + status pills ────────────────────────────────── */
    .orders-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .orders-table th, .orders-table td {
      padding: 14px 16px;
      text-align: left;
      font-size: 14px;
      border-bottom: 1px solid var(--bg-border);
    }
    .orders-table th {
      background: var(--bg-muted);
      font-size: 11px;
      color: var(--fg-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }
    .orders-table tr:last-child td { border-bottom: none; }
    .orders-table tr:hover td { background: rgba(124,58,237,0.04); }
    .status-pill {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .status-pending_payment { background: rgba(234,179,8,0.15);   color: var(--yellow);    border: 1px solid rgba(234,179,8,0.35); }
    .status-paid            { background: rgba(124,58,237,0.15);  color: var(--secondary); border: 1px solid rgba(124,58,237,0.35); }
    .status-fulfilled       { background: rgba(34,197,94,0.15);   color: var(--green);     border: 1px solid rgba(34,197,94,0.35); }
    .status-failed          { background: rgba(244,63,94,0.15);   color: var(--cta);       border: 1px solid rgba(244,63,94,0.35); }

    /* ─── Key delivery card ──────────────────────────────────────────── */
    .key-card {
      background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(124,58,237,0.05));
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: var(--radius-lg);
      padding: 24px;
      margin-top: 24px;
    }
    .key-card-label {
      font-size: 11px;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .key-code {
      font-family: var(--font-mono);
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--fg);
      background: var(--bg);
      padding: 16px;
      border-radius: 10px;
      border: 1px dashed rgba(34,197,94,0.3);
      user-select: all;
      word-break: break-all;
    }

    .games-grid--empty {
      grid-column: 1 / -1;
      padding: 48px 24px;
      text-align: center;
      color: var(--fg-muted);
      background: var(--bg-card);
      border: 1px dashed var(--bg-border);
      border-radius: var(--radius-lg);
    }

    .game-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .err { color: var(--cta); }
    .ok  { color: var(--green); }
    @media (max-width: 900px) {
      .product-grid { grid-template-columns: 1fr; }
    }

    /* ─── Button text centering fix ──────────────────────────────────── */
    .btn-hero, .btn-hero-outline, .btn-primary, .btn-ghost, .btn-buy,
    .view-all, .user-pill, .discount-badge-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none;
    }
    a.btn-hero, a.btn-hero-outline, a.btn-primary, a.btn-ghost, a.btn-buy {
      text-decoration: none;
    }

    /* ═════════════════════════════════════════════════════════════════════
       LOOTBIT THEME — main page rebrand
       ═════════════════════════════════════════════════════════════════════ */

    /* ─── Header (Lootbit) ──────────────────────────────────────────── */
    .lb-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(7, 5, 14, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
    }
    .lb-header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 14px 64px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .lb-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
    .lb-logo-svg { flex-shrink: 0; }
    .lb-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 0.95;
      font-family: var(--font-display);
    }
    .lb-logo-name {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--fg);
    }
    .lb-logo-name .accent { color: var(--pink); }
    .lb-logo-tag {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.22em;
      color: var(--fg-dim);
      margin-top: 4px;
      text-transform: uppercase;
      font-family: var(--font-mono);
    }
    .lb-search-wrap {
      flex: 1;
      max-width: 480;
      margin-left: 24px;
      position: relative;
    }
    .lb-search-input-wrap {
      background: var(--bg-1);
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--fg);
    }
    .lb-search-input-wrap:focus-within {
      border-color: var(--line-strong);
    }
    .lb-search-prompt { color: var(--violet); }
    .lb-search-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: var(--fg);
      font-family: var(--font-mono);
      font-size: 12px;
    }
    .lb-search-input::placeholder { color: var(--fg-dim); }
    .lb-nav {
      display: flex;
      gap: 24px;
      margin-left: auto;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .lb-nav a { color: var(--fg-mute); transition: color 0.15s; }
    .lb-nav a:hover, .lb-nav a.active { color: var(--pink); }
    .lb-header-actions { display: flex; gap: 8px; align-items: center; }
    .lb-btn-ghost {
      height: 38px;
      padding: 0 16px;
      background: transparent;
      border: 1px solid var(--line-strong);
      color: var(--fg);
      border-radius: 4px;
      font-family: var(--font-mono);
      font-size: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
    }
    .lb-btn-ghost:hover { background: var(--bg-1); }
    .lb-btn-pink {
      height: 38px;
      padding: 0 16px;
      background: var(--pink);
      border: none;
      color: #fff;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
    }
    .lb-btn-pink:hover { background: var(--pink-deep); }
    .lb-user-pill {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--fg-mute);
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 4px;
    }

    /* ─── Hero (Lootbit) ────────────────────────────────────────────── */
    .lb-hero {
      position: relative;
      padding: 80px 64px 96px;
      color: var(--fg);
      font-family: var(--font-display);
    }
    /* Inline grid div is kept for backwards compatibility but the
       atmospheric grid now lives on body::after, so this is a no-op. */
    .lb-hero-grid-bg { display: none; }
    .lb-hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
    }
    .lb-terminal-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--violet);
      background: var(--bg-1);
      border: 1px solid var(--line-strong);
      border-radius: 4px;
      padding: 8px 14px;
      margin-bottom: 28px;
    }
    .lb-terminal-pill .home { color: var(--pink); }
    .lb-terminal-pill .dollar { color: var(--fg-dim); }
    .lb-terminal-cursor {
      display: inline-block;
      width: 7px;
      height: 14px;
      background: var(--violet);
      animation: lbBlink 1s steps(2) infinite;
    }
    @keyframes lbBlink { 50% { opacity: 0; } }
    .lb-hero-h1 {
      margin: 0;
      font-size: 124px;
      font-weight: 800;
      line-height: 0.86;
      letter-spacing: -0.06em;
      text-wrap: balance;
    }
    .lb-hero-h1 .dot-v { color: var(--violet); }
    .lb-hero-h1 .dot-p { color: var(--pink); }
    .lb-hero-h1 .play   { color: var(--fg-mute); }
    .lb-hero-h1 .repeat { color: var(--violet); }
    .lb-hero-h1 .under  { color: var(--pink); }
    .lb-hero-sub {
      margin-top: 28px;
      font-size: 17px;
      color: var(--fg-mute);
      line-height: 1.55;
      max-width: 480px;
      text-wrap: pretty;
    }
    .lb-hero-cta {
      display: flex;
      gap: 12px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .lb-btn-primary {
      height: 52px;
      padding: 0 28px;
      background: var(--fg);
      color: var(--bg);
      border: none;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .lb-btn-primary:hover { opacity: 0.9; }
    .lb-btn-cta {
      height: 52px;
      padding: 0 28px;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .lb-btn-cta:hover { background: var(--pink-deep); }

    /* ─── Hero featured card ────────────────────────────────────────── */
    .lb-featured-wrap { position: relative; }
    .lb-featured {
      background: var(--bg-1);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    }
    .lb-featured-cover {
      width: 100%;
      height: 280px;
      background:
        repeating-linear-gradient(135deg, rgba(124,58,237,0.20) 0 12px, rgba(124,58,237,0.08) 12px 24px);
      position: relative;
      overflow: hidden;
    }
    .lb-featured-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lb-featured-body { padding: 24px; }
    .lb-featured-tags {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .lb-tag-steam {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--violet);
      padding: 3px 8px;
      border: 1px solid var(--line-strong);
      border-radius: 3px;
    }
    .lb-tag-comment {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--fg-dim);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .lb-featured-title {
      margin: 0;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--fg);
    }
    .lb-featured-foot {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 18px;
    }
    .lb-price-was {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--fg-dim);
      text-decoration: line-through;
    }
    .lb-price-now {
      font-family: var(--font-mono);
      font-size: 32px;
      font-weight: 500;
      color: var(--lime);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .lb-buy-now {
      height: 44px;
      padding: 0 18px;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -0.01em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .lb-buy-now:hover { background: var(--pink-deep); }
    .lb-discount-tag {
      position: absolute;
      top: -18px;
      right: -18px;
      background: var(--pink);
      color: #fff;
      border-radius: 4px;
      padding: 12px 14px;
      transform: rotate(4deg);
      font-family: var(--font-display);
      font-weight: 800;
      box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
    }
    .lb-discount-tag .save {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.8;
    }
    .lb-discount-tag .pct {
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    /* ─── Popular Games section ────────────────────────────────────── */
    .lb-section {
      padding: 72px 64px 96px;
      background: transparent;
      color: var(--fg);
      font-family: var(--font-display);
    }
    .lb-section-inner { max-width: 1280px; margin: 0 auto; }
    .lb-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .lb-section-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--violet);
      margin-bottom: 12px;
    }
    .lb-section-title {
      margin: 0;
      font-size: 56px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      text-wrap: balance;
    }
    .lb-section-title .accent { color: var(--pink); }
    .lb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    @media (max-width: 1100px) { .lb-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 800px)  { .lb-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ─── Game card (Lootbit) ──────────────────────────────────────── */
    .lb-card {
      background: var(--bg-1);
      border: 1px solid var(--line);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s, transform 0.2s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }
    .lb-card:hover {
      border-color: var(--line-strong);
      transform: translateY(-2px);
    }
    .lb-card-cover {
      position: relative;
      height: 160px;
      background: repeating-linear-gradient(135deg, rgba(168,139,250,0.14) 0 12px, rgba(168,139,250,0.06) 12px 24px);
      overflow: hidden;
    }
    .lb-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lb-card-tag-platform {
      position: absolute;
      top: 10px;
      left: 10px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fg);
      background: rgba(7, 5, 14, 0.85);
      padding: 3px 7px;
      border: 1px solid var(--line-strong);
      border-radius: 3px;
    }
    .lb-card-tag-discount {
      position: absolute;
      top: 10px;
      right: 10px;
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      background: var(--pink);
      padding: 4px 8px;
      border-radius: 3px;
      letter-spacing: -0.01em;
    }
    .lb-card-body {
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      flex: 1;
    }
    .lb-card-genre {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--fg-dim);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .lb-card-title {
      margin: 0;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--fg);
    }
    .lb-card-foot {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 10px;
    }
    .lb-card-was {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--fg-dim);
      text-decoration: line-through;
    }
    .lb-card-now {
      font-family: var(--font-mono);
      font-size: 18px;
      font-weight: 500;
      color: var(--fg);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .lb-card-buy {
      height: 32px;
      padding: 0 12px;
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--line-strong);
      border-radius: 4px;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .lb-card-buy:hover { background: var(--bg-2); }

    /* ─── How It Works ─────────────────────────────────────────────── */
    .lb-how {
      padding: 88px 64px;
      background: transparent;
      color: var(--fg);
      font-family: var(--font-display);
    }
    .lb-how-inner { max-width: 1280px; margin: 0 auto; }
    .lb-how-head { margin-bottom: 48px; }
    .lb-how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
    }
    .lb-how-step {
      padding: 40px 36px;
      background: var(--bg-1);
    }
    .lb-how-step:not(:last-child) { border-right: 1px solid var(--line); }
    .lb-how-step.alt { background: rgba(168,139,250,0.025); }
    .lb-how-num-row {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 20px;
    }
    .lb-how-num {
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--pink);
      letter-spacing: 0.1em;
    }
    .lb-how-rule {
      flex: 1;
      height: 1px;
      background: var(--line);
    }
    .lb-how-title {
      margin: 0;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .lb-how-copy {
      margin: 12px 0 0;
      font-size: 14px;
      line-height: 1.6;
      color: var(--fg-mute);
      text-wrap: pretty;
    }

    /* ─── Trust Bar ─────────────────────────────────────────────────── */
    .lb-trust {
      padding: 56px 64px;
      background: var(--bg-1);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      font-family: var(--font-display);
    }
    .lb-trust-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .lb-trust-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .lb-trust-icon {
      width: 40px;
      height: 40px;
      border-radius: 6px;
      background: rgba(168, 139, 250, 0.08);
      border: 1px solid var(--line-strong);
      color: var(--violet);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .lb-trust-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--fg);
      letter-spacing: -0.01em;
    }
    .lb-trust-copy {
      font-size: 13px;
      color: var(--fg-mute);
      margin-top: 4px;
      line-height: 1.5;
    }

    /* ─── Footer (Lootbit) ──────────────────────────────────────────── */
    .lb-footer {
      background: transparent;
      color: var(--fg);
      font-family: var(--font-display);
      padding: 72px 64px 36px;
      border-top: 1px solid var(--line);
    }
    .lb-footer-inner { max-width: 1280px; margin: 0 auto; }
    .lb-footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 48px;
      align-items: flex-start;
    }
    .lb-footer-tag {
      margin-top: 20px;
      font-size: 13px;
      color: var(--fg-mute);
      line-height: 1.6;
      max-width: 320px;
    }
    .lb-footer-col-title {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fg-dim);
      margin-bottom: 14px;
    }
    .lb-footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .lb-footer-list li { font-size: 13px; color: var(--fg-mute); cursor: pointer; }
    .lb-footer-list a { color: inherit; }
    .lb-footer-list a:hover { color: var(--fg); }
    .lb-footer-bottom {
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--fg-dim);
      letter-spacing: 0.1em;
    }

    /* ─── Search dropdown override (override existing dark style for new palette) ── */
    .lb-search-wrap .kv-search-results {
      top: 44px;
    }

    @media (max-width: 1100px) {
      .lb-hero { padding: 56px 32px 72px; }
      .lb-hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .lb-hero-h1 { font-size: 84px; }
      .lb-section, .lb-how, .lb-trust, .lb-footer { padding-left: 32px; padding-right: 32px; }
      .lb-how-grid { grid-template-columns: 1fr; }
      .lb-how-step:not(:last-child) { border-right: none; border-bottom: 1px solid var(--line); }
      .lb-trust-inner { grid-template-columns: 1fr; }
      .lb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 700px) {
      .lb-header-inner { padding: 12px 20px; flex-wrap: wrap; gap: 12px; }
      .lb-search-wrap { order: 5; flex-basis: 100%; max-width: 100%; margin-left: 0; }
      .lb-nav { display: none; }
      .lb-hero-h1 { font-size: 56px; }
      .lb-section-title { font-size: 36px; }
      .lb-footer-grid { grid-template-columns: 1fr; }
    }

    /* ─── Lootbit · product page (DayZ-inspired) ─────────────────────── */
    @keyframes lbBlink { 50% { opacity: 0; } }

    .lb-crumbs {
      padding: 20px 64px;
      border-bottom: 1px solid var(--line);
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--fg-dim);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .lb-crumbs .home { color: var(--violet); }
    .lb-crumbs .sep { margin: 0 10px; }
    .lb-crumbs .here { color: var(--fg); }

    .lb-product {
      padding: 56px 64px 80px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .lb-product-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 56px;
      align-items: flex-start;
    }
    .lb-product-art {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--line);
      height: 420px;
      background:
        repeating-linear-gradient(135deg,
          rgba(124,58,237,0.20) 0 12px,
          rgba(124,58,237,0.08) 12px 24px);
      position: relative;
    }
    .lb-product-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .lb-product-info { min-width: 0; }
    .lb-product-title {
      margin: 0;
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      font-style: italic;
      word-break: break-word;
    }
    .lb-product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .lb-product-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--violet);
      padding: 7px 14px;
      border-radius: 6px;
      background: var(--bg-1);
      border: 1px solid var(--line-strong);
    }
    .lb-product-tag.steam { color: var(--pink); }
    .lb-product-desc {
      margin: 24px 0 0;
      font-size: 15px;
      color: var(--fg-mute);
      line-height: 1.65;
      text-wrap: pretty;
    }

    .lb-buy-panel {
      margin-top: 28px;
      padding: 26px;
      background: var(--bg-1);
      border: 1px solid var(--line-strong);
      border-radius: 14px;
      position: relative;
      overflow: hidden;
    }
    .lb-buy-panel::after {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(236,72,153,0.18), transparent 65%);
      pointer-events: none;
    }
    .lb-buy-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--fg-dim);
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .lb-buy-price-row {
      display: flex;
      align-items: flex-end;
      gap: 16px;
      margin-top: 14px;
      flex-wrap: wrap;
    }
    .lb-buy-price {
      font-family: var(--font-mono);
      font-size: 56px;
      font-weight: 600;
      color: var(--lime);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .lb-buy-price.unavailable {
      color: var(--fg-dim);
      font-size: 36px;
    }
    .lb-buy-ccy {
      font-family: var(--font-mono);
      font-size: 18px;
      color: var(--fg-mute);
      letter-spacing: 0.1em;
      padding-bottom: 6px;
    }
    .lb-buy-was {
      font-family: var(--font-mono);
      font-size: 18px;
      color: var(--fg-dim);
      text-decoration: line-through;
      padding-bottom: 6px;
    }
    .lb-buy-cta {
      margin-top: 22px;
      width: 100%;
      height: 60px;
      background: linear-gradient(90deg, var(--violet), var(--pink));
      color: #fff;
      border: none;
      border-radius: 999px;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.01em;
      cursor: pointer;
      box-shadow: 0 12px 40px rgba(236,72,153,0.35);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      z-index: 1;
    }
    .lb-buy-cta:hover { transform: translateY(-1px); box-shadow: 0 18px 48px rgba(236,72,153,0.45); }
    .lb-buy-cta:active { transform: translateY(0); }
    .lb-buy-cta[disabled] {
      background: var(--bg-2);
      color: var(--fg-dim);
      cursor: not-allowed;
      box-shadow: none;
    }
    .lb-buy-foot {
      margin-top: 14px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--fg-mute);
      position: relative;
      z-index: 1;
    }
    .lb-buy-foot a { color: var(--pink); }
    .lb-buy-foot a:hover { text-decoration: underline; }

    .lb-sysreq { margin-top: 64px; }
    .lb-sysreq-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--violet);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .lb-sysreq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .lb-sysreq-card {
      background: var(--bg-1);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 24px;
    }
    .lb-sysreq-card-title {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .lb-sysreq-card-title.min { color: var(--violet); }
    .lb-sysreq-card-title.rec { color: var(--pink); }
    .lb-sysreq-rows { display: flex; flex-direction: column; gap: 10px; }
    .lb-sysreq-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
    }
    .lb-sysreq-row .k {
      font-family: var(--font-mono);
      color: var(--fg-dim);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .lb-sysreq-row .v { color: var(--fg); text-align: right; }

    @media (max-width: 1024px) {
      .lb-product { padding: 40px 32px 64px; }
      .lb-product-grid { grid-template-columns: 1fr; gap: 32px; }
      .lb-product-art { height: 320px; }
      .lb-product-title { font-size: 48px; }
      .lb-crumbs { padding: 16px 32px; }
    }
    @media (max-width: 640px) {
      .lb-product-title { font-size: 36px; }
      .lb-buy-price { font-size: 44px; }
      .lb-sysreq-grid { grid-template-columns: 1fr; }
    }

    /* ─── Lootbit · auth pages (login + register) ─────────────────────── */
    .lb-auth-page {
      min-height: calc(100vh - 96px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 64px 24px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 60% 70% at 15% 30%, rgba(124,58,237,0.18), transparent 60%),
        radial-gradient(ellipse 60% 70% at 90% 90%, rgba(236,72,153,0.14), transparent 60%),
        var(--bg);
    }
    .lb-auth-page::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(168,139,250,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,139,250,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 75%);
      pointer-events: none;
    }
    .lb-auth-card {
      position: relative;
      width: 480px;
      max-width: 100%;
      background: var(--bg-1);
      border: 1px solid var(--line-strong);
      border-radius: 14px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.7);
      overflow: hidden;
    }
    .lb-auth-card.compact { width: 440px; }
    .lb-auth-card::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(236,72,153,0.22), transparent 65%);
      pointer-events: none;
    }
    .lb-auth-card.login::before {
      top: -80px; left: -80px; right: auto;
      background: radial-gradient(circle, rgba(124,58,237,0.28), transparent 65%);
    }
    .lb-auth-body { padding: 40px 36px 32px; position: relative; }
    .lb-auth-prompt {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--violet);
      background: var(--bg-2);
      border: 1px solid var(--line-strong);
      border-radius: 4px;
      padding: 5px 10px;
      margin-bottom: 20px;
    }
    .lb-auth-prompt .home { color: var(--pink); }
    .lb-auth-prompt .dollar { color: var(--fg-dim); }
    .lb-auth-prompt .cursor {
      width: 6px;
      height: 12px;
      background: var(--violet);
      animation: lbBlink 1s steps(2) infinite;
      display: inline-block;
    }
    .lb-auth-h1 {
      margin: 0;
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
    }
    .lb-auth-h1 .accent { color: var(--pink); }
    .lb-auth-sub {
      margin: 10px 0 28px;
      font-size: 14px;
      color: var(--fg-mute);
      line-height: 1.5;
    }
    .lb-auth-form { display: flex; flex-direction: column; gap: 12px; }
    .lb-auth-field { display: flex; flex-direction: column; }
    .lb-auth-field label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--fg-dim);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .lb-auth-field input {
      width: 100%;
      height: 44px;
      padding: 0 14px;
      background: var(--bg-2);
      border: 1px solid var(--line-strong);
      border-radius: 6px;
      color: var(--fg);
      font-family: var(--font-mono);
      font-size: 13px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .lb-auth-field input:focus {
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(236,72,153,0.18);
    }
    .lb-auth-field input::placeholder { color: var(--fg-dim); }

    .lb-auth-field select,
    .lb-auth-field textarea {
      width: 100%;
      background: var(--bg-2);
      border: 1px solid var(--line-strong);
      border-radius: 6px;
      color: var(--fg);
      font-family: var(--font-mono);
      font-size: 13px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .lb-auth-field select {
      height: 44px;
      padding: 0 14px;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
    }
    .lb-auth-field textarea {
      padding: 12px 14px;
      min-height: 60px;
      resize: vertical;
      line-height: 1.5;
    }
    .lb-auth-field select:focus,
    .lb-auth-field textarea:focus {
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(236,72,153,0.18);
    }
    .lb-auth-field textarea::placeholder { color: var(--fg-dim); }
    .lb-auth-row { display: flex; gap: 12px; }
    .lb-auth-row > .lb-auth-field { flex: 1; }
    .lb-auth-row-3 { display: flex; gap: 12px; }
    .lb-auth-row-3 > select { flex: 1; }
    @media (max-width: 480px) {
      .lb-auth-row, .lb-auth-row-3 { flex-direction: column; }
    }

    .lb-auth-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
    }
    .lb-auth-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12px;
      color: var(--fg-mute);
      line-height: 1.5;
      cursor: pointer;
    }
    .lb-auth-check.compact { align-items: center; }
    .lb-auth-check input[type="checkbox"] {
      margin-top: 2px;
      accent-color: var(--pink);
      width: 14px;
      height: 14px;
    }
    .lb-auth-check.compact input[type="checkbox"] { margin-top: 0; }
    .lb-auth-check a { color: var(--fg); text-decoration: underline; }
    .lb-auth-link-mono {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--pink);
      cursor: pointer;
    }
    .lb-auth-link-mono:hover { text-decoration: underline; }

    .lb-auth-cta {
      width: 100%;
      height: 50px;
      margin-top: 20px;
      background: var(--pink);
      color: #fff;
      border: none;
      border-radius: 6px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -0.01em;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background var(--transition), transform var(--transition);
    }
    .lb-auth-cta:hover { background: var(--pink-deep); }
    .lb-auth-cta:active { transform: translateY(1px); }

    .lb-auth-foot {
      margin-top: 20px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--fg-mute);
      text-align: center;
    }
    .lb-auth-foot a { color: var(--pink); }
    .lb-auth-foot a:hover { text-decoration: underline; }

    .lb-auth-alert {
      margin-bottom: 16px;
      padding: 10px 14px;
      border-radius: 6px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      border: 1px solid;
    }
    .lb-auth-alert.err {
      background: rgba(244,63,94,0.08);
      border-color: rgba(244,63,94,0.35);
      color: #FCA5A5;
    }
    .lb-auth-alert.ok {
      background: rgba(34,197,94,0.08);
      border-color: rgba(34,197,94,0.35);
      color: #86EFAC;
    }

    @media (max-width: 540px) {
      .lb-auth-body { padding: 32px 24px 24px; }
      .lb-auth-h1 { font-size: 26px; }
    }
