/* ===== ARTISTS PAGE ===== */

.nav-active { color: var(--white) !important; }

/* ===== HEADER ===== */
.artists-header {
  padding: 100px 0 0;
  position: relative; z-index: 1;
}
.artists-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 40px 0;
}

/* Live roster row */
.roster-live-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(200,16,46,0); }
}
.live-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
}
.live-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }
.live-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

.header-top-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.add-artist-btn { flex-shrink: 0; align-self: flex-end; }

/* ===== TICKER ===== */
.roster-ticker-wrap {
  overflow: hidden;
  background: rgba(200,16,46,0.05);
  border-top: 1px solid rgba(200,16,46,0.18);
  border-bottom: 1px solid rgba(200,16,46,0.18);
  padding: 11px 0;
  position: relative; z-index: 1;
}
.roster-ticker {
  display: flex; gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.roster-ticker span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(200,16,46,0.65);
}
.roster-ticker .t-dot { color: rgba(200,16,46,0.3); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== TOOLBAR ===== */
.artists-toolbar {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; padding: 18px 0 20px;
}
.search-wrap {
  flex: 1; min-width: 260px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 0 16px;
  transition: border-color 0.2s, background 0.2s;
}
.search-wrap:focus-within {
  border-color: var(--red);
  background: rgba(200,16,46,0.04);
}
.search-icon { font-size: 0.9rem; color: rgba(255,255,255,0.22); }
.search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-size: 0.88rem;
  font-family: 'Inter', sans-serif; padding: 13px 0;
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.18); }
.filter-wrap select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 13px 36px 13px 16px;
  color: var(--white); font-size: 0.85rem;
  font-family: 'Inter', sans-serif; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.25)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  transition: border-color 0.2s;
}
.filter-wrap select:focus { outline: none; border-color: var(--red); }
.filter-wrap select option { background: #0a0d18; }
.artist-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
  white-space: nowrap; margin-left: auto;
}

/* ===== MAIN ===== */
.artists-main {
  max-width: 1200px; margin: 0 auto;
  padding: 52px 40px 120px;
  position: relative; z-index: 1; min-height: 60vh;
  border-top: 1px solid var(--line);
}
.artists-main::before {
  content: 'ROSTER';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 18vw, 220px); font-weight: 900;
  letter-spacing: -4px; color: rgba(255,255,255,0.018);
  pointer-events: none; white-space: nowrap; z-index: 0;
  user-select: none;
}

/* ===== ARTIST CARD GRID ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  position: relative; z-index: 1;
}

/* ===== ARTIST CARD ===== */
.artist-card {
  cursor: pointer; position: relative;
  border-radius: 14px; overflow: hidden;
  background: #0c0f1c;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

/* Top accent bar that slides in on hover */
.artist-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--red));
  background-size: 200%;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 10;
  animation: gradientShift 3s linear infinite paused;
}
.artist-card:hover::before {
  transform: scaleX(1);
  animation-play-state: running;
}
@keyframes gradientShift {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Shine sweep on hover */
.artist-card::after {
  content: '';
  position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  z-index: 9; pointer-events: none;
  transition: none;
}
.artist-card:hover::after {
  animation: shineSweep 0.65s ease forwards;
}
@keyframes shineSweep {
  to { left: 135%; }
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7),
              0 0 0 1px rgba(200,16,46,0.25),
              0 0 60px rgba(200,16,46,0.08),
              0 0 120px rgba(27,79,216,0.04);
  border-color: rgba(200,16,46,0.25);
}

.card-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #111527 0%, #1a0a1e 100%);
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.artist-card:hover .card-img { transform: scale(1.08); }
.card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: rgba(255,255,255,0.07);
}

/* Package badge */
.card-pkg-badge {
  position: absolute; top: 14px; left: 14px; z-index: 6;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.52rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: var(--red); color: var(--white);
  box-shadow: 0 2px 12px rgba(200,16,46,0.4);
}
.card-pkg-badge.yearly  { background: var(--blue); box-shadow: 0 2px 12px rgba(27,79,216,0.4); }
.card-pkg-badge.monthly { background: #7c3aed; box-shadow: 0 2px 12px rgba(124,58,237,0.4); }

/* Artist number watermark */
.card-num {
  position: absolute; bottom: 14px; right: 12px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; font-weight: 900; letter-spacing: -2px;
  color: rgba(255,255,255,0.055); line-height: 1;
  transition: color 0.3s ease;
  user-select: none;
}
.artist-card:hover .card-num { color: rgba(200,16,46,0.1); }

/* Play button */
.card-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(200,16,46,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  z-index: 7;
  box-shadow: 0 0 0 8px rgba(200,16,46,0.15), 0 8px 32px rgba(200,16,46,0.4);
  padding-left: 4px;
}
.artist-card:hover .card-play {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* Card overlay with gradient */
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 80px 16px 18px;
  background: linear-gradient(to top,
    rgba(6,8,15,0.98) 0%,
    rgba(6,8,15,0.72) 50%,
    transparent 100%);
}
.card-track {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
  color: var(--red); text-transform: uppercase;
  margin: 0 0 7px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}
.artist-card:hover .card-track { opacity: 1; transform: translateY(0); }
.card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
  line-height: 1.1; margin: 0 0 5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.card-genre {
  font-size: 0.62rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px; margin: 0;
}

/* ===== ARTIST MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.modal-box {
  background: #090c18;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 56px 140px rgba(0,0,0,0.85),
              0 0 0 1px rgba(255,255,255,0.04),
              0 0 80px rgba(200,16,46,0.06);
  scrollbar-width: none;
}
.modal-box::-webkit-scrollbar { display: none; }
@keyframes slideUp {
  from { transform: translateY(40px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 20;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); border-radius: 50%;
  width: 38px; height: 38px; font-size: 0.78rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(10px);
}
.modal-close:hover { background: rgba(200,16,46,0.3); border-color: rgba(200,16,46,0.5); }

/* Modal photo */
.modal-photo-wrap {
  width: 100%; height: 320px; position: relative; overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(160deg, #111527, #1a0a1e);
}
.modal-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-photo-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(9,12,24,1) 0%, rgba(9,12,24,0.5) 45%, rgba(0,0,0,0.1) 100%);
}
.modal-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,0.1);
}
.modal-name-overlay {
  position: absolute; bottom: 24px; left: 28px; right: 60px; z-index: 5;
}
.modal-pkg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: var(--red); color: var(--white);
  display: inline-block; margin-bottom: 12px;
  box-shadow: 0 2px 16px rgba(200,16,46,0.45);
}
.modal-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white); line-height: 1;
  text-shadow: 0 2px 32px rgba(0,0,0,0.9); margin: 0;
}

/* Modal body */
.modal-body { padding: 26px 28px 34px; }
.modal-track-wrap {
  display: flex; align-items: center; gap: 12px;
  background: rgba(200,16,46,0.07);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 18px;
}
.modal-track-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red); white-space: nowrap;
}
.modal-track-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white);
}
.modal-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.modal-tag {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
}
.modal-info-grid {
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; overflow: hidden; margin-bottom: 20px;
}
.info-row {
  display: flex; align-items: center;
  padding: 11px 16px; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.info-row:last-child { border-bottom: none; }
.info-row:hover { background: rgba(255,255,255,0.025); }
.info-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  min-width: 80px; flex-shrink: 0;
}
.info-val {
  font-size: 0.87rem; color: rgba(255,255,255,0.72);
  font-family: 'Inter', sans-serif;
}
.modal-bio {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.78; margin-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 18px;
}
.modal-links {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.modal-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 12px 22px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  transition: all 0.2s ease; flex: 1; justify-content: center;
}
.modal-link:hover {
  border-color: rgba(200,16,46,0.4); color: var(--red);
  background: rgba(200,16,46,0.06);
}
.modal-link.primary {
  background: var(--red); border-color: var(--red); color: var(--white);
  box-shadow: 0 4px 24px rgba(200,16,46,0.35);
}
.modal-link.primary:hover {
  background: #a80d26; border-color: #a80d26;
  box-shadow: 0 6px 32px rgba(200,16,46,0.5);
}
.modal-date {
  font-size: 0.68rem; color: rgba(255,255,255,0.15);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== ADD ARTIST MODAL ===== */
.add-modal-box { max-width: 680px; }
.add-modal-box > div { padding: 36px; }
.add-lock-row {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.add-lock-row input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 13px 16px;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s;
}
.add-lock-row input:focus { outline: none; border-color: var(--red); }
.add-err { color: var(--red); font-size: 0.85rem; margin-top: 10px; }
.fg label {
  display: block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 7px;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 12px 14px;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s; box-sizing: border-box;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--red); background: rgba(200,16,46,0.04);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.15); }
.fg textarea { resize: vertical; line-height: 1.6; }
.fg select option { background: #0a0d18; }
.add-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 20px;
}
.fg-full { grid-column: 1 / -1; }
.add-form-actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.manage-section {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; margin-top: 8px;
}
.posted-list { display: flex; flex-direction: column; gap: 6px; }
.posted-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.15s;
}
.posted-item:hover { background: rgba(255,255,255,0.04); }
.posted-item strong { color: var(--white); font-size: 0.88rem; display: block; }
.posted-item span { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.del-btn {
  background: none; border: 1px solid rgba(200,16,46,0.25);
  color: rgba(200,16,46,0.7); border-radius: 6px; padding: 6px 12px;
  cursor: pointer; font-size: 0.72rem; transition: all 0.2s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
}
.del-btn:hover { background: rgba(200,16,46,0.1); border-color: var(--red); color: var(--red); }

/* ===== PHOTO UPLOAD ===== */
.photo-upload-wrap { display: flex; flex-direction: column; gap: 12px; }
.photo-upload-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  border-radius: 8px; padding: 12px 18px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.photo-upload-btn:hover {
  background: rgba(200,16,46,0.08);
  border-color: rgba(200,16,46,0.4);
  color: var(--white);
}
.photo-preview-wrap {
  position: relative; display: inline-flex;
  align-items: flex-start; gap: 12px;
}
.photo-preview-wrap img {
  width: 90px; height: 120px;
  object-fit: cover; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.photo-clear-btn {
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.3);
  color: rgba(200,16,46,0.8);
  border-radius: 6px; padding: 5px 10px;
  font-size: 0.72rem; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.photo-clear-btn:hover { background: rgba(200,16,46,0.2); color: var(--red); }

/* ===== MORE ON INSTAGRAM BANNER ===== */
.more-on-insta {
  margin: 56px 0 0;
  padding: 0 40px;
}
.more-insta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, rgba(10,80,180,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative; overflow: hidden;
}
.more-insta-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.more-insta-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  color: var(--red); margin-bottom: 8px;
}
.more-insta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--white);
  margin: 0 0 10px; text-transform: uppercase; letter-spacing: 1px;
}
.more-insta-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  max-width: 420px; line-height: 1.6; margin: 0;
}
.more-insta-btn {
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center;
}
@media (max-width: 700px) {
  .more-on-insta { padding: 0 20px; }
  .more-insta-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .more-insta-title { font-size: 1.4rem; }
}

/* ===== ADMIN HINT ===== */
.admin-hint {
  text-align: center;
  padding: 14px 24px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}
.admin-hint kbd {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
}

/* ===== EMPTY STATES ===== */
.empty-artists, .no-results { text-align: center; padding: 100px 24px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .artists-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 14px; }
}
@media (max-width: 760px) {
  .artists-header-inner { padding: 24px 20px 0; }
  .artists-main { padding: 32px 20px 72px; }
  .header-top-row { align-items: flex-start; }
  .artists-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .card-play { width: 46px; height: 46px; font-size: 0.9rem; }
  .add-form-grid { grid-template-columns: 1fr; }
  .add-modal-box > div { padding: 24px 20px; }
  .modal-box { border-radius: 16px; }
  .modal-photo-wrap { height: 260px; }
  .modal-name { font-size: 1.9rem; }
  .modal-body { padding: 20px 20px 28px; }
  .live-sub { display: none; }
}
