:root {
      --font-heading: DSans, sans-serif;
      --font-body: "Public Sans", Finder, DSans, 'Segoe UI', Helvetica, Tahoma, Arial, system-ui, sans-serif;
      --bg: #0b1220;
      --card: #111c33;
      --card2: #0f1a30;
      --text: #e2e8f0;
      --muted: #94a3b8;
      --blue: #3b82f6;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      background: radial-gradient(1200px 600px at 50% -10%, #1b2a52 0%, var(--bg) 60%);
      color: var(--text);
    }

    h1, h2, h3, h4, h5 {
      font-family: var(--font-heading);
      margin: 0;
    }

    .container {
      max-width: 1050px;
      margin: auto;
      padding: 24px;
    }

    .hero {
      text-align: center;
      padding: 80px 20px 50px;
    }

    .hero h1 {
      font-size: 42px;
      letter-spacing: -1px;
    }

    .hero p {
      color: var(--muted);
      margin-top: 10px;
      font-size: 16px;
    }

    .badge {
      display: inline-block;
      margin-top: 16px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(59,130,246,0.15);
      color: #93c5fd;
      font-size: 13px;
    }

    .section-title {
      margin-top: 40px;
      margin-bottom: 16px;
      font-size: 22px;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }

    .app-card {
      background: linear-gradient(180deg, var(--card), var(--card2));
      border: 1px solid rgba(255,255,255,0.06);
      padding: 16px;
      border-radius: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      animation: fadeIn 0.6s ease forwards;
      opacity: 0;
      transform: translateY(10px);
    }

    .app-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    }

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

    .app-header {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 6px;
    }

    .app-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      object-fit: cover;
      background: #0a0f1f;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .app-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 6px 0 12px;
    }

    .app-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    button {
      border: none;
      font-family: var(--font-body);
      border-radius: 10px;
      padding: 10px 12px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: transform 0.15s ease, filter 0.15s ease;
    }

    button:hover {
      transform: translateY(-1px);
      filter: brightness(1.1);
    }

    .btn-download {
      background: var(--blue);
    }

    .btn-github {
      background: #0a0f1f;
      border: 1px solid rgba(255,255,255,0.12);
    }

    .btn-disabled {
      background: #475569;
      cursor: not-allowed;
      opacity: 0.6;
      pointer-events: none;
    }

    .card {
      margin-top: 30px;
      background: rgba(17,28,51,0.7);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 18px;
      border-radius: 14px;
    }

    a,.link {
      color: #93c5fd;
      font-family: var(--font-body);
      text-decoration: none;
    }

    .link:hover {
      color: #63a7f2;
      text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 30px;
      color: var(--muted);
      font-size: 13px;
    }

    .material-symbols-outlined,.icon,.material-icon {
      font-variation-settings: 'FILL' 0,'wght' 500,'GRAD' 0,'opsz' 24;
      font-size: 18px;
      -webkit-user-select: none; /* Safari / WebKit */
      -ms-user-select: none;      /* IE 10 / IE 11 */
      user-select: none;
    }

    .pill {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 10px;
      margin-left: 8px;
      font-family: var(--font-body);
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: rgba(148,163,184,0.10);
      color: rgba(226,232,240,0.85);
      border: 1px solid rgba(148,163,184,0.25);
    }
