/* Hero Section */
.artist-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 60px 0 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.artist-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 5rem;
}

.artist-header-info {
  color: #ffffff;
}

.artist-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.artist-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.artist-genre-tag {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.artist-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.artist-stats i {
  margin-right: 5px;
}

.artist-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-follow,
.btn-following {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid;
}

.btn-follow {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.btn-follow:hover {
  background: #ffffff;
  color: var(--primary-color);
}

.btn-following {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--secondary-color);
}

.btn-following:hover {
  background: transparent;
  color: #ffffff;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.stars {
  display: flex;
  gap: 4px;
}

.stars .star {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
}

.stars .star.active {
  color: #ffc107;
}

.stars .star.user-rated {
  color: #ffc107;
}

.stars .star:hover {
  transform: scale(1.2);
  color: #ffc107;
}

.rating-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* Tabs */
.artist-tabs {
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 25px;
  flex-wrap: wrap;
  overflow-x: auto;
  overflow: hidden;
}

.artist-tabs .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.artist-tabs .nav-link:hover {
  color: var(--primary-color);
  border-color: transparent;
}

.artist-tabs .nav-link.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: transparent;
}

.artist-tabs .nav-link .badge {
  background: var(--primary-color);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}

.artist-tabs .nav-link i {
  margin-right: 6px;
}

/* Content Cards */
.content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.content-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.biography-text {
  line-height: 1.8;
  color: var(--secondary-color);
}

/* Social Links */
.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--light-bg);
  border-radius: 8px;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link-item:hover {
  transform: translateX(5px);
}

.social-link-item i {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.social-link-item.facebook i {
  color: #1877f2;
}
.social-link-item.instagram i {
  color: #e4405f;
}
.social-link-item.youtube i {
  color: #ff0000;
}
.social-link-item.spotify i {
  color: #1db954;
}

.social-link-item:hover {
  color: var(--primary-color);
}

/* Album Card */
.album-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.album-header {
  display: flex;
  gap: 20px;
}

.album-cover {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: #ffffff;
  font-size: 3rem;
}

.album-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.album-info h4 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.album-info h4 a:hover {
  color: var(--primary-color);
}

.album-year {
  display: inline-block;
  background: var(--light-bg);
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.album-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 15px;
}

.album-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-spotify {
  background: #1db954;
  color: #ffffff;
}

.btn-youtube {
  background: #ff0000;
  color: #ffffff;
}

.btn-deezer {
  background: #feaa2d;
  color: #000000;
}

.album-tracks {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.album-tracks h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.tracks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracks-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.tracks-list li:hover {
  background: var(--light-bg);
}

.tracks-list li span {
  color: #888;
}

.track-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.track-title {
  flex: 1;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.track-title:hover {
  color: var(--primary-color);
}

.track-views {
  font-size: 12px;
  color: var(--text-muted);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.news-image {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  color: var(--text-muted);
  font-size: 2rem;
}

.news-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.news-item:hover h4 {
  color: var(--primary-color);
}

.news-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-date {
  font-size: 12px;
  color: var(--primary-color);
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-icon {
  opacity: 1;
}

.video-info {
  padding: 15px;
}

.video-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card:hover h4 {
  color: var(--primary-color);
}

.video-views {
  font-size: 12px;
  color: var(--text-muted);
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.event-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.event-date-box {
  width: 70px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  flex-shrink: 0;
}

.event-date-box .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-date-box .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}

.event-date-box .year {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.event-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.event-item:hover h4 {
  color: var(--primary-color);
}

.event-location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.event-price {
  display: inline-block;
  background: var(--light-bg);
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Empty Tab */
.empty-tab i {
  opacity: 0.3;
}

/* Responsive */
@media (max-width: 767.98px) {
  .artist-hero {
    min-height: 350px;
    padding: 30px 0 25px;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .artist-title {
    font-size: 1.8rem;
  }

  .artist-stats {
    justify-content: center;
  }

  .artist-actions {
    justify-content: center;
  }

  .artist-tabs li:nth-child(-n + 3) {
    width: calc(100% / 3);
    justify-items: center;
  }

  .artist-tabs li:nth-last-child(-n + 2) {
    width: calc(100% / 2);
    justify-items: center;
  }

  .album-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .album-links {
    justify-content: center;
  }

  .news-item {
    flex-direction: column;
  }

  .news-image {
    width: 100%;
    height: 150px;
  }

  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
