    :root{
      --text: #27313c;
      --accent: #96815b;
      --bg: #062133; /* #e2c289; */
      --radius: 14px;
      --max-width: 420px;
      --shadow: 0 8px 30px rgba(39,49,60,0.08);
      --muted: rgba(39,49,60,0.55);
    }

    /* Reset & layout */
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:10px 0;
      font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      background:var(--bg);
      color:var(--text);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      display:flex;
      align-items:start;
      justify-content:center;
      padding:32px;
    }

    .card{
      width:100%;
      max-width:var(--max-width);
      background:linear-gradient(180deg, #fff 0%, #fff 100%);
      border-radius:20px;
      box-shadow:var(--shadow);
      padding:28px 22px;
      text-align:center;
      border:1px solid rgba(39,49,60,0.03);
    }

    .avatar{
      width:110px;
      height:110px;
      border-radius:50%;
      overflow:hidden;
      margin:-60px auto 14px;
      border:6px solid rgba(150,129,91,0.12);
      background:linear-gradient(135deg, rgba(150,129,91,0.06), rgba(39,49,60,0.02));
      box-shadow:0 6px 18px rgba(39,49,60,0.06);
    }
    .avatar img{width:100%;height:100%;object-fit:cover;display:block}

    h1{
      margin:6px 0 2px;
      font-size:20px;
      letter-spacing:0.2px;
      color:var(--text);
    }
    p.subtitle{
      margin:0 0 3px;
      color:var(--muted);
      font-size:14px;
    }
    p.subtitle.last{
      margin:0 0 18px;
    }    

    /* Links */
    .links{display:flex;flex-direction:column;gap:12px;margin-top:8px}
    .link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:12px;
      text-decoration:none;
      font-weight:600;
      color:var(--text);
      background:linear-gradient(180deg, rgba(150,129,91,0.06), rgba(39,49,60,0.015));
      border:1px solid rgba(39,49,60,0.04);
      transition:transform .12s ease, box-shadow .12s ease;
      box-shadow:0 2px 8px rgba(39,49,60,0.03);
    }
    /* .link:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(39,49,60,0.08)} */
    .link .tag{font-size:13px;color:var(--muted);font-weight:600}

    /* Special primary button */
    .primary{
      background:linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
      color:#fff;
      border:none;
    }
    .primary svg{filter:brightness(0.98)invert(0.95)opacity(0.95)}

    /* Social icons */
    .socials{display:flex;gap:12px;justify-content:center;margin-top:18px}
    .socials a{
      display:inline-grid;place-items:center;
      width:44px;height:44px;border-radius:10px;text-decoration:none;
      border:1px solid rgba(39,49,60,0.04);
      background:rgba(39,49,60,0.02);
      transition:transform .12s ease, background .12s ease;
    }
    .socials a:hover{transform:translateY(-4px);background:linear-gradient(180deg, rgba(150,129,91,0.06), rgba(39,49,60,0.02))}

    .socials a.primary{
      background:linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
      color:#fff;
      border:none;
    }
    .socials a.primary svg{filter:brightness(0.98)invert(0.95)opacity(0.95)}

    /* Footer small */
    .meta{margin-top:18px;font-size:12px;color:var(--muted)}

    /* Responsive tweaks */
    @media (max-width:420px){
      .card{padding:22px}
      .avatar{width:96px;height:96px;margin-top:-48px}
    }

    .ml-6px {
      margin-left:6px
    }

    img.full {
      width: 100%;
      height: auto;
    }
