    :root{
      --bg0:#07070b;
      --bg1:#0e0f16;
      --card: rgba(255,255,255,.06);
      --card2: rgba(255,255,255,.10);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.65);
      --border: rgba(255,255,255,.12);

      /* Accent (red) */
      --accent: 255, 65, 65;                 /* RGB */
      --ring: rgba(var(--accent), .45);
      --ringSoft: rgba(var(--accent), .18);

      /* Bluesky accent (blue) */
      --bsky: 0, 163, 255;
    }

    * { box-sizing: border-box; }
   html, body { min-height: 100%; }


    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color: var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, var(--ringSoft), transparent 55%),
        radial-gradient(900px 600px at 110% 20%, rgba(130,200,255,.14), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
display:flex;
align-items:flex-start;   /* was center */
justify-content:center;
padding: 28px 16px;
overflow-y: auto;
    }

    .wrap{
      width: min(520px, 100%);
    }

    .card{
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px;
      backdrop-filter: blur(10px);
      box-shadow: 0 24px 60px rgba(0,0,0,.45);
    }

    .top{
      display:flex;
      flex-direction: column;
      align-items:center;
      text-align:center;
      gap: 14px;
      margin-bottom: 14px;
    }

    h1{
      font-size: 46px;
      line-height: 1.1;
      margin: 0;
	  margin-bottom:10px;
      letter-spacing: .2px;
	  color: red;
	  letter-spacing: 3px;
    }

    .avatar{
      width: 140px;
      height: 140px;
      border-radius: 999px;
      object-fit: cover;
      background: rgba(255,255,255,.08);
    }

    .bio{
      margin: 14px auto 18px auto;
      color: var(--text);
      text-align:center;
      font-size: 18px;
      line-height: 1.55;
      max-width: 44ch;
      opacity: .92;
    }

    .links{
      display:flex;
      flex-direction:column;
      gap: 12px;
      margin-top: 6px;
    }

    a.btn{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding: 14px 14px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: var(--text);
      text-decoration:none;
      transition: transform .12s ease, background .12s ease, border-color .12s ease;
    }

    a.btn:hover{
      transform: translateY(-1px);
      background: var(--card2);
      border-color: rgba(255,255,255,.18);
    }

    a.btn:focus-visible{
      outline: none;
      box-shadow: 0 0 0 4px rgba(var(--accent), .25);
    }

    .left{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 0;
    }

    .icon{
      width: 32px;
      height: 32px;
      display:grid;
      place-items:center;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: rgba(0,0,0,.25);
      flex: 0 0 auto;
      color: rgba(255,255,255,.92);
    }

    .icon img{
      width: 18px;
      height: 18px;
      display:block;
    }

    .icon svg{
      width: 18px;
      height: 18px;
      display:block;
      fill: currentColor;
    }

    /* Make Bluesky icon feel “blue” */
    .icon--bsky{
      border-color: rgba(var(--bsky), .35);
      background: rgba(var(--bsky), .16);
      color: rgba(150, 220, 255, .95);
    }

    .label{
      display:flex;
      flex-direction:column;
      min-width: 0;
    }

    .label strong{
      font-size: 15px;
      font-weight: 650;
      letter-spacing: .1px;
    }

    .label span{
      font-size: 12px;
      color: var(--muted);
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
      max-width: 360px;
    }

    .arrow{
      opacity: .7;
      flex: 0 0 auto;
    }

    footer{
      margin-top: 38px;
      text-align:center;
      color: var(--muted);
      font-size: 12px;
    }
	
	
    .menu{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 14px 0;
      justify-content: center;
    }

    .menu a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: var(--text);
      text-decoration:none;
      font-size: 13px;
      font-weight: 650;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: transform .12s ease, background .12s ease, border-color .12s ease;
    }

    .menu a:hover{
      transform: translateY(-1px);
      background: var(--card2);
      border-color: rgba(255,255,255,.18);
    }

    .menu a:focus-visible{
      outline: none;
      box-shadow: 0 0 0 4px rgba(var(--accent), .25);
    }

    /* Optional: highlight the current page */
    .menu a.active{
      border-color: rgba(var(--accent), .55);
      background: rgba(var(--accent), .12);
    }
	
	
.top h1 { margin: 0; }
.top h2 { margin: 4px 0 0; }
.top { gap: 6px; }


    .pillset{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style:none;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(0,0,0,.22);
      font-size: 13px;
      color: var(--text);
    }

/* Interests layout */
.intro{
  margin: 8px 0 14px 0;
  text-align: left;                 /* was center */
  color: rgba(255,255,255,.86);     /* readable but slightly softer */
  font-size: 16px;                  /* was 14px */
  line-height: 1.6;
  max-width: none;                  /* don't artificially narrow it */
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
  margin: 0 0 16px 0;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.22);
  font-size: 13px;
  color: var(--text);
}

.grid{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

.interest-list{
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.6;
}

.interest-list li{
  margin: 10px 0;
}

.interest-list strong{
  letter-spacing: .02em;
}

.interest-list em{
  color: rgba(255,255,255,.78);
  font-style: italic;
}

