:root{
    --bg:#060606;
    --card-bg: rgba(10,10,10,0.55);
    --accent: rgba(255,255,255,0.95);
    --overlay: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    --radius: 12px;
    --maxHeight: 55vh;
  }
  
  html,body{
    height:100%;
    margin:0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: #fff;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  html{
    padding-left: 15px;
    padding-right: 15px;
  }
  header{
    text-align:center;
    padding:48px 16px 24px;
  }
  header h1{
    margin:0;
    font-family: "Georgia", serif;
    font-weight:700;
    font-size: clamp(34px, 6vw, 64px);
    letter-spacing: -1px;
    color: var(--accent);
  }
  
  /* Chaque section prend toute la largeur de la page */
  .artist-section{
    position:relative;
    width:100%;
    min-height: 36vh;
    max-height: var(--maxHeight);
    display:flex;
    align-items:center;
    box-sizing:border-box;
    padding: 56px 6vw;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
  }
  
  /* Overlay sombre pour lisibilité */
  .artist-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
    z-index:0;
    border-radius:0;
  }
  
  .card {
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:space-between; /* texte à gauche, boutons à droite */
    width:100%;
    gap:24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    padding:28px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
  }

  
  .text{
    flex:1;              /* prend toute la place dispo */
    max-width:85%;
  }

  .controls{
    display:flex;
    gap:16px;            /* espace entre les deux boutons */
    justify-content:flex-end;
    align-items:center;
  }
  
  .artist-name{
    font-family: "Georgia", serif;
    font-size: clamp(26px, 4vw, 42px);
    margin:0 0 10px 0;
    color: var(--accent);
  }
  .artist-desc{
    margin:0;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height:1.45;
    color: rgba(255,255,255,0.92);
    opacity:0.95;
  }
  
  .play-btn, .next-btn{
    flex: 0 0 72px;
    height:72px;
    display:inline-grid;
    place-items:center;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    width:72px;
    cursor:pointer;
    transition: transform .18s ease, box-shadow .18s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  }
  .play-btn:hover, .next-btn:hover{ transform: translateY(-4px); }
  .play-btn svg{ width:34px; height:34px; display:block; }
  
  .next-btn {
    width: 60px;
    height: 60px;
  }
  


  @media (max-width:900px){
    .card{ flex-direction:column; align-items:flex-start; padding:20px; gap:16px; }
    .text{ max-width:100%; }
    .play-btn{ align-self:center; margin-left:auto; }
    .artist-section{ padding:40px 6vw; }
  }
  
  .spacer{ height:28px; background:transparent; }
  