    :root {
      --bg: #0b0c10;
      --bg-alt: #151821;
      --card-bg: #1e222d;
      --accent: #ff6a00;
      --text: #f7f7f7;
      --muted: #9ca3af;
      --border: #2b3040;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #151821 0, #05060a 55%, #000 100%);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      justify-content: center;
    }
    
    .logo{height:75px;}

    .page {
      width: 100%;
      max-width: 540px;
      padding: 16px 16px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    @media (min-width: 640px) {
      .page {
        padding-top: 32px;
        padding-bottom: 32px;
      }
    }

    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 8px;
      margin: 0 auto;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-text-main {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

/* 
    .logo-text-sub {
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
    }
 */

    main {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .card {
      background: linear-gradient(145deg, #1b1f2a 0%, #131620 100%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 16px 16px 18px;
    }

    @media (min-width: 640px) {
      .card {
        padding: 18px 20px 20px;
      }
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 8px;
    }

    .card-title {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .badge-ok {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: rgba(34, 197, 94, 0.08);
      color: #4ade80;
      border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
    }

    .card-body {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
      margin-top: 4px;
    }

    .card-body strong {
      color: var(--text);
      font-weight: 500;
    }

    .section-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .card .subtitle {
      font-size: 15px;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--text);
    }

    .folder-list {
      list-style: none;
      margin-top: 6px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 6px;
    }

    .folder-list a {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 13px;
      color: var(--text);
      background: radial-gradient(circle at 0 0, #252a38 0, #151821 60%, #10131b 100%);
      border: 1px solid rgba(148, 163, 184, 0.24);
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
        border-color 0.12s ease-out, background 0.12s ease-out;
      white-space: nowrap;
    }

    .folder-list a span.code {
      font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco,
        Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 12px;
    }

    .folder-list a .dot-folder {
      width: 14px;
      height: 14px;
      border-radius: 5px;
      background: linear-gradient(135deg, var(--accent), #ffb34d);
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.6);
    }

    .folder-list a:hover,
    .folder-list a:focus-visible {
      outline: none;
      transform: translateY(-1px);
      border-color: rgba(249, 115, 22, 0.75);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
      background: radial-gradient(circle at 0 0, #2c3242 0, #181b26 60%, #121520 100%);
    }

    .helper-text {
      font-size: 12px;
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.5;
    }

    footer {
      margin-top: auto;
      padding: 4px 4px 0;
      font-size: 11px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      opacity: 0.8;
    }

    footer span.accent {
      color: var(--accent);
      font-weight: 500;
    }