    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg: #080b10;
      --grid: rgba(0, 255, 160, 0.04);
      --green: #00ffa3;
      --green-dim: rgba(0, 255, 163, 0.15);
      --white: #e8f4f0;
      --grey: #4a6b5d;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Share Tech Mono', monospace;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 60px;
    }

    /* Grid background */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    /* Glow blob */
    body::after {
      content: '';
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,255,163,0.07) 0%, transparent 70%);
      pointer-events: none;
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
    }

    .container {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 2rem;
      animation: fadeIn 1.2s ease forwards;
    }

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

    /* Status bar */
    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid var(--green-dim);
      padding: 6px 16px;
      border-radius: 2px;
      margin-bottom: 3rem;
      animation: fadeIn 1.2s ease 0.3s both;
    }

    .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 1.4s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }

    /* Main title */
    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(4rem, 14vw, 9rem);
      line-height: 0.92;
      letter-spacing: -0.03em;
      color: var(--white);
      position: relative;
      display: inline-block;
    }

    .logo .dev  { color: var(--green); }
    .logo .net  { color: var(--white); }
    .logo .iz   { color: var(--grey);  }

    /* Scanline flicker */
    .logo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.08) 2px,
        rgba(0,0,0,0.08) 4px
      );
      pointer-events: none;
    }

    /* Subtitle */
    .tagline {
      margin-top: 2.5rem;
      font-size: 0.8rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--grey);
      animation: fadeIn 1.2s ease 0.6s both;
    }

    .tagline span {
      color: var(--green);
    }

    /* Progress bar */
    .progress-wrap {
      margin-top: 3rem;
      width: 340px;
      max-width: 90vw;
      margin-left: auto;
      margin-right: auto;
      animation: fadeIn 1.2s ease 0.9s both;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      color: var(--grey);
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .progress-label .pct { color: var(--green); }

    .bar-bg {
      height: 3px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      width: 0%;
      background: var(--green);
      border-radius: 2px;
      box-shadow: 0 0 12px var(--green);
      animation: grow 2.5s ease 1.2s forwards;
    }

    @keyframes grow {
      to { width: 98%; }
    }

    /* Footer */
    .footer {
      margin-top: 4rem;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      color: #2a3d34;
      text-transform: uppercase;
      animation: fadeIn 1.2s ease 1.2s both;
    }

    /* ── Card ── */
    .card {
      border: 1px solid rgba(0, 255, 163, 0.1);
      background: rgba(8, 11, 16, 0.8);
      padding: 2.4rem 2.2rem;
      position: relative;
      animation: fadeIn 1s ease 0.25s both;
    }
 
    /* corner accents */
    .card::before, .card::after {
      content: '';
      position: absolute;
      width: 14px; height: 14px;
      border-color: var(--green);
      border-style: solid;
    }
    .card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
    .card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
 
    /* ── Status bar ── */
    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.66rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid var(--green-dim);
      padding: 5px 14px;
      margin-bottom: 2rem;
      display: flex;
    }
 
    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 1.4s ease-in-out infinite;
      flex-shrink: 0;
    }
 
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    }
 
    /* ── Form ── */
    .form-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 1.8rem;
    }
 
    .field {
      margin-bottom: 1.25rem;
    }
 
    .field label {
      display: block;
      font-size: 0.63rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 7px;
    }
 
    .input-wrap {
      position: relative;
    }
 
    .input-wrap .prefix {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--green);
      font-size: 0.8rem;
      opacity: 0.6;
      pointer-events: none;
      transition: opacity 0.2s;
    }
 
    input {
      width: 100%;
      background: var(--input-bg);
      border: 1px solid rgba(0, 255, 163, 0.12);
      color: var(--white);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.82rem;
      padding: 10px 12px 10px 28px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      letter-spacing: 0.05em;
      -webkit-appearance: none;
    }
 
    input::placeholder {
      color: var(--grey);
      opacity: 0.5;
    }
 
    input:focus {
      border-color: rgba(0, 255, 163, 0.45);
      background: rgba(0, 255, 163, 0.06);
      box-shadow: 0 0 0 3px rgba(0, 255, 163, 0.07);
    }
 
    input:focus + .line,
    .input-wrap:focus-within .prefix { opacity: 1; }
 
    /* animated bottom line */
    .line {
      display: block;
      height: 1px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
      box-shadow: 0 0 8px var(--green);
    }
 
    input:focus ~ .line { transform: scaleX(1); }
 
    /* ── Options row ── */
    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.8rem;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
    }
 
    .checkbox-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      color: var(--grey);
      text-transform: uppercase;
    }
 
    .checkbox-wrap input[type="checkbox"] {
      width: 13px; height: 13px;
      padding: 0;
      accent-color: var(--green);
      cursor: pointer;
    }
 
    .forgot {
      color: var(--green);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.65rem;
      opacity: 0.7;
      transition: opacity 0.2s;
    }
 
    .forgot:hover { opacity: 1; }
 
    /* ── Button ── */
    .btn {
      width: 100%;
      background: transparent;
      border: 1px solid var(--green);
      color: var(--green);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 13px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: color 0.3s;
    }
 
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
      z-index: 0;
    }
 
    .btn:hover::before { transform: scaleX(1); }
    .btn:hover { color: var(--bg); }
 
    .btn span {
      position: relative;
      z-index: 1;
    }
 
    /* ── Divider ── */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 1.6rem 0;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--grey-light);
      text-transform: uppercase;
    }
 
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.06);
    }
 
    /* ── Register link ── */
    .register {
      text-align: center;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      color: var(--grey);
      text-transform: uppercase;
    }
 
    .register a {
      color: var(--green);
      text-decoration: none;
      transition: opacity 0.2s;
    }
 
    .register a:hover { opacity: 0.7; }
 
    /* ── Footer ── */
    .footer {
      margin-top: 2rem;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: #1e3028;
      text-transform: uppercase;
      text-align: center;
      animation: fadeIn 1s ease 0.5s both;
    }

    nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  z-index: 100;
  background: rgba(8, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 255, 163, 0.08);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.82rem;
}

thead tr {
  border-bottom: 1px solid rgba(0, 255, 163, 0.3);
}

thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

tbody tr:hover {
  background: rgba(0, 255, 163, 0.04);
}

tbody th, tbody td {
  padding: 12px 16px;
  color: var(--white);
  font-weight: normal;
}

tbody th {
  color: var(--white);
}

tbody td {
  color: var(--grey);
}