:root {
  /* Farben */
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #25baeb;
  --accent-2: #61d4ff;
  --text: #e6eef8;
  --muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.04);

  /* Effekte & Layout */
  --radius: 16px;
  --maxwidth: 760px;
  --shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
}


body {
  display: flex;
  flex-direction: column;       /* Damit .wrap nicht gequetscht wird */
  justify-content: center;      /* Vertikal zentrieren */
  align-items: center;          /* Horizontal zentrieren */
  min-height: 100vh;            /* mind. volle Bildschirmhöhe */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(37, 186, 235, 0.15), transparent),
    radial-gradient(900px 400px at 90% 80%, rgba(97, 212, 255, 0.06), transparent),
    var(--bg);
  color: var(--text);
  padding: 32px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  width: 100%;
  max-width: var(--maxwidth);
}


/* Card Container */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.04);
}

/* Header */
header {
  display: flex;
  gap: 18px;
  align-items: center;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.title h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Buttons Grid */
.buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.4);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, filter .14s ease;
}
.btn:hover {
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 4px 12px rgba(2,6,23,0.5);
  filter: brightness(1.05);
}
.btn:active {
  transform: translateY(1px);
}

.ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041023;
  font-weight: 700;
  overflow: hidden;
}
.ico img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}

.meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.meta small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

/* Secondary Button */
.btn.secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
  border: 1px solid rgba(255,255,255,0.02);
}

/* Bio */
.bio {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  color: var(--muted);
}
.bio h3 {
  margin-top: 0;
  color: var(--text);
}

/* Section Titles */
.section-title {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  color: var(--muted);
  text-decoration: none;
}
.socials a:hover {
  color: var(--accent);
}

/* Animation */
.pulse {
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1) }
  50% { transform: scale(1.02) }
  100% { transform: scale(1) }
}

/* Responsive */
@media (max-width: 720px) {
  header {
    gap: 12px;
  }
  .buttons {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
