@font-face {
  font-family: "Playwrite GB S Local";
  src: url("./text fonts/Playwrite_GB_S/PlaywriteGBS-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 400;
}

@font-face {
  font-family: "Advercase Demo";
  src: url("./indieground-advercasefont-demo/Advercase-Font-Demo-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
}

:root {
  --record-size: 255px;
  --record-active-size: 290px;
  --bottom-actions-hover: #ff8a00;
  --spotify-black: #121212;
  --spotify-elevated: #181818;
  --spotify-elevated-hover: #282828;
  --focus-grey: #3a3a3a;
  --spotify-text: #ffffff;
  --spotify-muted: #b3b3b3;
  --record-black: #121212;
  --ink: var(--spotify-text);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(239, 235, 229, 0.94), transparent 42vw),
    linear-gradient(145deg, #efebe5 0%, #e6e0d7 48%, #dbd4ca 100%);
  background-size: auto, auto;
  color: var(--spotify-text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
}

.bottom-actions {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 24px;
  background: #25242b;
  height: 52px;
  transform: translateX(-50%) scale(0.9);
  transform-origin: center bottom;
}

.bottom-actions__button {
  display: inline-flex;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family:
    "Advercase Demo",
    serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 16.64px;
  letter-spacing: 0.32px;
  white-space: nowrap;
  appearance: none;
  transition: color 160ms ease;
}

.bottom-actions__button:first-child {
  padding: 8px 10px 8px 24px;
}

.bottom-actions__button:last-child {
  padding: 8px 24px 8px 10px;
}

.bottom-actions__icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: filter 160ms ease;
}

.bottom-actions__button:hover {
  color: var(--bottom-actions-hover);
}

.bottom-actions__button:hover .bottom-actions__icon {
  filter: brightness(0) saturate(100%) invert(56%) sepia(91%) saturate(1847%) hue-rotate(3deg) brightness(103%) contrast(104%);
}

.bottom-actions__divider {
  display: block;
  width: 34px;
  height: 34px;
}

.share-form-popup {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}

.share-form-popup.is-open {
  pointer-events: auto;
  visibility: visible;
}

.share-form-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 220ms ease;
}

.share-form-popup.is-open .share-form-popup__backdrop {
  opacity: 1;
}

.song-form-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(642px, calc(100vw - 32px));
  min-height: 680px;
  max-height: calc(100svh - 24px);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 43px 32px 32px;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  color: #111111;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.share-form-popup.is-open .song-form-shell {
  transform: translateY(0);
}

.song-form-main,
.song-form-header,
.song-form,
.field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.song-form-main {
  position: relative;
  gap: 20px;
}

.song-form-header {
  gap: 18px;
}

.song-form-header__icon {
  display: block;
  width: 47px;
  height: 47px;
}

.song-form-shell h1 {
  width: 387px;
  height: 68px;
  margin: 0;
  color: #000000;
  font-family: "Advercase Demo", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 49.92px;
  letter-spacing: -0.96px;
}

.song-form-close {
  position: absolute;
  top: 0;
  left: 533px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000000;
  font-family: "Advercase Demo", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 18.72px;
  letter-spacing: -0.36px;
  text-decoration: underline;
}

.song-form {
  width: 578px;
  gap: 24px;
}

.field {
  width: 100%;
  gap: 6px;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #d92d20;
}

.field__label {
  color: #414651;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.field__label em {
  color: #7f56d9;
  font-style: normal;
}

.song-form input,
.song-form textarea {
  width: 100%;
  border: 1px solid #d5d7da;
  border-radius: 8px;
  color: #717680;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  font-family: "Google Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.song-form input {
  height: 40px;
  padding: 8px 12px;
}

.song-form textarea {
  height: 152px;
  resize: none;
  padding: 12px 14px;
}

.field--textarea {
  min-height: 180px;
  margin-bottom: 36px;
}

.field__error {
  min-height: 16px;
  margin-top: -2px;
  color: #d92d20;
  font-size: 12px;
  line-height: 16px;
}

.textarea-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.textarea-resize {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 12px;
  height: 12px;
}

.submit-button {
  display: inline-flex;
  width: 193px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px 10px;
  border: 0;
  border-radius: 24px;
  background: #25242b;
  color: #ffffff;
  font-family: "Advercase Demo", serif;
  font-size: 14px;
  font-style: italic;
}

.submit-button img {
  width: 20px;
  height: 20px;
}

.title-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 12px;
  color: #9a9ca3;
  font-family:
    "Google Sans",
    Arial,
    sans-serif;
  transform: translate(-50%, -50%);
}

.title-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.title-art {
  position: relative;
  width: 401px;
  height: 256.367px;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: auto;
}

.title-art__image {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
}

.title-art__image--default {
  width: 401px;
  height: 256.367px;
  opacity: 1;
}

.title-art__image--hover {
  width: 322.339px;
  height: 222.513px;
  opacity: 0;
}

.title-art:hover .title-art__image--default {
  opacity: 0;
}

.title-art:hover .title-art__image--hover {
  opacity: 1;
}

.title-description {
  width: 360px;
  margin: 0;
  color: #505158;
  font-size: 17.4px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.0316px;
  text-align: center;
}

.drag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 24px;
  background: #ebebeb;
  color: #505158;
  font-size: 14.4px;
  font-weight: 400;
  line-height: 21.76px;
  letter-spacing: -0.0272px;
  text-align: center;
}

.drag-icon {
  display: block;
  width: 18px;
  height: 18px;
  animation: drag-icon-swing 3.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes drag-icon-swing {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }
}

#viewport {
  position: fixed;
  inset: 0;
  overflow: scroll;
  cursor: grab;
  scrollbar-width: none;
  touch-action: none;
  -ms-overflow-style: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(239, 235, 229, 0.94), transparent 42vw),
    linear-gradient(145deg, #efebe5 0%, #e6e0d7 48%, #dbd4ca 100%);
  background-size: auto, auto;
}

#viewport::-webkit-scrollbar {
  display: none;
}

#viewport.is-dragging {
  cursor: grabbing;
}

#world {
  position: relative;
  width: 200000px;
  height: 200000px;
}

#grid {
  position: absolute;
  inset: 0;
}

.vinyl {
  position: absolute;
  width: var(--record-size);
  height: var(--record-size);
  border-radius: 50%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transform-origin: center;
  transition:
    opacity 620ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: var(--entry-delay), 0s, 0s;
  box-shadow:
    0 8px 14px rgba(67, 40, 24, 0.09),
    0 3px 6px rgba(23, 18, 14, 0.08),
    0 1px 1px rgba(23, 18, 14, 0.09);
  overflow: visible;
}

.add-tile {
  position: absolute;
  width: 260px;
  height: 260px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff4ec;
  opacity: 0;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.86);
  transition:
    opacity 620ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.add-tile.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.add-tile__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 195px;
  height: 194px;
  transform: translate(-50%, -50%);
}

.add-tile__plus {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
}

.vinyl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 17% 52%, rgba(255, 255, 255, 0.08) 58%, transparent 72%),
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.13), transparent 13%),
    radial-gradient(circle at 58% 64%, transparent 0 54%, rgba(0, 0, 0, 0.22) 82%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 4;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 4.5%, #000 4.7%);
  mask-image: radial-gradient(circle at center, transparent 0 4.5%, #000 4.7%);
}

.vinyl.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vinyl.is-releasing {
  transition:
    opacity 620ms ease,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 840ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vinyl:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(calc(var(--record-active-size) / var(--record-size)));
  box-shadow:
    0 11px 18px rgba(67, 40, 24, 0.11),
    0 4px 8px rgba(23, 18, 14, 0.09),
    0 1px 1px rgba(23, 18, 14, 0.1);
}

.vinyl.is-selected {
  opacity: 1;
  transform: translate(-50%, -50%) scale(calc(var(--record-active-size) / var(--record-size)));
  box-shadow:
    0 8px 14px rgba(67, 40, 24, 0.09),
    0 3px 6px rgba(23, 18, 14, 0.08),
    0 1px 1px rgba(23, 18, 14, 0.09);
}

.vinyl.is-playing .vinyl__surface {
  animation: vinyl-spin 8s linear infinite;
}

.vinyl.is-playing .vinyl__ring {
  opacity: 0;
  transform: scale(1);
}

.vinyl:hover .vinyl__surface,
.vinyl.is-selected .vinyl__surface {
  filter: brightness(1.06) saturate(1.05);
}

.vinyl:focus-visible {
  outline: 4px solid var(--focus-grey);
  outline-offset: 8px;
}

.vinyl__ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(58, 58, 58, 0.86);
  box-shadow:
    0 0 0 5px rgba(58, 58, 58, 0.08),
    0 0 22px rgba(58, 58, 58, 0.22);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 260ms ease,
    transform 380ms ease;
  z-index: 0;
}

.vinyl__surface {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("./mockup.png") center / cover no-repeat;
  background-position: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 26px rgba(35, 20, 14, 0.16);
  transform-origin: center;
  transition: filter 280ms ease;
  overflow: hidden;
  z-index: 1;
}

.vinyl__skin {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    var(--skin-overlay, none),
    var(--skin-image, none),
    var(--skin-base, #0b0b0b);
  background-position: center;
  background-size: auto, 112% 112%, 106% 106%;
  clip-path: circle(49.7% at 50% 50%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 17.1%, #000 17.3% 100%);
  mask-image: radial-gradient(circle at center, transparent 0 17.1%, #000 17.3% 100%);
}

.vinyl__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.46), transparent 16% 53%, rgba(255, 255, 255, 0.2) 58%, transparent 76%),
    radial-gradient(circle at center, transparent 0 8%, rgba(255, 255, 255, 0.16) 8.5% 10%, transparent 10.5% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.17) 0 1px, rgba(0, 0, 0, 0.1) 1px 2px, transparent 2px 12px),
    conic-gradient(
      from 18deg,
      transparent 0 8%,
      rgba(255, 255, 255, 0.12) 9% 10%,
      transparent 11% 24%,
      rgba(255, 255, 255, 0.08) 25% 26%,
      transparent 27% 44%,
      rgba(0, 0, 0, 0.08) 45% 47%,
      transparent 48% 69%,
      rgba(255, 255, 255, 0.1) 70% 72%,
      transparent 73% 100%
    ),
    radial-gradient(circle at center, transparent 0 62%, rgba(0, 0, 0, 0.18) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 2;
}

.vinyl::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 22%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.8px),
    radial-gradient(circle at 13% 45%, rgba(0, 0, 0, 0.16) 0 1px, transparent 1.7px),
    radial-gradient(circle at 20% 88%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.7px),
    radial-gradient(circle at 29% 97%, rgba(0, 0, 0, 0.14) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 38% 4%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.7px),
    radial-gradient(circle at 49% 1%, rgba(0, 0, 0, 0.14) 0 1px, transparent 1.7px),
    radial-gradient(circle at 63% 97%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1.7px),
    radial-gradient(circle at 74% 96%, rgba(0, 0, 0, 0.16) 0 1px, transparent 1.7px),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.8px),
    radial-gradient(circle at 90% 28%, rgba(0, 0, 0, 0.14) 0 1px, transparent 1.7px),
    radial-gradient(circle at 96% 58%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.8px),
    conic-gradient(
      from 6deg,
      rgba(255, 255, 255, 0.28),
      transparent 8% 20%,
      rgba(0, 0, 0, 0.2) 22%,
      transparent 25% 41%,
      rgba(255, 255, 255, 0.22) 43%,
      transparent 46% 63%,
      rgba(0, 0, 0, 0.16) 66%,
      transparent 69% 84%,
      rgba(255, 255, 255, 0.26) 87%,
      transparent 90%
    );
  pointer-events: none;
  z-index: 5;
  -webkit-mask-image: radial-gradient(circle at center, transparent 0 94.8%, #000 95%);
  mask-image: radial-gradient(circle at center, transparent 0 94.8%, #000 95%);
}

.vinyl:hover,
.vinyl.is-selected,
.vinyl.is-playing {
  --vinyl-hole-color: #050505;
}

.vinyl__surface::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 57.888%;
  height: 57.888%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #101010 0 2.5%, transparent 2.8%),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 64%, rgba(38, 29, 19, 0.18) 0 0.9px, transparent 1.4px),
    repeating-linear-gradient(
      28deg,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(132deg, rgba(255, 255, 255, 0.3), transparent 31% 68%, rgba(0, 0, 0, 0.12)),
    var(--cover-image),
    #efe8d6;
  background-position: center;
  background-size: auto, auto, auto, auto, cover, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset 0 0 18px rgba(71, 52, 33, 0.14),
    0 1px 3px rgba(0, 0, 0, 0.14);
  filter: saturate(0.94) contrast(0.98);
  transform: translate(-50%, -50%);
  transition: filter 240ms ease;
  z-index: 1;
}

.vinyl:hover .vinyl__surface::after,
.vinyl.is-selected .vinyl__surface::after,
.vinyl.is-playing .vinyl__surface::after {
  background:
    radial-gradient(circle at center, #101010 0 2.5%, transparent 2.8%),
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 64%, rgba(38, 29, 19, 0.18) 0 0.9px, transparent 1.4px),
    repeating-linear-gradient(
      28deg,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 1px 4px
    ),
    linear-gradient(132deg, rgba(255, 255, 255, 0.3), transparent 31% 68%, rgba(0, 0, 0, 0.12)),
    var(--cover-image),
    #efe8d6;
  background-position: center;
  background-size: auto, auto, auto, auto, cover, auto;
  filter: saturate(0.96) contrast(0.99);
}

.vinyl__art {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6.4%;
  height: 6.4%;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    inset 0 0 2px rgba(0, 0, 0, 0.14);
  transform: translate(-50%, -50%);
  z-index: 4;
}

.vinyl__art::after {
  content: none;
}

.vinyl__caption {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 6;
  display: flex;
  width: max-content;
  max-width: 255px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #505158;
  font-family:
    "Google Sans",
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%) translateY(-4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.vinyl:hover .vinyl__caption,
.vinyl.is-selected .vinyl__caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vinyl__caption-title,
.vinyl__caption-name {
  font-weight: 500;
}

.vinyl__caption-message {
  display: none;
  max-width: 250px;
  overflow: hidden;
  margin-top: 6px;
  color: #505158;
  font-family: "Playwrite GB S Local", cursive;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vinyl__caption-name {
  display: none;
}

.vinyl__caption-message::before,
.vinyl__caption-message::after {
  content: '"';
}

.vinyl__caption-name::before {
  content: "- ";
}

.vinyl.is-selected .vinyl__caption-message {
  display: -webkit-box;
}

.vinyl.is-selected .vinyl__caption-name {
  display: block;
}

.spotify-widget {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 2px;
  overflow: hidden;
  opacity: 0.01;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.spotify-widget iframe {
  width: 2px;
  height: 2px;
  border: 0;
}

@keyframes vinyl-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {

  /* ---- Vinyl records: smaller on mobile so more are visible ---- */
  :root {
    --record-size: 185px;
    --record-active-size: 215px;
  }

  /* ---- Bottom actions bar ---- */
  .bottom-actions {
    bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    transform: translateX(-50%);
    height: 50px;
    padding: 3px;
    gap: 2px;
  }

  .bottom-actions__button {
    font-size: 14px;
    gap: 7px;
  }

  .bottom-actions__button:first-child {
    padding: 8px 8px 8px 16px;
  }

  .bottom-actions__button:last-child {
    padding: 8px 16px 8px 8px;
  }

  .bottom-actions__icon {
    width: 20px;
    height: 20px;
  }

  /* ---- Share form — full-width bottom sheet ---- */
  .share-form-popup {
    align-items: flex-end;
  }

  .song-form-shell {
    width: 100%;
    min-height: auto;
    max-height: 92svh;
    border-radius: 20px 20px 0 0;
    padding: 28px 20px 0;
    padding-bottom: max(28px, calc(env(safe-area-inset-bottom, 0px) + 20px));
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .song-form-main {
    width: 100%;
    gap: 20px;
  }

  .song-form-header {
    gap: 14px;
  }

  .song-form-header__icon {
    width: 38px;
    height: 38px;
  }

  .song-form-shell h1 {
    width: 100%;
    height: auto;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .song-form-close {
    left: auto;
    right: 0;
    font-size: 16px;
  }

  .song-form {
    width: 100%;
    gap: 18px;
    margin-top: 4px;
  }

  .song-form input {
    height: 44px;
    font-size: 16px; /* prevents iOS zoom-on-focus */
  }

  .song-form textarea {
    font-size: 16px; /* prevents iOS zoom-on-focus */
  }

  .field--textarea {
    min-height: auto;
    margin-bottom: 0;
  }

  .submit-button {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 14px;
    margin-top: 24px;
  }

  /* ---- Title overlay ---- */
  .title-overlay {
    width: 100%;
    padding: 16px 16px 0;
    gap: 18px;
  }

  .title-overlay__content {
    width: 100%;
    gap: 16px;
  }

  .title-art {
    width: min(300px, 88vw);
    height: auto;
    aspect-ratio: 401 / 256.367;
  }

  .title-art__image--default {
    width: 100%;
    height: 100%;
  }

  .title-art__image--hover {
    width: min(240px, 70vw);
    height: auto;
  }

  .title-description {
    width: min(340px, 90vw);
    font-size: 15px;
    line-height: 1.6;
  }

  .drag-pill {
    font-size: 13px;
    padding: 5px 10px;
  }

  /* ---- Vinyl caption ---- */
  .vinyl__caption {
    max-width: min(255px, 82vw);
    font-size: 13px;
  }

  /* ---- Add tile ---- */
  .add-tile {
    width: 200px;
    height: 200px;
  }
}
