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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      min-height: 100vh;
      background: linear-gradient(170deg, #1ab8c4 0%, #1a6fc4 45%, #1240a4 100%);
      display: flex;
      justify-content: center;
      padding: 52px 20px 64px;
    }

    .page {
      width: 100%;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ── PROFILE ── */
    .profile {
      text-align: center;
      margin-bottom: 20px;
    }

    .avatar-wrap {
      width: 110px; height: 110px;
      margin: 0 auto 18px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.55);
      box-shadow: 0 0 0 5px rgba(255,255,255,0.12), 0 8px 28px rgba(0,0,0,0.2);
      overflow: hidden;
      background: rgba(255,255,255,0.15);
    }

    /* ════════════════════════════════════════
       👉 REPLACE src="" WITH YOUR PROFILE IMAGE URL
          Example: src="https://yoursite.com/photo.jpg"
          or a local file: src="profile.jpg"
       ════════════════════════════════════════ */
    .avatar-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .name {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 7px;
      letter-spacing: -0.3px;
    }

    .bio {
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      max-width: 300px;
      margin: 0 auto;
    }

    /* ── SOCIALS ── */
    .socials {
      display: flex;
      gap: 14px;
      margin: 22px 0 32px;
    }

    .social-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      color: #fff;
      transition: background 0.2s, transform 0.2s;
      backdrop-filter: blur(8px);
    }
    .social-icon:hover {
      background: rgba(255,255,255,0.28);
      transform: scale(1.1);
    }
    .social-icon svg { width: 20px; height: 20px; }

    /* ── LINK CARDS ── */
    .links-wrap {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .section-title {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
      text-align: center;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin: 10px 0 2px;
    }

    .card {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      background: #fff;
      border-radius: 14px;
      text-decoration: none;
      color: #111;
      transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
      box-shadow: 0 2px 14px rgba(0,0,0,0.13);
    }
    .card:hover {
      transform: translateY(-2px) scale(1.015);
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      background: #f4f8ff;
    }
    .card:active { transform: scale(0.99); }

    /* Thumbnail */
    .card-thumb {
      width: 52px; height: 52px;
      border-radius: 10px;
      flex-shrink: 0;
      overflow: hidden;
      background: #e8edf8;
    }

    /* ════════════════════════════════════════
       👉 REPLACE src="" ON EACH CARD THUMBNAIL
          with your image URL or local file path
       ════════════════════════════════════════ */
    .card-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-body { flex: 1; min-width: 0; }

    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-sub {
      font-size: 12px;
      font-weight: 400;
      color: #7a849a;
      margin-top: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-arrow {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: #eef1fa;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .card:hover .card-arrow { background: #d8e2ff; }
    .card-arrow svg { width: 14px; height: 14px; stroke: #5578cc; }

    /* Plain centered card (no thumbnail) */
    .card.plain { justify-content: center; padding: 16px; }
    .card.plain .card-title {
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      white-space: normal;
    }

    /* ── FOOTER ── */
    .footer {
      margin-top: 44px;
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 1.5px;
      text-align: center;
      text-transform: uppercase;
    }