:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #8b5cf6;
  --muted: #9aa4b2;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(139, 92, 246, 0.08), transparent),
    radial-gradient(800px 400px at 90% 90%, rgba(16, 185, 129, 0.03), transparent),
    var(--bg);
  color: #e6eef6;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  min-height: 100vh;
  align-items: flex-start; 
}

.wrap {
  width: 100%;
  max-width: 720px;
  padding: 28px;
  background: linear-gradient(180deg, var(--card), rgba(11, 18, 32, 0.9));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(6px);
}

.profile {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.06)
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

h1 {
  font-size: 20px;
  margin: 0
}

.lead {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 14px
}

a.button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform .12s, box-shadow .12s, background .12s;
  color: inherit;
  text-align: left;
}

a.button i {
  font-size: 18px;
}

a.button:hover {
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.6);
  background: rgba(255, 255, 255, 0.02)
}

a.button:active {
  transform: translateY(1px)
}

.actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px
}

.icon {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
  cursor: pointer
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px
}

@media (max-width:480px) {
  .wrap {
    padding: 18px
  }

  .avatar {
    width: 64px;
    height: 64px
  }

  .links a.button {
    padding: 12px
  }
}