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

:root {
  --bg: #050505;
  --accent: #7c1a1a;
  --accent-2: #4a0f0f;
  --text: #cccccc;
  --muted: #555;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(100, 15, 15, 0.35);
  top: -200px;
  left: -150px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(80, 10, 10, 0.25);
  bottom: -150px;
  right: -100px;
}

/* Layout */
main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 1.5rem;
}

/* Avatar */
.avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #7c1a1a, #3a0a0a);
  animation: glow-pulse 3s ease-in-out infinite alternate;
  margin-bottom: 0.5rem;
}
.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0d0808;
}

@keyframes glow-pulse {
  from { box-shadow: 0 0 10px rgba(100, 15, 15, 0.4); }
  to   { box-shadow: 0 0 28px rgba(124, 26, 26, 0.6), 0 0 50px rgba(100, 15, 15, 0.2); }
}

/* Name */
h1 {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  background: linear-gradient(135deg, #e0e0e0 0%, #9a2a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Links */
nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.link:hover {
  background: rgba(124, 26, 26, 0.15);
  border-color: rgba(124, 26, 26, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(100, 15, 15, 0.2);
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.75;
}

.link:hover .icon {
  opacity: 1;
}

.link span {
  flex: 1;
  text-align: center;
  padding-right: 20px; /* optically center with icon offset */
}
