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, #FF218C 33.3%, #FFD800 33.3% 66.6%, #21B1FF 66.6%);
  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: #fff;
}

nav a:focus, .link-item:focus, .song-card:focus {
  outline: 2px solid #21B1FF;
  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: #3f3f46;
}

.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; /* Macht das Bild perfekt rund */
  object-fit: cover; /* Stellt sicher, dass das Bild den Bereich ausfüllt, ohne verzerrt zu werden */
}

/* Feedback Component Styles */
.feedback-section h2 {
  margin-bottom: 8px;
}

.feedback-options {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.feedback-btn {
  background: #1c1c1f;
  border: 1px solid #27272a;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-btn:hover {
  background: #27272a;
  border-color: #3f3f46;
  transform: translateY(-2px);
}

.feedback-btn.active {
  border-color: #21B1FF;
  background: rgba(33, 177, 255, 0.1);
}

.feedback-textarea {
  width: 100%;
  background: #111113;
  border: 1px solid #27272a;
  color: #fafafa;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  box-sizing: border-box;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.image-placeholder {
  aspect-ratio: 1 / 1;
  background: #111113;
  border: 2px dashed #27272a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  font-size: 0.75rem;
  text-align: center;
  padding: 10px;
  transition: border-color 0.2s;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #27272a;
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  border-color: #21B1FF;
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  padding: 20px;
}

.modal-content {
  max-width: 95%;
  max-height: 95%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: zoom 0.2s ease-out;
}

@keyframes zoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}