:root {
  color-scheme: dark;
  --bg: #040404;
  --panel: rgba(17, 14, 14, 0.78);
  --panel-solid: #121010;
  --panel-soft: rgba(42, 22, 24, 0.62);
  --line: rgba(255, 255, 255, 0.09);
  --line-red: rgba(214, 24, 38, 0.32);
  --text: #fff7f7;
  --muted: #aa9a9a;
  --muted-2: #766b6b;
  --red: #8e1019;
  --red-hot: #ef2331;
  --red-deep: #260507;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.7);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(142, 16, 25, 0.48), transparent 25rem),
    radial-gradient(circle at 16% 92%, rgba(239, 35, 49, 0.16), transparent 22rem),
    #030303;
  color: var(--text);
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.phone-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  overflow: hidden;
  padding: 16px 15px 26px;
  background:
    linear-gradient(180deg, rgba(10, 7, 7, 0.86), rgba(4, 4, 4, 0.99)),
    var(--bg);
  box-shadow: var(--shadow);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(52px);
  animation: drift 13s ease-in-out infinite alternate;
}

.ambient-a {
  top: 54px;
  left: -94px;
  width: 230px;
  height: 260px;
  background: rgba(255, 255, 255, 0.1);
}

.ambient-b {
  right: -132px;
  bottom: 118px;
  width: 300px;
  height: 300px;
  background: rgba(239, 35, 49, 0.18);
  animation-delay: -5s;
}

@keyframes drift {
  from {
    transform: translate3d(-10px, 18px, 0) scale(0.96);
  }

  to {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

.app-header,
.drawer,
.hero-card,
.social-dock,
.mini-player,
.tab-bar,
.view,
.toast {
  position: relative;
  z-index: 1;
}

.drawer {
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: -2px 0 14px;
  padding: 10px;
  border: 1px solid var(--line-red);
  border-radius: 22px;
  background: rgba(12, 8, 8, 0.92);
  box-shadow:
    0 0 34px rgba(239, 35, 49, 0.16),
    0 22px 54px rgba(0, 0, 0, 0.42);
  animation: viewIn 0.45s ease both;
}

.drawer.open {
  display: grid;
}

.drawer-link {
  display: flex;
  min-height: 42px;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 0 13px;
  font-weight: 850;
  text-align: left;
  transition:
    background 0.45s ease,
    transform 0.45s ease,
    color 0.45s ease;
}

.drawer-link:hover,
.drawer-link:focus-visible {
  background: rgba(239, 35, 49, 0.16);
  color: #ff8087;
  transform: translateX(3px);
}

.app-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 48px;
  margin-bottom: 14px;
}

.logo {
  justify-self: center;
  font-size: 1.42rem;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(239, 35, 49, 0.82),
    0 0 54px rgba(142, 16, 25, 0.75);
  animation: logoPulse 2.8s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.82;
    text-shadow:
      0 0 12px rgba(239, 35, 49, 0.52),
      0 0 34px rgba(142, 16, 25, 0.45);
  }

  45% {
    opacity: 1;
    text-shadow:
      0 0 22px rgba(255, 247, 247, 0.95),
      0 0 38px rgba(239, 35, 49, 0.82),
      0 0 82px rgba(142, 16, 25, 0.82);
  }

  58% {
    opacity: 0.72;
  }

  66% {
    opacity: 1;
  }
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 15, 15, 0.7);
  box-shadow: inset 0 0 24px rgba(239, 35, 49, 0.08);
  transition:
    transform 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease,
    background 0.55s ease;
}

.icon-button.ghost {
  background: rgba(255, 255, 255, 0.035);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: rgba(239, 35, 49, 0.74);
  box-shadow: 0 0 28px rgba(239, 35, 49, 0.22);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bell-dot {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red-hot);
  box-shadow: 0 0 18px var(--red-hot);
}

.hero-card {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(239, 35, 49, 0.2);
  border-radius: 32px;
  background: var(--panel-solid);
  box-shadow:
    0 0 60px rgba(142, 16, 25, 0.24),
    0 34px 90px rgba(0, 0, 0, 0.62);
}

.hero-card img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-card img {
  object-fit: cover;
  opacity: 0.86;
  animation: slowZoom 16s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-8px);
  }
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28) 42%, #040404 100%),
    radial-gradient(circle at 50% 55%, transparent 0, rgba(142, 16, 25, 0.5) 100%);
}

.hero-content {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
}

.live-pill {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: #ff858c;
  padding: 0 11px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin: 14px 0 8px;
  font-size: clamp(4.5rem, 23vw, 6.9rem);
  line-height: 0.82;
  text-shadow:
    0 0 18px rgba(239, 35, 49, 0.76),
    0 0 86px rgba(142, 16, 25, 0.74);
}

h2 {
  margin-bottom: 0;
  font-size: 1.14rem;
}

.hero-content p {
  max-width: 18rem;
  margin-bottom: 18px;
  color: #ded1d1;
  line-height: 1.45;
}

.hero-actions,
.social-dock,
.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-cta,
.secondary-cta,
.social-link,
.text-button,
.link-button,
.tab,
.track-action {
  transition:
    transform 0.5s ease,
    background 0.6s ease,
    box-shadow 0.6s ease,
    color 0.5s ease,
    border-color 0.6s ease;
}

.primary-cta,
.secondary-cta {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
}

.primary-cta {
  background: linear-gradient(145deg, #ff2b38, #871019);
  color: #170506;
  box-shadow: 0 0 34px rgba(239, 35, 49, 0.42);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(0, 0, 0, 0.42);
}

.play-dot {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
}

.social-dock {
  margin: 12px 2px 0;
}

.social-link {
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 13px 15px;
  background: rgba(18, 14, 14, 0.72);
}

.social-link span {
  color: var(--muted);
  font-size: 0.78rem;
}

.social-link strong {
  margin-top: 4px;
  font-size: 1.02rem;
}

.youtube {
  border-color: rgba(239, 35, 49, 0.34);
  box-shadow: inset 0 0 34px rgba(239, 35, 49, 0.12);
}

.tiktok {
  background: rgba(255, 255, 255, 0.045);
}

.mini-player {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 13px 2px 18px;
  padding: 12px;
  border: 1px solid rgba(239, 35, 49, 0.32);
  border-radius: 26px;
  background: rgba(12, 8, 8, 0.84);
  box-shadow:
    0 0 36px rgba(239, 35, 49, 0.18),
    0 26px 56px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px);
}

#audioSource {
  display: none;
}

.player-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clip-button {
  min-height: 38px;
  border: 1px solid rgba(239, 35, 49, 0.36);
  border-radius: 999px;
  background: rgba(239, 35, 49, 0.15);
  color: #ff747b;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
}

.clip-button:hover,
.clip-button:focus-visible {
  background: rgba(239, 35, 49, 0.23);
  box-shadow: 0 0 22px rgba(239, 35, 49, 0.24);
  transform: translateY(-2px);
}

.cover-button {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(145deg, #f02432, #270407 62%, #050505);
  box-shadow: 0 0 30px rgba(239, 35, 49, 0.4);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.cover-button:hover,
.cover-button:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 0 42px rgba(239, 35, 49, 0.52);
}

.cover-button.loading .play-shape {
  width: 20px;
  height: 20px;
  margin-left: 0;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-top-color: #fff7f7;
  border-radius: 999px;
  animation: playerSpin 0.8s linear infinite;
}

@keyframes playerSpin {
  to {
    transform: rotate(360deg);
  }
}

.play-shape {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff7f7;
  transition: all 0.35s ease;
}

.cover-button.playing .play-shape {
  width: 14px;
  height: 18px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 5px solid #fff7f7;
  border-right: 5px solid #fff7f7;
}

.player-copy {
  min-width: 0;
}

.player-copy span,
.player-copy strong {
  display: block;
}

.player-copy span {
  overflow: hidden;
  color: var(--text);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-copy strong {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.progress-line {
  height: 4px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-line span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c0b13, var(--red-hot));
  box-shadow: 0 0 22px rgba(239, 35, 49, 0.72);
  transition: width 0.9s ease;
}

.tab-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 8, 8, 0.78);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.025);
}

.tab {
  min-height: 38px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 820;
}

.tab.active {
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  color: var(--text);
  box-shadow: 0 0 24px rgba(239, 35, 49, 0.24);
}

.view {
  display: none;
  animation: viewIn 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.view.active {
  display: block;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.overline,
.release-kicker {
  color: #ff727a;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.overline {
  margin: 0 0 7px;
}

.text-button {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 35, 49, 0.12);
  color: #ff747b;
  padding: 0 13px;
  font-weight: 850;
}

.text-button:hover,
.text-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(239, 35, 49, 0.24);
}

.release-card,
.story-card,
.story-points article,
.track-item,
.clip-card,
.mood-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(28, 20, 20, 0.82), rgba(11, 8, 8, 0.9));
  box-shadow: inset 0 0 30px rgba(142, 16, 25, 0.08);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
}

.release-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
}

.release-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.story-card {
  padding: 20px;
}

.story-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.32;
}

.story-card p {
  margin: 14px 0 0;
  color: #d3c5c5;
  font-size: 0.95rem;
  line-height: 1.62;
}

.story-card p:last-child {
  color: var(--text);
  text-shadow: 0 0 18px rgba(239, 35, 49, 0.24);
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.story-points article {
  min-height: 92px;
  padding: 14px;
}

.story-points span {
  color: #ff727a;
  font-size: 0.78rem;
  font-weight: 950;
}

.story-points p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.34;
}

.eq-bars {
  display: flex;
  height: 62px;
  align-items: end;
  justify-content: center;
  gap: 7px;
}

.eq-bars span {
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5f68, #780b12);
  box-shadow: 0 0 18px rgba(239, 35, 49, 0.4);
  animation: equalize 1.25s ease-in-out infinite alternate;
}

.eq-bars span:nth-child(1) {
  height: 32px;
}

.eq-bars span:nth-child(2) {
  height: 58px;
  animation-delay: -0.4s;
}

.eq-bars span:nth-child(3) {
  height: 42px;
  animation-delay: -0.8s;
}

@keyframes equalize {
  to {
    height: 18px;
    opacity: 0.64;
  }
}

.mood-grid {
  margin-top: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.mood-grid article {
  min-height: 86px;
  padding: 14px;
}

.mood-grid span {
  display: block;
  font-size: 1.18rem;
  font-weight: 920;
}

.mood-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.track-list,
.clip-list {
  display: grid;
  gap: 12px;
}

.youtube-panel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid rgba(239, 35, 49, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 49, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(28, 20, 20, 0.86), rgba(11, 8, 8, 0.92));
  box-shadow: 0 0 30px rgba(239, 35, 49, 0.12);
}

.youtube-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #ff2b38, #7a0b12);
  color: #190506;
  font-weight: 950;
  box-shadow: 0 0 26px rgba(239, 35, 49, 0.34);
}

.youtube-panel strong {
  display: block;
  font-size: 1.02rem;
}

.youtube-panel p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.youtube-connect-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 49, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(28, 20, 20, 0.86), rgba(11, 8, 8, 0.92));
  box-shadow: inset 0 0 32px rgba(142, 16, 25, 0.08);
}

.youtube-connect-card {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.youtube-connect-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
}

.youtube-connect-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.youtube-connect-card .primary-cta {
  color: #190506;
}

.youtube-actions {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.track-item,
.clip-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 11px;
  transition:
    transform 0.5s ease,
    border-color 0.5s ease,
    background 0.5s ease;
}

a.clip-card {
  color: inherit;
}

.track-item.active {
  border-color: rgba(239, 35, 49, 0.46);
  background: linear-gradient(180deg, rgba(47, 20, 23, 0.92), rgba(15, 8, 8, 0.95));
}

.track-index,
.clip-thumb {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #650911, #140506 70%);
  color: #ff8b91;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(142, 16, 25, 0.28);
}

.track-meta {
  min-width: 0;
}

.track-meta strong,
.clip-card strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-meta span,
.clip-card p {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-action {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: rgba(239, 35, 49, 0.14);
  color: #ff777e;
}

.track-action svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.track-action:hover,
.track-action:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(239, 35, 49, 0.24);
}

.clip-card {
  grid-template-columns: 92px minmax(0, 1fr);
}

.clip-thumb {
  width: 92px;
  height: 62px;
  border-radius: 20px;
}

.clip-thumb.alt {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #1b0c0d, #7b0c14);
}

.clip-thumb.dim {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(145deg, #2d1012, #080606);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 390px;
  margin: auto;
  padding: 14px 16px;
  border: 1px solid rgba(239, 35, 49, 0.42);
  border-radius: 18px;
  background: rgba(15, 8, 9, 0.94);
  color: var(--text);
  box-shadow: 0 0 36px rgba(239, 35, 49, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.clip-dialog {
  width: min(430px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.clip-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.clip-modal {
  overflow: hidden;
  border: 1px solid rgba(239, 35, 49, 0.36);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(239, 35, 49, 0.18), transparent 42%),
    #080606;
  box-shadow:
    0 0 44px rgba(239, 35, 49, 0.26),
    0 32px 80px rgba(0, 0, 0, 0.74);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.dialog-head h2 {
  font-size: 1.02rem;
}

.clip-modal video {
  display: block;
  width: 100%;
  max-height: 70vh;
  background: #000;
}

@media (min-width: 560px) {
  body {
    padding: 28px;
  }

  .phone-shell {
    min-height: 900px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
  }
}

@media (max-width: 370px) {
  .phone-shell {
    padding-inline: 12px;
  }

  .hero-card {
    min-height: 382px;
  }

  .tab {
    font-size: 0.7rem;
  }

  .mood-grid {
    grid-template-columns: 1fr;
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .mini-player {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .player-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}
