body {
  background-color: #121212;
  color: #fafafa;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page-shell {
  display: flex;
  flex-direction: row;
  gap: 60px;
  max-width: 900px;
  width: 100%;
  padding: 80px 20px;
}

.sidebar {
  flex: 0 0 250px;
}

.sidebar h1 {
  font-family: 'Inter', sans-serif;
}

.avatar {
  width: 120px;
  height: 120px;
  background: #27272a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid #27272a;
}

.main-header {
  margin-bottom: 40px;
  background: linear-gradient(to bottom, #D60270 40%, #9B4F96 40% 60%, #0038A8 60%);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  transform: translateZ(0); /* Fix für Browser-Rendering-Bugs an abgerundeten Ecken */
}

.header-content {
  padding: 30px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.4);
}

.subheader {
  font-family: 'Source Code Pro', monospace;
  color: #f0f0f0;
  font-size: 0.9rem;
  margin: 0;
}

.sidebar nav a i {
  margin-right: 10px;
  width: 18px;
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

h2 {
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  color: #fafafa;
}

.bio {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

nav a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a.active, nav a:hover {
  color: #D60270; /* Pinker Akzent für Hover */
}

nav a:focus, .link-item:focus, .song-card:focus {
  outline: 2px solid #9B4F96; /* Violetter Fokus-Ring */
  outline-offset: 4px;
}

ul li a {
  color: inherit;
  text-decoration: none;
}

.content {
  flex: 1;
}

.card {
  background: #09090b;
  border: 1px solid #27272a;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.two-column-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin-bottom: 10px;
  color: #a1a1aa;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

ul li i {
  width: 16px;
  text-align: center;
  color: #71717a;
}

.music-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.song-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e1e1e;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.song-card:hover { border-color: #444; }
.song-card img { 
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px; 
}
.song-title { font-weight: 600; margin: 0; font-size: 0.9rem; }
.artist-name { color: #71717a; margin: 0; font-size: 0.8rem; }

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

.link-item, .no-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #111113;
  border: 1px solid #27272a;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.link-item:hover:not(.no-link) {
  background: #1c1c1f;
  border-color: #0038A8; /* Blauer Akzent für Hover */
}

/* YouTube spezifische Farbe */
.fa-youtube {
  color: #FF0000;
}

.no-link {
  cursor: default;
  opacity: 0.8;
}

.link-item img, .link-item svg {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
}

.label { font-weight: 500; display: block; }
.description { font-size: 0.8rem; color: #71717a; }

.quote-text {
  font-style: italic;
  font-family: 'Source Code Pro', monospace;
  color: #e4e4e7;
}

.quote-author {
  display: block;
  margin-top: 8px;
  color: #71717a;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .page-shell { flex-direction: column; padding: 40px 20px; gap: 40px; }
  .sidebar { flex: none; }
  .two-column-container { grid-template-columns: 1fr; }
}

.youtube-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50% !important;
  object-fit: cover;
  background-color: #27272a;
  /* Versteckt das eigentliche Bild, lässt aber den grauen Kreis als Platzhalter */
  content: ""; 
}

.hidden, .youtuber-item .label, .youtuber-item .description {
  display: none !important;
}

/* Verstecken der spezifischen Social-Links ohne sie zu löschen */
.link-discord, .link-twitter, .link-warthunder, .link-github {
  display: none !important;
}

/* YouTube Akzentfarbe */
.link-youtube:hover i {
  color: #FF0000;
}
