:root {
      --bg: #050816;
      --card: #0f172a;
      --accent: #22c55e;
      --accent-soft: rgba(34, 197, 94, 0.15);
      --text: #e5e7eb;
      --muted: #9ca3af;
      --border: #1f2937;
      --danger: #f97373;
      --radius: 10px;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1e293b 0, #020617 55%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      padding: 32px 16px 48px;
      display: flex;
      justify-content: center;
    }

    .container {
      width: 100%;
      max-width: 900px;
      background: linear-gradient(145deg, #020617, #020617);
      border-radius: 18px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
      padding: 28px 22px 32px;
    }

    @media (min-width: 768px) {
      .container {
        padding: 32px 32px 40px;
      }
    }

    header {
      margin-bottom: 24px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 18px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.08);
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }

    h1 {
      font-size: 26px;
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }

    .subtitle {
      font-size: 14px;
      color: var(--muted);
      max-width: 640px;
    }

    .meta {
      margin-top: 10px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: var(--border);
    }

    .section {
      margin-top: 22px;
      padding: 18px 16px 18px;
      border-radius: var(--radius);
      background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.06), transparent 55%),
                  radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 55%),
                  #020617;
      border: 1px solid rgba(31, 41, 55, 0.9);
    }

    .section h2 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #f9fafb;
    }

    .section p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .section p:last-child {
      margin-bottom: 0;
    }

    .section ul {
      margin: 6px 0 4px 18px;
      font-size: 14px;
      color: var(--muted);
    }

    .section li {
      margin-bottom: 4px;
    }

    .highlight {
      background: rgba(34, 197, 94, 0.08);
      border-left: 3px solid var(--accent);
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 13px;
      color: var(--muted);
      margin-top: 8px;
    }

    .contact-box {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 14px;
    }

    .contact-box strong {
      color: #e5e7eb;
    }

    .email {
      color: var(--accent);
      font-weight: 600;
      word-break: break-all;
    }

    footer {
      margin-top: 26px;
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      opacity: 0.8;
    }

    footer a {
      color: var(--accent);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .danger {
      color: var(--danger);
      font-weight: 500;
    }