:root {
  --bg: #0A0B0A;
  --card: rgba(26, 30, 26, 0.6);
  --card-border: rgba(29, 185, 84, 0.18);
  --accent: #1DB954;
  --accent-2: #00C853;
  --text: #F5F5F5;
  --text-dim: #9BA39B;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  background: #060706;
}

/* Vollbild-Hintergrundfoto, weich geblurrt */
.bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  filter: blur(18px) brightness(0.55) saturate(1.1);
  transform: scale(1.15);
  z-index: 0;
}

/* olivgrünes Overlay über dem Foto, mit Punktmuster wie Referenz */
.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45, 58, 42, 0.55) 0%, rgba(35, 46, 33, 0.78) 45%, rgba(20, 28, 19, 0.92) 100%),
    linear-gradient(180deg, rgba(29, 185, 84, 0.35), rgba(10, 20, 10, 0.6));
  z-index: 0;
}

.bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.10;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 18px 32px;
}

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar-wrap {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  padding: 3px;
  background: var(--accent);
  box-shadow: 0 0 36px rgba(29, 185, 84, 0.4);
  margin-bottom: 16px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #0A0B0A;
}

.name {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}

.bio {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0 0 20px;
  line-height: 1.45;
  max-width: 340px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.social-row {
  display: flex;
  gap: 22px;
  margin-bottom: 36px;
}

.social-row a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-row a svg {
  width: 22px;
  height: 22px;
}

.social-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  background: rgba(60, 74, 52, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.link-btn:hover {
  border-color: var(--accent);
  background: rgba(29, 185, 84, 0.20);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.25);
}

.link-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: rgba(29, 185, 84, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.link-icon svg {
  width: 18px;
  height: 18px;
}

.link-label {
  flex: 1;
  text-align: left;
}

.chevron {
  color: var(--text-dim);
  font-size: 1.2rem;
  opacity: 0.6;
}

.footer {
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
