  @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;600;700&display=swap');

  :root {
    --bg: #020617;
    --surface-1: #0c1224;
    --surface-2: #1a2436;
    --surface-3: #232e42;
    --border: rgba(148, 163, 184, 0.18);
    --accent: #93c5fd;
    --accent-strong: #dbeafe;
    --success: #34d399;
    --success-dim: rgba(52, 211, 153, 0.12);
    --error: #f87171;
    --error-dim: rgba(248, 113, 113, 0.12);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
    --mono: 'Share Tech Mono', monospace;
    --sans: 'Rajdhani', sans-serif;
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    min-height: 100vh;
    background:
      radial-gradient(circle at top left, rgba(35, 46, 66, 0.9), transparent 32%),
      radial-gradient(circle at top right, rgba(26, 36, 54, 0.65), transparent 28%),
      linear-gradient(180deg, #020617 0%, #08101f 100%);
    color: var(--text);
    font-family: var(--sans);
  }

  .page-shell {
    width: 100%;
    padding: 36px 50px 56px;
  }

  .wrap {
    width: 100%;
    margin: 0 auto;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 24px;
    margin-bottom: 28px;
  }

  .hero-panel,
  .hero-meta,
  .result,
  .table-row,
  .footer-bar {
    background: linear-gradient(180deg, rgba(26, 36, 54, 0.92) 0%, rgba(12, 18, 36, 0.96) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    padding: 30px 32px;
  }

  .hero-panel::after {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--accent);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: currentColor;
  }

  .hero-panel h1 {
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 0.95;
    text-transform: uppercase;
  }

  .hero-panel h1 i {
    color: var(--accent);
    font-size: 1.2em;
  }

  .hero-panel p {
    max-width: 760px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .stat-card {
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 5px;
    background: rgba(35, 46, 66, 0.72);
  }

  .stat-label {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .stat-value {
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 5px;
  }

  .meta-block {
    padding: 18px 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 5px;
    background: rgba(35, 46, 66, 0.52);
  }

  .meta-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .meta-block span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.7;
  }

  .result {
    margin-bottom: 24px;
    padding: 16px 20px;
    border-left: 4px solid transparent;
    border-radius: 5px;
    font-family: var(--mono);
    font-size: 13px;
  }

  .result.success {
    background: linear-gradient(180deg, var(--success-dim) 0%, rgba(12, 18, 36, 0.96) 100%);
    border-color: var(--success);
    color: var(--success);
  }

  .result.error {
    background: linear-gradient(180deg, var(--error-dim) 0%, rgba(12, 18, 36, 0.96) 100%);
    border-color: var(--error);
    color: var(--error);
  }

  .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .section-head h2 {
    font-size: 26px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .section-head p {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
  }

  .table-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 5px;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
  }

  .table-row:hover {
    border-color: rgba(147, 197, 253, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(35, 46, 66, 0.98) 0%, rgba(12, 18, 36, 0.96) 100%);
  }

  .table-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .table-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--mono);
  }

  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 6px 10px;
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 999px;
    background: rgba(147, 197, 253, 0.1);
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .table-name {
    color: var(--accent-strong);
    font-family: var(--mono);
    font-size: 15px;
    letter-spacing: 0.6px;
  }

  .table-note {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  form {
    display: inline;
  }

  .btn-sort {
    padding: 12px 24px;
    border: 1px solid rgba(147, 197, 253, 0.42);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.2) 0%, rgba(26, 36, 54, 0.88) 100%);
    color: #fff;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: all 0.18s;
    white-space: nowrap;
  }

  .btn-sort:hover {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.98) 0%, rgba(37, 99, 235, 0.85) 100%);
    box-shadow: 0 12px 26px rgba(59, 130, 246, 0.26);
  }

  .btn-sort:active {
    transform: scale(0.97);
  }

  .footer-bar {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 5px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-align: right;
  }

  @media (max-width: 920px) {
    .page-shell {
      padding-left: 24px;
      padding-right: 24px;
    }

    .hero,
    .hero-stats,
    .table-row {
      grid-template-columns: 1fr;
    }

    .section-head {
      flex-direction: column;
      align-items: flex-start;
    }

    .table-row form,
    .btn-sort {
      width: 100%;
    }
  }