/* name=static/css/artist-album.css
   Neon-style refinements for artist and album pages (cards, grid, badges, buttons)
*/

.artist-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 320px 1fr 300px; /* left / center / right */
    gap: 22px;
    align-items: start;
  }
  
  /* fallback for smaller screens */
  @media (max-width: 980px) {
    .artist-page {
      grid-template-columns: 1fr;
      padding: 12px;
    }
  }
  
  /* Left column artwork card */
  .meta-card {
    background: linear-gradient(180deg, rgba(12,12,12,0.96), rgba(6,6,6,0.96));
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,105,180,0.06);
    box-shadow: 0 8px 30px rgba(255,45,179,0.05);
  }
  
  /* Big album/artist image */
  .artwork-large {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255,45,179,0.06);
    background: #000;
  }
  
  /* Neon heading */
  .neon-title {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(255,105,180,0.4), 0 2px 0 rgba(0,0,0,0.6);
    font-weight: 800;
    margin-bottom: 6px;
  }
  
  /* Count badges */
  .count-badge {
    background: linear-gradient(90deg,#ff69b4,#8b00ff);
    color: #000;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255,69,150,0.08);
  }
  
  /* Action buttons */
  .artist-cta {
    display:inline-block;
    padding:9px 14px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    color:#000;
    background:linear-gradient(90deg,#ff69b4,#ffb3ff);
    box-shadow: 0 6px 18px rgba(255,77,153,0.12);
  }
  
  /* Albums grid */
  .albums-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:14px;
  }
  
  /* Album card */
  .album-card {
    background:#0f0f0f;
    border-radius:12px;
    padding:10px;
    border:1px solid rgba(255,105,180,0.06);
    transition:transform .12s ease, box-shadow .12s ease;
  }
  .album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(255,45,179,0.06);
  }
  .album-thumb {
    width:100%;
    aspect-ratio:1/1;
    border-radius:8px;
    object-fit:cover;
    display:block;
    margin-bottom:8px;
  }
  
  /* Tracklist styling (center panel) */
  .tracklist-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.02));
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255,105,180,0.04);
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  }
  
  /* Track row */
  .track-row {
    display:flex;
    gap:12px;
    align-items:center;
    padding:12px 8px;
    border-radius:8px;
    transition:background .12s ease;
  }
  .track-row:hover { background: rgba(255,105,180,0.02); }
  
  .track-number {
    width:36px;
    text-align:center;
    color:#ffbfe6;
    font-weight:700;
  }
  .track-title { flex:1; font-weight:700; color:#fff; }
  .track-meta { color:#aaa; font-size:0.92rem; }
  
  /* Rate + playlist small controls */
  .track-actions {
    display:flex;
    gap:8px;
    align-items:center;
  }
  .btn-rate {
    background:linear-gradient(90deg,#ff69b4,#ffb3ff);
    border-radius:8px;
    color:#000;
    padding:6px 10px;
    font-weight:700;
    border:none;
    cursor:pointer;
  }
  .btn-add {
    background:#6a00ff;
    color:#fff;
    border-radius:8px;
    padding:6px 8px;
    border:none;
    cursor:pointer;
  }
  
  /* Right column - now playing */
  .right-side {
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  
  /* small neon headings used repeatedly */
  .panel-heading {
    color:var(--color-accent);
    font-weight:700;
    margin-bottom:6px;
    text-shadow:0 0 8px rgba(255,105,180,0.12);
  }