/* artists.css — premium, hybrid, RHYTHM-aligned */

.artists-page {
  padding-bottom: 3rem;
}

/* TRUST STRIP */
.trust-strong span {
  font-weight: 600;
  color: #e6ecff;
  text-shadow: 0 0 12px rgba(140,160,255,.25);
}

/* GRID */
.artists-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.artist-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02)
  );
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s ease;
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(0,0,0,.6);
}

/* IMAGE */
.artist-image {
  position: relative;
}

.artist-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* PLAYKAR BADGE */
.badge-playkar {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #800080;
  color: #fff;
  padding: 6px 10px;
  font-size: .75rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

/* BODY */
.artist-body {
  padding: 1.4rem;
  text-align: center;
}

.artist-body h3 {
  margin: 0;
  font-size: 1.2rem;
}

.real-name {
  font-size: .9rem;
  color: #b8c4ff;
  margin-top: .2rem;
}

.role {
  font-size: .8rem;
  opacity: .7;
  margin-bottom: .8rem;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: .8rem;
}

.socials a {
  color: #9fbfff;
  font-size: 1.2rem;
  transition: transform .2s ease, color .2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* PLATFORM ICONS */
.platforms {
  display: flex;
  justify-content: center;
  gap: .9rem;
  margin-bottom: .9rem;
}

.platforms a {
  color: #cbd6ff;
  font-size: 1.05rem;
  opacity: .85;
  transition: transform .2s ease, opacity .2s ease;
}

.platforms a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* STREAMS */
.streams {
  font-size: .85rem;
  color: #d6dcff;
}

/* MOBILE */
@media (max-width: 768px) {
  .artist-image img {
    height: 260px;
  }
}
