/* === GRID OVERFLOW FIX === */
.gxz-artist-releases-wrap { width:100%; max-width:100%; overflow:hidden; }
.gxz-artist-releases { width:100%; box-sizing:border-box; }

/* === FEATURED RELEASE CARD === */
.gxz-featured-section { padding-bottom:4px; }
.gxz-featured-card {
  display:block; position:relative; border-radius:18px; overflow:hidden;
  text-decoration:none; color:#fff; background:rgba(255,255,255,0.04);
  transition:transform 0.25s ease,box-shadow 0.25s ease;
}
.gxz-featured-card:hover { transform:translateY(-2px); box-shadow:0 12px 48px rgba(153,0,255,0.35); }
.gxz-featured-card__glow {
  position:absolute; inset:-2px; border-radius:20px;
  background:linear-gradient(135deg,#9900ff,#ff2d78,#9900ff,#ff2d78);
  background-size:300% 300%; animation:gxzFeaturedShimmer 3s ease infinite; z-index:0;
}
@keyframes gxzFeaturedShimmer {
  0%   { background-position:0% 50%; opacity:0.85; }
  50%  { background-position:100% 50%; opacity:1; }
  100% { background-position:0% 50%; opacity:0.85; }
}
.gxz-featured-card__inner {
  position:relative; z-index:1; display:flex; align-items:center; gap:16px; padding:16px;
  background:rgba(8,4,20,0.88); border-radius:17px;
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
.gxz-featured-card__art {
  position:relative; flex-shrink:0; width:96px; height:96px; border-radius:12px;
  overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.5);
}
.gxz-featured-card__art img { width:100%;height:100%;object-fit:cover;display:block; }
.gxz-featured-card__art-placeholder {
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#1a1a2e,#2a1a3e);
}
.gxz-featured-card__play {
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:rgba(0,0,0,0.45);border:none;cursor:pointer;
  opacity:0;transition:opacity 0.2s ease;border-radius:12px;
}
.gxz-featured-card:hover .gxz-featured-card__play,.gxz-featured-card__play:focus { opacity:1; }
.gxz-featured-card__info { flex:1;min-width:0;display:flex;flex-direction:column;gap:4px; }
.gxz-featured-card__label {
  font-size:0.65rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  background:linear-gradient(90deg,#9900ff,#ff2d78);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.gxz-featured-card__title {
  font-size:1.05rem;font-weight:700;line-height:1.2;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;color:#fff;
}
.gxz-featured-card__meta { font-size:0.72rem;color:rgba(255,255,255,0.45); }
.gxz-featured-card__cta {
  display:inline-flex;align-items:center;gap:4px;font-size:0.78rem;font-weight:600;
  color:rgba(255,255,255,0.75);margin-top:6px;transition:color 0.2s;
}
.gxz-featured-card:hover .gxz-featured-card__cta { color:#fff; }

/* === LIST DISPLAY MODE === */
.gxz-releases-list { display:flex;flex-direction:column;gap:2px; }
.gxz-list-row {
  display:flex;align-items:center;gap:12px;padding:10px 12px;
  border-radius:12px;background:transparent;transition:background 0.18s ease;
}
.gxz-list-row:hover,.gxz-list-row.is-playing { background:rgba(255,255,255,0.06); }
.gxz-list-row__play {
  flex-shrink:0;width:32px;height:32px;border-radius:50%;border:none;
  background:rgba(255,255,255,0.1);color:#fff;display:flex;align-items:center;
  justify-content:center;cursor:pointer;transition:background 0.18s ease,transform 0.15s ease;
}
.gxz-list-row__play:hover:not(:disabled) { background:linear-gradient(135deg,#9900ff,#ff2d78);transform:scale(1.08); }
.gxz-list-row__play:disabled { opacity:0.25;cursor:default; }
.gxz-list-row.is-playing .gxz-list-row__play { background:linear-gradient(135deg,#9900ff,#ff2d78); }
.gxz-list-row__art {
  flex-shrink:0;width:48px;height:48px;border-radius:8px;overflow:hidden;
  display:block;box-shadow:0 2px 10px rgba(0,0,0,0.4);
}
.gxz-list-row__art img { width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.2s ease; }
.gxz-list-row:hover .gxz-list-row__art img { transform:scale(1.05); }
.gxz-list-row__art-placeholder {
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#1a1a2e,#2a1a3e);
}
.gxz-list-row__info { flex:1;min-width:0;display:flex;flex-direction:column;gap:3px;text-decoration:none;color:#fff; }
.gxz-list-row__title { font-size:0.88rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.2; }
.gxz-list-row__meta { font-size:0.7rem;color:rgba(255,255,255,0.4); }
.gxz-list-row__dot {
  flex-shrink:0;width:7px;height:7px;border-radius:50%;
  background:linear-gradient(135deg,#9900ff,#ff2d78);box-shadow:0 0 6px rgba(255,45,120,0.7);
}

/* === VIDEOS CAROUSEL === */
.gxz-videos-carousel-wrap { position:relative;width:100%;max-width:100%;overflow:hidden;contain:paint; }
.gxz-videos-carousel {
  display:flex;gap:12px;overflow-x:scroll;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;padding:4px 16px 16px;scroll-snap-type:x mandatory;box-sizing:border-box;
  width:100%;max-width:100%;overscroll-behavior-x:contain;touch-action:pan-x;
}
.gxz-videos-carousel::-webkit-scrollbar { display:none; }
.gxz-video-card { flex:0 0 220px;scroll-snap-align:start; }
@media (min-width:600px) { .gxz-video-card { flex:0 0 260px; } }
.gxz-video-card__thumb {
  position:relative;aspect-ratio:16/9;border-radius:10px;overflow:hidden;
  background:#111;cursor:pointer;box-shadow:0 4px 18px rgba(0,0,0,0.45);
}
.gxz-video-card__thumb img { width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.25s ease; }
.gxz-video-card__thumb:hover img { transform:scale(1.04); }
.gxz-video-card__play-btn {
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:transparent;transition:background 0.2s ease;
}
@media (hover:hover) {
  .gxz-video-card__thumb:hover .gxz-video-card__play-btn { background:rgba(0,0,0,0.45); }
}
.gxz-video-card__play-btn svg { filter:drop-shadow(0 2px 8px rgba(0,0,0,0.6));transition:transform 0.2s ease; }
.gxz-video-card__thumb:hover .gxz-video-card__play-btn svg { transform:scale(1.15); }
.gxz-video-card__title {
  font-size:0.78rem;color:rgba(255,255,255,0.5);margin:8px 0 0;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}

/* === MERCH SECTION === */
.gxz-artist-merch { padding: 0 0 32px; overflow: hidden; max-width:100%; box-sizing:border-box; }
.gxz-artist-merch .gxz-artist-section-header {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;
  padding: 0 16px;
}
.gxz-merch-store-link {
  font-size:0.78rem; color:rgba(255,255,255,0.45); text-decoration:none;
  letter-spacing:0.03em; transition:color 0.2s;
}
.gxz-merch-store-link:hover { color:#ff2d78; }
.gxz-merch-carousel-wrap { position:relative; width:100%; max-width:100%; overflow:hidden; contain:paint; }
.gxz-merch-carousel {
  display:flex; gap:12px; overflow-x:auto; overflow-y:visible;
  -webkit-overflow-scrolling:touch; scrollbar-width:none; padding:4px 16px 12px;
  box-sizing:border-box; width:100%; max-width:100%;
  overscroll-behavior-x:contain; touch-action:pan-x;
}
.gxz-merch-carousel::-webkit-scrollbar { display:none; }
.gxz-merch-card {
  flex:0 0 140px; text-decoration:none; color:inherit; display:flex;
  flex-direction:column; border-radius:14px; overflow:hidden;
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06);
  transition:transform 0.2s, border-color 0.2s;
}
.gxz-merch-card:hover { transform:translateY(-3px); border-color:rgba(255,45,120,0.4); }
.gxz-merch-card__img-wrap {
  position:relative; width:100%; aspect-ratio:1; overflow:hidden;
  background:rgba(255,255,255,0.06);
}
.gxz-merch-card__img-wrap img {
  width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.3s;
}
.gxz-merch-card:hover .gxz-merch-card__img-wrap img { transform:scale(1.05); }
.gxz-merch-card__img-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
}
.gxz-merch-card__overlay {
  position:absolute; inset:0; background:rgba(0,0,0,0.55); display:flex;
  align-items:center; justify-content:center; opacity:0; transition:opacity 0.2s;
  font-size:0.78rem; font-weight:600; color:#fff; letter-spacing:0.05em;
}
.gxz-merch-card:hover .gxz-merch-card__overlay { opacity:1; }
.gxz-merch-card__info { padding:10px 10px 12px; display:flex; flex-direction:column; gap:3px; }
.gxz-merch-card__name {
  font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.9);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:1.3;
}
.gxz-merch-card__price { font-size:0.72rem; color:rgba(255,255,255,0.45); }

/* Premium badge in edit-profile */
.gxz-ep-premium-badge {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(255,215,0,0.1); border:1px solid rgba(255,215,0,0.25);
  border-radius:20px; padding:3px 10px 3px 7px; font-size:0.7rem; font-weight:600;
  color:#FFD700; letter-spacing:0.04em; text-transform:uppercase;
}
