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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Section */
.hero {
  padding: 3rem 2rem 2rem;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.artist-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #333;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.artist-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
}

.hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.hero p {
  font-size: 1.1rem;
  color: #aaaaaa;
  margin-bottom: 1rem;
  text-align: left;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link.social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.social-link.social-tiktok:hover {
  background: #000000;
  border-color: #000000;
}

.social-link.social-spotify:hover {
  background: #1DB954;
  border-color: #1DB954;
}

.social-link.social-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

/* Albums Section */
.albums-section {
  margin-top: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.album-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.album-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.album-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #222;
}

.album-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.album-name:hover {
  color: #cccccc;
}

.album-summary {
  font-size: 0.95rem;
  color: #bbbbbb;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.album-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tags-label {
  font-size: 0.75rem;
  color: #888;
  margin-right: 0.25rem;
  font-weight: 500;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  color: #cccccc;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.platform-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.platform-link.spotify:hover {
  background: #1DB954;
  border-color: #1DB954;
}

.platform-link.applemusic:hover {
  background: #FA2D48;
  border-color: #FA2D48;
}

.platform-link.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.platform-link.youtubemusic:hover {
  background: #FF0000;
  border-color: #FF0000;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 4rem;
  color: #888;
  font-size: 1.2rem;
}

.loading::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.empty-state p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Album Detail Section */
.album-detail-section {
  padding: 2rem 0;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-3px);
}

.back-button svg {
  width: 20px;
  height: 20px;
}

.album-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.detail-image-container {
  position: sticky;
  top: 2rem;
}

.detail-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.detail-content {
  padding: 1rem 0;
}

.detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.detail-summary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 1rem;
}

.detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #bbbbbb;
  margin-bottom: 1.5rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-tags .tags-label {
  font-size: 0.8rem;
  color: #888;
  margin-right: 0.25rem;
  font-weight: 500;
}

.detail-tags .tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: #cccccc;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-lyric {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lyric-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.lyric-content {
  font-size: 1.05rem;
  line-height: 2;
  color: #dddddd;
  white-space: pre-line;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.detail-platform-links .platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
}

.detail-platform-links .platform-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem 1.5rem;
  }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .artist-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .hero-info {
    align-items: flex-start;
    flex: 1;
  }

  .hero h1 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 0.85rem;
    text-align: left;
    line-height: 1.5;
  }

  .social-links {
    gap: 0.5rem;
    justify-content: flex-start;
    margin-top: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

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

  .albums-section {
    margin-top: 2rem;
  }

  .albums-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artist-image {
    width: 150px;
    height: 150px;
  }

  .container {
    padding: 1rem;
  }

  .album-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-image-container {
    position: relative;
    top: 0;
  }

  .detail-title {
    font-size: 2rem;
  }

  .detail-summary {
    font-size: 1rem;
  }

  .lyric-content {
    font-size: 0.95rem;
    padding: 1.5rem;
  }
}

