/* Musician profile show page */

.mp-hero {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 0 2.25rem;
  color: #fff;
}
.mp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 40%, rgba(255, 160, 40, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 50% at 15% 70%, rgba(255, 193, 7, 0.08), transparent 50%),
    linear-gradient(155deg, #050505 0%, #141414 48%, #1a1208 100%);
}
.mp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 25%, transparent 72%);
}
.mp-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.mp-hero__inner {
  position: relative;
  z-index: 1;
}
.mp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.mp-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.mp-breadcrumb a:hover { color: #ffc107; }

.mp-hero__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
}
.mp-avatar-link {
  display: inline-block;
  border-radius: 50%;
  border: 3px solid #ffc107;
  padding: 3px;
  line-height: 0;
}
.mp-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  display: block;
}
.mp-name {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.mp-name .mp-verified {
  color: #ffc107;
  font-size: 1.1rem;
}
.mp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.mp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.mp-pill--mode {
  border-color: rgba(255, 193, 7, 0.55);
  color: #ffc107;
}
.mp-pill--mode a { color: #ffc107 !important; text-decoration: underline; }
.mp-pill--on {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
  color: #86efac;
}
.mp-pill--off {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.mp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.mp-meta i { color: rgba(255,255,255,0.4); margin-right: 0.35rem; }

.mp-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  min-width: 220px;
}
.mp-rating-box {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  text-align: center;
}
.mp-rating-box__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mp-rating-box__stars {
  color: #ffc107;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.mp-rating-box__num {
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.mp-rating-box__num small {
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.mp-action-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.mp-action-btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.mp-action-btn:hover {
  background: rgba(255,193,7,0.14);
  border-color: rgba(255,193,7,0.45);
  color: #ffc107 !important;
  transform: translateY(-1px);
}

.mp-body {
  padding: 1.5rem 0 3rem;
}
.mp-grid {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) minmax(240px, 280px);
  gap: 1.15rem;
  align-items: start;
}
.mp-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.1rem 1.15rem 1.2rem;
  margin-bottom: 1.15rem;
}
.mp-card__title {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.mp-card__title i { color: #ffc107; }
.mp-info-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.55rem 0.65rem;
  margin-bottom: 0.85rem;
  align-items: start;
}
.mp-info-row > i {
  color: #ffc107;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}
.mp-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.mp-info-value {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.45;
  word-break: break-word;
}
.mp-info-value a {
  color: #ffc107 !important;
  text-decoration: none !important;
}
.mp-info-value a:hover { text-decoration: underline !important; }
.mp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.mp-tag {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none !important;
}
.mp-tag:hover {
  border-color: rgba(255,193,7,0.45);
  color: #ffc107 !important;
}
.mp-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
  vertical-align: middle;
}
.mp-dot.is-on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.mp-dot.is-off { background: #ef4444; }

.mp-bio {
  color: rgba(255,255,255,0.8);
  white-space: pre-line;
  line-height: 1.65;
  margin: 0;
  font-size: 0.95rem;
}
.mp-media-section { margin-bottom: 1.15rem; }
.mp-media-section:last-child { margin-bottom: 0; }
.mp-media-section h6 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.55rem;
  font-weight: 700;
}

/* Portfolio — compact platform tabs */
.mp-portfolio .mp-card__title { margin-bottom: 0.85rem; }
.mp-pf__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.mp-pf__tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease;
}
.mp-pf__tab i { font-size: 0.95rem; }
.mp-pf__tab em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 0 0.28rem;
}
.mp-pf__tab:hover { transform: translateY(-1px); color: #fff; }
.mp-pf__tab.is-active {
  color: #fff;
  border-color: transparent;
}
.mp-pf__tab--yt.is-active { background: #ff0000; }
.mp-pf__tab--yt.is-active em { background: rgba(0,0,0,0.25); color: #fff; }
.mp-pf__tab--ig.is-active { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.mp-pf__tab--ig.is-active em { background: rgba(0,0,0,0.25); color: #fff; }
.mp-pf__tab--fb.is-active { background: #1877f2; }
.mp-pf__tab--fb.is-active em { background: rgba(0,0,0,0.2); color: #fff; }
.mp-pf__tab--sc.is-active { background: #ff5500; }
.mp-pf__tab--sc.is-active em { background: rgba(0,0,0,0.2); color: #fff; }
.mp-pf__tab--sp.is-active { background: #1db954; color: #111; }
.mp-pf__tab--sp.is-active em { background: rgba(0,0,0,0.18); color: #fff; }
.mp-pf__tab--vm.is-active { background: #1ab7ea; color: #111; }
.mp-pf__tab--vm.is-active em { background: rgba(0,0,0,0.15); color: #fff; }
.mp-pf__tab--ap.is-active { background: #fc3c44; }
.mp-pf__tab--ap.is-active em { background: rgba(0,0,0,0.2); color: #fff; }

.mp-pf__panel[hidden] { display: none !important; }
.mp-pf__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
}
.mp-pf__brand--yt { background: rgba(255,0,0,0.18); color: #ff6b6b; }
.mp-pf__brand--ig { background: rgba(220,39,67,0.16); color: #ff7aa2; }
.mp-pf__brand--fb { background: rgba(24,119,242,0.16); color: #7ab6ff; }
.mp-pf__brand--sc { background: rgba(255,85,0,0.16); color: #ff9a5c; }
.mp-pf__brand--sp { background: rgba(29,185,84,0.16); color: #6dff9d; }
.mp-pf__brand--vm { background: rgba(26,183,234,0.16); color: #7adfff; }
.mp-pf__brand--ap { background: rgba(252,60,68,0.16); color: #ff8a90; }

.mp-pf__yt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.mp-pf__yt-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0d0d0d;
  text-decoration: none !important;
  aspect-ratio: 16 / 9;
  transition: transform .2s ease, border-color .2s ease;
}
.mp-pf__yt-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,0,0,0.45);
}
.mp-pf__yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-pf__yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  color: #fff;
  font-size: 1.35rem;
  transition: background .2s ease;
}
.mp-pf__yt-card:hover .mp-pf__yt-play { background: rgba(0,0,0,0.42); }
.mp-pf__yt-badge {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,0,0,0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}
.mp-pf__yt-badge i { color: #ff0000; }

.mp-pf__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mp-pf__item {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.mp-pf__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mp-pf__item-plat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}
.mp-pf__item--yt .mp-pf__item-plat i { color: #ff0000; }
.mp-pf__item--ig .mp-pf__item-plat i { color: #e1306c; }
.mp-pf__item--fb .mp-pf__item-plat i { color: #4c9aff; }
.mp-pf__item--sc .mp-pf__item-plat i { color: #ff7700; }
.mp-pf__item--sp .mp-pf__item-plat i { color: #1db954; }
.mp-pf__item--vm .mp-pf__item-plat i { color: #1ab7ea; }
.mp-pf__item--ap .mp-pf__item-plat i { color: #fc3c44; }
.mp-pf__item-open {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.mp-pf__item-open:hover { color: #ffc107 !important; }
.mp-pf__embed {
  padding: 0.55rem;
}
.mp-pf__embed > .mb-2,
.mp-pf__embed > .mb-3,
.mp-pf__embed > .ratio {
  margin-bottom: 0 !important;
}
.mp-pf__embed iframe {
  border-radius: 8px;
  max-width: 100%;
}
.mp-pf__fallback {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 650;
  font-size: 0.88rem;
}
.mp-pf__fallback:hover { color: #ffc107 !important; }

.mp-yt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.mp-yt-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #111;
}
.mp-yt-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.mp-yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 1.6rem;
  transition: background 0.2s ease;
}
.mp-yt-card:hover .mp-yt-card__play { background: rgba(0,0,0,0.4); }
.mp-yt-card__title {
  padding: 0.45rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.mp-gallery-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 1;
}
.mp-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-gallery-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}
.mp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.mp-contact-row i {
  color: #ffc107;
  width: 16px;
  margin-top: 0.2rem;
}
.mp-contact-row a { color: #fff !important; text-decoration: none !important; }
.mp-contact-row a:hover { color: #ffc107 !important; }
.mp-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.mp-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1rem;
  transition: transform 0.15s ease;
}
.mp-social:hover { transform: translateY(-2px); }
.mp-social--youtube { background: #ff0000; }
.mp-social--soundcloud { background: #ff5500; }
.mp-social--facebook { background: #1877f2; }
.mp-social--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.mp-social--tiktok { background: #111; border: 1px solid rgba(255,255,255,0.2); }
.mp-social--spotify { background: #1db954; }
.mp-social--default { background: rgba(255,255,255,0.12); }

.mp-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: #ffc107;
  color: #111 !important;
  font-weight: 800;
  text-decoration: none !important;
  margin-top: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mp-cta-primary:hover {
  background: #ffd54f;
  color: #111 !important;
  transform: translateY(-1px);
}
.mp-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 44px;
  margin-top: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  font-size: 0.88rem;
}
.mp-cta-secondary:hover {
  border-color: rgba(255,193,7,0.45);
  color: #ffc107 !important;
}
.mp-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,193,7,0.45);
  color: #ffc107 !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 700;
}
.mp-muted { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* Keep interactive rating stars readable */
body.page-catalog #userRatingDisplay .star,
body.page-catalog .mp-rating-box .fa-star { color: #ffc107; }
body.page-catalog .yt-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px;
  overflow: hidden;
}
body.page-catalog .yt-card-title { color: #fff; }
body.page-catalog .yt-card-source { color: rgba(255,255,255,0.45) !important; }

@media (max-width: 1199.98px) {
  .mp-grid {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }
  .mp-col-right { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
  .mp-col-right .mp-card { margin-bottom: 0; }
}
@media (max-width: 991.98px) {
  .mp-hero__row {
    grid-template-columns: auto 1fr;
  }
  .mp-hero__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .mp-rating-box { flex: 1 1 180px; }
  .mp-action-row { flex: 1 1 220px; }
}
@media (max-width: 767.98px) {
  .mp-grid { grid-template-columns: 1fr; }
  .mp-col-right { grid-template-columns: 1fr; }
  .mp-yt-grid { grid-template-columns: 1fr; }
  .mp-pf__yt { grid-template-columns: 1fr; }
  .mp-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-avatar { width: 96px; height: 96px; }
}

/* Share widget inside hero actions */
.mp-action-row .share-btn-wrapper { width: 100%; }
.mp-action-row .share-trigger-btn.dark {
  width: 100%;
  min-height: 40px;
  justify-content: center;
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 10px;
  font-size: 0.82rem;
}
.mp-action-row .share-trigger-btn.dark:hover {
  color: #ffc107 !important;
}
