:root {
    --bg: #FDF4E5;
    --surface: #ffffff;
    --primary: #545E68;
    --primary-light: #636c76;
    --on-primary: #ffffff;
    --outline: rgba(84, 94, 104, 0.2);
    --text: #545E68;
    --muted: #777f88;
    --radius: 12px;
    --gap: 18px;
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --blue: #545E68;
    --yellow: #9F7A4E;
    --cream: #FDF4E5;
    --red: #853D3E;
    --green: #606C59;
    --brown: #a26e47;
  }

  * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  html, body {
    background: #FDF4E5;
    font-family: Arial, Helvetica, sans-serif;
  }

  /* === Layout === */
  body {
    border: none;
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    border-radius: 24px;
    overflow-x: hidden;
    max-width: 430px;
    margin: 0 auto;
    background: none;
    min-height: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .container {
    max-width: 430px;
    margin: auto;
    padding: var(--gap);
    padding-top: var(--gap);
    background: #FAF5EC;
  }

  /* === Hero Section === */
  .hero {
    text-align: center;
    margin-bottom: var(--gap);
    margin-top: calc(-1 * var(--gap));
  }
  .artist-pic {
    width: calc(100% + 2 * var(--gap));
    margin-left: calc(-1 * var(--gap));
    margin-right: calc(-1 * var(--gap));
    margin-top: 0;
    display: block;
    object-fit: cover;
    height: auto;
    border-radius: 24px 24px 0 0;
    background: var(--surface);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    margin-bottom: 20px;
  }

  h1 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: "Times New Roman", Times, serif;
  }
  h2, h3, .subtitle {
    font-family: "Times New Roman", Times, serif;
  }
  /* Weights: h2 extra-bold, h3 semi-bold, subtitle medium */
  h2 { font-weight: 800; }
  h3 { font-weight: 600; }
  .subtitle { font-weight: 500; }

  p {
    margin: 12px 0 0;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* === Form === */
  .form {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .form-group {
    margin-bottom: var(--gap);
  }

  .form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--blue);
    font-weight: 500;
  }

  input,
  textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(84, 94, 104, 0.1);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: rgba(255, 255, 255, 0.7);
  }

  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--outline);
  }

  input::placeholder,
  textarea::placeholder {
    text-align: left;
    color: var(--muted);
    opacity: 0.6;
  }

  /* === Buttons === */
  .btn {
    width: 100%;
    padding: 0;
    font-size: 1rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
    min-height: 60px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
  }

  /* Section spacing utility */
  .section-spacing { margin-top: calc(var(--gap) * 1.5); margin-bottom: calc(var(--gap) * 1.5); }

  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.1);
  }

  .btn:active {
    transform: translateY(0);
  }

  .btn-primary {
    background: linear-gradient(to bottom, var(--green), #546049);
    color: var(--on-primary);
    padding: 0;
    box-shadow: 0 2px 8px rgba(96, 108, 89, 0.3);
    justify-content: center;
    text-align: center;
    font-weight: 600;
  }

  .btn-primary:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 89, 0.4);
  }

  .btn-primary .btn-icon {
    filter: brightness(0) invert(1);
    margin-left: 8px;
  }

  .btn-outline {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    border: 1px solid rgba(84, 94, 104, 0.1);
    box-shadow: 0 2px 10px rgba(84, 94, 104, 0.05);
    justify-content: center;
    font-weight: 600;
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.15);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
  }

  /* === Form Notes & Consent === */
  .form-note {
    text-align: center;
    margin: 8px 0 0 0;
    font-size: 0.97rem;
    color: var(--muted);
  }

  .form-note.consent-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 0 0;
    font-size: 1rem;
    color: var(--text);
  }

  .form-note.consent-group input[type="checkbox"] {
    accent-color: var(--green);
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
  }

  .form-note.consent-group label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    margin: 0;
    cursor: pointer;
  }

  /* === Actions === */
  .actions {
    display: flex;
    flex-direction: column !important;
    gap: var(--gap);
    margin-bottom: var(--gap);
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 600;
    text-decoration: none;
  }

  .btn-patreon {
    background: linear-gradient(to bottom, var(--red), #753435);
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(133, 61, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-patreon:hover {
    background: linear-gradient(to bottom, #954546, #853d3e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(133, 61, 62, 0.4);
    color: var(--on-primary);
  }

  .btn-icon {
    width: 22px;
    height: 22px;
    margin-left: 6px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .btn-presave {
    background: linear-gradient(to bottom, var(--yellow), var(--brown)) !important;
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(159, 122, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-presave:hover {
    background: linear-gradient(to bottom, #b08a59, #b27b50) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 122, 78, 0.4);
    color: var(--on-primary) !important;
  }

  .btn-presave .btn-icon {
    width: 22px;
    height: 22px;
    margin-left: 4px;
    filter: brightness(0) invert(1);
  }

  /* Green CTA for Latest Release */
  .btn-green {
    background: linear-gradient(to bottom, var(--green), #546049) !important;
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(96, 108, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
  }

  .btn-green:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 108, 89, 0.4);
    color: var(--on-primary) !important;
  }

  /* --- Support Modal & Grid (shared styles) --- */
  .modal.hidden { display: none !important; }
  .modal { 
    position: fixed; 
    inset: 0; 
    z-index: 9999; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    scroll-behavior: smooth;
  }
  .modal-backdrop { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,.6); 
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .modal-content { 
    position: relative; 
    width: min(380px, calc(100% - 32px)); 
    background: var(--surface); 
    border-radius: var(--radius); 
    padding: 24px 20px 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,.3), 0 8px 16px rgba(0,0,0,.15);
    transform: scale(0.95);
    transition: transform 0.2s ease-out;
    margin: 0 auto;
  }
  .modal:not(.hidden) .modal-content {
    transform: scale(1);
  }
  .modal-close { 
    width: 100%; 
    margin-top: 16px; 
    border: 1px solid rgba(84,94,104,.25); 
    background: rgba(255,255,255,.9); 
    color: var(--text); 
    padding: 12px 16px; 
    border-radius: var(--radius); 
    cursor: pointer; 
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  .modal-close:hover {
    background: rgba(255,255,255,1);
    border-color: rgba(84,94,104,.4);
  }
  .support-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 16px; 
    margin-bottom: 8px;
    justify-items: center;
  }

  @media (max-width: 480px) {
    .support-grid {
      gap: 12px;
      padding: 0 4px;
    }
    .modal-content {
      width: min(380px, calc(100% - 24px));
      padding: 20px 16px 16px;
    }
  }
  .support-tile { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    aspect-ratio: 1/1; 
    min-height: 64px;
    border-radius: 12px; 
    cursor: pointer; 
    text-decoration: none; 
    border: 1px solid rgba(84,94,104,.15);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
  }
  .support-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
  }
  .support-icon { 
    width: 32px; 
    height: 32px; 
    filter: brightness(0) invert(1); 
    transition: transform 0.2s ease;
  }
  .support-tile:hover .support-icon {
    transform: scale(1.1);
  }
  .tile-blue { background: linear-gradient(to bottom, var(--blue), #475058); }
  .tile-red { background: linear-gradient(to bottom, var(--red), #753435); }
  .tile-green { background: linear-gradient(to bottom, var(--green), #546049); }
  .tile-yellow { background: linear-gradient(to bottom, var(--yellow), #b27b50); }
  .tile-brown { background: linear-gradient(to bottom, var(--brown), #7f5533); }
  .tile-cream { background: linear-gradient(to bottom, var(--cream), #f2e9dc); color:#222; }

  /* === Setlist === */
  .setlist {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: var(--gap);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  #setlist-container {
    margin-top: var(--gap);
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .loading {
    text-align: center;
    color: var(--muted);
    margin-bottom: var(--gap);
  }

  .setlist h2 {
    margin: 0 0 var(--gap) 0;
    font-size: 1.4rem;
    text-align: center;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: 0.3px;
  }

  .setlist h3 {
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--gap) 0 calc(var(--gap) * 0.75) 0;
  }

  #setlist {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Times New Roman", Times, serif;
  }

  #setlist li {
    cursor: pointer;
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.4;
    border-radius: 4px;
    margin-bottom: 6px;
    transition: background var(--transition), color var(--transition);
  }

  .setlist li:hover {
    background: rgba(0,0,0,0.05);
  }

  .setlist li.active {
    background: linear-gradient(to bottom, var(--green), #546049);
    color: var(--on-primary);
  }

  /* Ensure yellow-themed active songs render with white text as requested */
  .setlist li.active.yellow, .setlist li.active[data-color="yellow"] {
    color: #fff !important;
  }

  .lyrics {
    margin: 4px 0 var(--gap);
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    white-space: pre-line;
    font-style: normal;
    line-height: 1.7;
    font-size: 1.04em;
    margin-bottom: 1.5em;
    color: var(--text);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .lyrics p {
    margin: 0 0 1em 0;
    white-space: pre-line;
  }

  /* === Social & Music Links === */
  .music-links,
  .social-icons {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    margin-top: var(--gap);
  }

  .music-links img,
  .social-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: inline-block;
    transition: transform 0.2s, filter 0.2s;
  }

  .music-links img:hover,
  .social-icons img:hover {
    transform: scale(1.08);
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  }

  .playlist-actions {
    display: flex;
    gap: var(--gap);
    justify-content: center;
    margin-top: var(--gap);
  }

  .playlist-actions .btn {
    height: 50px;
    width: 50px;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .playlist-actions .btn-icon {
    filter: none !important;
    margin: 0;
    width: 32px;
    height: 32px;
  }

  /* === Footer === */
  .footer {
    text-align: center;
    margin-top: var(--gap * 2);
  }

  .hidden {
    display: none !important;
  }

  /* === Post Signup === */
  .post-signup {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .post-signup .actions {
    gap: var(--gap);
    margin-bottom: var(--gap);
  }
  /* Make "You're on the list!" yellow */
  .post-signup .on-list-message {
    color: var(--yellow);
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  }
  .post-signup h2 { font-family: "Times New Roman", Times, serif; }

  /* === Feedback Form === */
  .feedback-form {
    margin-top: var(--gap);
    background: var(--surface);
    border-radius: var (--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: var(--gap);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .feedback-label {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
    text-align: center;
  }

  .feedback-form textarea {
    resize: vertical;
    min-height: 60px;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    background: #fafbfc;
    color: var(--text);
    transition: border-color var(--transition);
  }

  .feedback-form textarea:focus {
    border-color: var(--primary);
    outline: none;
  }

  .feedback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  font-weight: 600; /* match other buttons */
  background: linear-gradient(to bottom, var(--green), #546049);
    color: var(--on-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.3);
  font-family: Arial, Helvetica, sans-serif; /* match .btn font */
  }

  .feedback-btn:hover {
    background: linear-gradient(to bottom, #6b7a64, #5e6a56);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.4);
    color: var(--on-primary);
  }

  .feedback-btn .btn-icon {
    filter: brightness(0) invert(1);
  }

  .feedback-form,
  .feedback-form label,
  .feedback-form textarea {
    font-family: inherit;
    color: var(--text);
  }

  .required {
    color: #ff3b30;
    margin-left: -2px;
  }

  /* === Background Blur === */
  .background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at top right, rgba(159, 122, 78, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  }

  /* === Artists Section === */
  .artists-section {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--gap);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
    margin-top: var(--gap);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .artists-section h3 {
    margin: 0 0 var(--gap) 0;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(to right, var(--blue), var(--brown));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
  }

  .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--gap);
    justify-items: center;
  }

  .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .artist-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(84, 94, 104, 0.15);
    transition: transform var(--transition);
  }

  .artist-thumb:hover {
    transform: scale(1.05);
  }

  .artist-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
  }

  .artist-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.1);
  }

  .artist-instagram:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 94, 104, 0.2);
  }

  .instagram-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  /* === Setlist Button === */
  #show-setlist {
    background: linear-gradient(to bottom, var(--blue), #475058) !important;
    color: var(--on-primary) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(84, 94, 104, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  #show-setlist:hover {
    background: linear-gradient(to bottom, #606a74, #535d67) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(84, 94, 104, 0.4);
    color: var(--on-primary) !important;
  }

  .emoji-white {
    filter: brightness(0) invert(1);
    display: inline-block;
  }

  /* === Mobile Optimization === */
  @media (max-width: 600px) {
    html, body {
      font-size: 15px;
      width: 100vw;
      max-width: 100vw;
      overflow-x: hidden;
      /* Prevent unwanted zoom on iOS input focus */
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      /* Prevent tap highlight on Android */
      -webkit-tap-highlight-color: transparent;
      /* Prevent double-tap zoom */
      touch-action: manipulation;
    }
    body {
      border-radius: 24px;
      max-width: 430px;
      min-height: 100vh;
      margin: 0 auto;
      box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
      padding: 0;
      background: none;
      /* Add extra space at the bottom and color it #FAF5EC */
      padding-bottom: 56px;
      position: relative;
    }
    body::after {
      content: "";
      display: block;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 56px;
      background: #FAF5EC;
      z-index: 1;
      pointer-events: none;
    }
    .container {
      max-width: 430px;
      width: 100%;
      padding: var(--gap);
      padding-top: var(--gap);
      margin: 0 auto;
      box-sizing: border-box;
      background: #FAF5EC;
      position: relative;
      z-index: 2;
    }
    .hero {
      margin-bottom: var(--gap);
      margin-top: calc(-1 * var(--gap));
    }
    .artist-pic {
      width: calc(100% + 2 * var(--gap));
      max-width: unset;
      margin-left: calc(-1 * var(--gap));
      margin-right: calc(-1 * var(--gap));
      border-radius: 24px 24px 0 0;
      margin-bottom: 20px;
    }
    .form,
    .post-signup,
    .artists-section,
    .setlist {
      border-radius: var(--radius);
      padding: var(--gap);
      box-shadow: 0 8px 32px rgba(84, 94, 104, 0.08), 0 1px 4px rgba(84, 94, 104, 0.05);
      /* Prevent background bleed on Android/Safari */
      background-clip: padding-box;
    }
    .form-group {
      margin-bottom: var(--gap);
    }
    .btn,
    .btn-primary,
    .btn-outline,
    .btn-patreon,
    .btn-presave {
      min-height: 60px;
      font-size: 1rem;
      padding: 0;
      /* Improve tap target for mobile */
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    .btn-icon {
      width: 22px;
      height: 22px;
      margin-left: 6px;
    }
    .feedback-form {
      padding: var(--gap);
    }
    .setlist li {
      padding: 12px;
      font-size: 1em;
    }
    .lyrics {
      padding: 12px;
      font-size: 1.04em;
    }
    .artists-grid {
      gap: var(--gap);
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      justify-items: center;
    }
    .artist-card {
      max-width: 100px;
      width: 100%;
    }
    .artist-thumb {
      width: 80px;
      height: 80px;
    }
    .artist-name {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 4px;
    }
    .footer {
      margin-top: calc(var(--gap) * 2);
    }
    .music-links img,
    .social-icons img {
      width: 40px;
      height: 40px;
    }
    .playlist-actions .btn {
      height: 50px;
      width: 50px;
      padding: 0 var(--gap);
    }
    .playlist-actions .btn-icon {
      width: 32px;
      height: 32px;
    }
    /* Make consent label fit in one line, shrink font if needed */
    .form-note.consent-group label {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
      display: block;
      font-size: 0.85rem;
      letter-spacing: -0.01em;
    }
  }