:root {
  color-scheme: dark;
  --bg: #05050a;
  --bg-soft: #0b0d14;
  --surface: rgba(14, 16, 26, 0.78);
  --surface-strong: #111421;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f8fb;
  --muted: #a8acc2;
  --muted-soft: #7d8197;
  --green: #1db954;
  --green-soft: rgba(29, 185, 84, 0.18);
  --purple: #8a5cff;
  --purple-soft: rgba(138, 92, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content-width: 1180px;
  --font-display: "Museo Sans", "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Museo Sans", "Montserrat", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(29, 185, 84, 0.15), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(138, 92, 255, 0.2), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(29, 185, 84, 0.08), transparent 28%),
    linear-gradient(180deg, #05050a 0%, #070811 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  opacity: 0.4;
}

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

button,
summary {
  font: inherit;
}

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.ambient {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.95;
}

.ambient--green {
  top: 6%;
  left: -8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.24), transparent 70%);
}

.ambient--purple {
  top: 9%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(138, 92, 255, 0.26), transparent 70%);
}

.ambient--grid {
  bottom: -8%;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.09), transparent 72%);
}

.hero {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 12px 0 26px;
}

.hero > :not(.hero-antigravity) {
  position: relative;
  z-index: 2;
}

.hero-antigravity {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  mix-blend-mode: screen;
}

.hero-antigravity.is-active {
  opacity: 1;
}

.artist-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  border-radius: 32px;
  overflow: hidden;
  padding: 44px 38px 34px;
  background: #0b0d14;
  box-shadow: var(--shadow);
}

.artist-banner__backdrop,
.artist-banner__portrait,
.artist-banner::after {
  position: absolute;
  inset: 0;
}

.artist-banner__backdrop {
  inset: -6%;
  background: url("./assets/headshot.jpg") center 42% / cover no-repeat;
  filter: blur(28px) brightness(0.85) saturate(0.9);
  opacity: 0.38;
  transform: scale(1.08);
  mask-image: radial-gradient(circle at center, black 42%, rgba(0, 0, 0, 0.72) 58%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, black 42%, rgba(0, 0, 0, 0.72) 58%, transparent 82%);
  pointer-events: none;
  z-index: 0;
}

.artist-banner__portrait {
  inset: auto;
  right: clamp(14px, 5vw, 48px);
  bottom: 0;
  width: min(52vw, 540px);
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 26px 54px rgba(0, 0, 0, 0.34))
    saturate(0.98);
  mask-image: linear-gradient(90deg, transparent 0%, black 11%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 11%, black 88%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.artist-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(11, 13, 20, 0.2) 0%, rgba(11, 13, 20, 0.08) 34%, rgba(11, 13, 20, 0.18) 100%);
  pointer-events: none;
}

.artist-banner__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding-bottom: 6px;
  color: var(--text);
}

.artist-banner h1,
.artist-banner .artist-banner__bio {
  color: var(--text);
}

.artist-banner__bio {
  max-width: 54ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.72;
  font-weight: 350;
  color: rgba(247, 248, 251, 0.72);
}

.section-head__eyebrow,
.now-playing__topline {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

h1,
h2,
.track-title,
.playlist-title {
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  word-spacing: 0.02em;
  font-weight: 400;
}

.lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
}

.artist-listeners {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 300;
}

.now-playing {
  display: grid;
  gap: 10px;
  padding: 14px 12px 0;
}

.now-playing__topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.14);
}

.now-playing__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track-title {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.track-artist {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.playing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.playing-meta span,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.artist-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 4px;
}

.artist-play {
  min-width: 132px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #0a0a0a;
  box-shadow: 0 14px 28px rgba(29, 185, 84, 0.24);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-play svg {
  width: 22px;
  height: 22px;
}

.artist-play__label {
  font-size: 0.86rem;
}

.artist-play__icon {
  transform-origin: center;
}

.artist-play__icon--play {
  display: none;
}

.hero:not(.is-playing) .artist-play {
  background: rgba(255, 255, 255, 0.92);
}

.hero:not(.is-playing) .artist-play__label {
  color: #10131c;
}

.hero:not(.is-playing) .artist-play__icon--play {
  display: block;
}

.hero:not(.is-playing) .artist-play__icon--stop {
  display: none;
}

/* .hero:not(.is-playing) .now-playing {
  display: none;
} */

.now-playing {
  display: grid;
  gap: 10px;
  padding: 14px 4px 0;
  opacity: 1;
  max-height: 200px;
  overflow: hidden;
  transition: opacity 400ms ease, max-height 500ms cubic-bezier(0.4, 0, 0.2, 1), padding 400ms ease;
}

.hero:not(.is-playing) .now-playing {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  pointer-events: none;
}

.artist-follow {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.94rem;
  font-weight: 500;
}

.artist-more {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border: 0;
  background: transparent;
}

.artist-more span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 400;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.contact-pill__icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--green);
}

.progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress__bar {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--purple));
  box-shadow: 0 0 22px rgba(29, 185, 84, 0.42);
  animation: progress 12s ease-in-out infinite;
}

.section-head {
  display: grid;
  gap: 10px;
  padding: 40px 6px 18px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 16ch;
  font-weight: 600;
}

.section-head__copy {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.playlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.playlist-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.playlist-card summary {
  list-style: none;
}

.playlist-card__summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.playlist-card__summary::-webkit-details-marker {
  display: none;
}

.playlist-cover {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.15), transparent 28%),
    radial-gradient(circle at 72% 70%, color-mix(in srgb, var(--cover-tone, #8a5cff) 36%, transparent), transparent 36%),
    linear-gradient(145deg, color-mix(in srgb, var(--cover-tone, #8a5cff) 68%, #0a0a10), rgba(8, 8, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.25);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.playlist-cover__glow {
  position: absolute;
  inset: -18%;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 30%, color-mix(in srgb, var(--accent) 36%, transparent), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.12), transparent 34%);
  filter: blur(18px);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.playlist-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform-origin: center;
  transition:
    transform 240ms ease,
    border-radius 240ms ease;
}

.playlist-icon svg {
  width: 36px;
  height: 36px;
  transition: transform 240ms ease;
}

.playlist-card:hover .playlist-cover,
.playlist-card[open] .playlist-cover {
  transform: translateY(-2px);
}

.playlist-card:hover .playlist-icon,
.playlist-card[open] .playlist-icon {
  transform: rotate(45deg);
  border-radius: 18px;
}

.playlist-card:hover .playlist-icon svg,
.playlist-card[open] .playlist-icon svg {
  transform: rotate(-45deg);
}

.playlist-card__summary-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-right: 8px;
}

.playlist-kicker {
  margin: 0;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.playlist-card__summary .playlist-title {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.playlist-card__summary .playlist-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.playlist-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  white-space: nowrap;
}

.playlist-card__body {
  display: grid;
  padding-left: min(238px, 22vw);
}

.playlist-card[open] .playlist-card__body {
  animation: section-drop 220ms ease;
}

.track-list {
  display: grid;
  gap: 0;
}

.track {
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  overflow: clip;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.track:hover {
  background: rgba(255, 255, 255, 0.015);
}

.track[open] {
  background: rgba(255, 255, 255, 0.015);
}

.track summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.track summary::-webkit-details-marker {
  display: none;
}

.track-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-soft);
  font-size: 0.86rem;
  font-weight: 400;
}

.track-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.song-title {
  font-weight: 400;
  letter-spacing: -0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-artist {
  color: var(--muted);
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-dates {
  color: var(--muted-soft);
  font-size: 0.88rem;
  white-space: nowrap;
  font-weight: 400;
}

.track-chevron {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 180ms ease, color 180ms ease;
}

.track[open] .track-chevron {
  transform: rotate(180deg);
  color: var(--text);
}

.track-panel {
  padding: 0 16px 14px 64px;
  color: var(--muted);
  line-height: 1.7;
}

.track-panel p {
  margin: 0 0 10px;
}

.bullet-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.bullet-list li {
  padding-left: 4px;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.detail-link:hover,
.detail-link:focus-visible {
  border-color: rgba(29, 185, 84, 0.2);
  background: rgba(29, 185, 84, 0.04);
}

@keyframes section-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.88rem;
}

.skill-pill strong {
  color: var(--text);
  font-weight: 500;
}

/* .fun-billboard-section {
  display: grid;
  gap: 12px;
  padding: 44px 6px 6px;
}

.fun-billboard-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fun-billboard-restart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fun-billboard-restart:hover,
.fun-billboard-restart:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(29, 185, 84, 0.5);
  background: rgba(29, 185, 84, 0.12);
}

.fun-billboard-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 14px;
  background:
    radial-gradient(circle at top left, rgba(29, 185, 84, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(138, 92, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.fun-billboard {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  height: min(56vw, 360px);
  perspective: 1400px;
}

.fun-billboard__panel {
  position: relative;
  flex: 1 1 0;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: rotateY(0deg);
  transition:
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 600ms ease;
  transition-delay: calc(var(--panel-index) * 55ms);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  will-change: transform;
}

.fun-billboard.is-visible .fun-billboard__panel {
  transform: rotateY(180deg);
}

.fun-billboard__face {
  content: "";
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.fun-billboard__face--front {
  background:
    radial-gradient(circle at 30% 24%, color-mix(in srgb, var(--pokemon-accent, #7AC74C) 30%, transparent), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--pokemon-accent, #7AC74C) 16%, rgba(9, 10, 15, 0.96)), rgba(9, 10, 15, 0.96));
}

.fun-billboard__face--back {
  transform: rotateY(180deg);
  background-image: var(--pokemon-image-url, url("./assets/fun-billboard.svg"));
  background-repeat: no-repeat;
  background-size: 1200% 100%;
  background-position: calc(var(--panel-index) * 9.0909%) center;
  background-color: rgba(9, 10, 15, 0.96);
}

.fun-billboard__face--back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--pokemon-accent, #7AC74C) 16%, transparent), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.14));
  opacity: 0.22;
  pointer-events: none;
} */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes progress {
  0%,
  100% {
    width: 62%;
  }
  50% {
    width: 88%;
  }
}

@media (max-width: 980px) {
  .hero {
    gap: 16px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding: 16px 0 42px;
  }

  .artist-banner {
    min-height: 360px;
    padding: 30px 20px 22px;
  }

  .artist-banner__portrait {
    width: min(84%, 560px);
    height: 90%;
    object-position: center 24%;
  }

  .artist-actions {
    padding-inline: 2px;
    flex-wrap: wrap;
  }

  .playlist-card__summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .playlist-cover {
    width: min(100%, 240px);
  }

  .playlist-card__body {
    padding-left: 0;
  }

  .playlist-count {
    justify-self: start;
  }

  .section-head {
    padding-inline: 2px;
  }

  .fun-billboard-section {
    padding-inline: 2px;
  }

  .fun-billboard-frame {
    padding: 10px;
  }

  .fun-billboard {
    gap: 3px;
    height: min(72vw, 260px);
  }

  .track summary {
    grid-template-columns: auto 1fr auto;
  }

  .track-dates {
    grid-column: 2 / 3;
    padding-top: 2px;
  }

  .track-chevron {
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
  }

  .track-panel {
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.pokemon-section {
  padding: 44px 6px 6px;
}

.pokemon-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.pokemon-card__image {
  width: 160px;
  height: 160px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

.pokemon-card__name {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pokemon-card__types {
  display: flex;
  gap: 8px;
}

.pokemon-type-badge {
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* .now-playing__track-row {
  display: flex;
  align-items: center;
  gap: 16px;
} */

.now-playing__album-art {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  display: inline;
  vertical-align: middle;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.section-ticker {
  position: relative;
  overflow: hidden;
  max-width: min(68ch, 100%);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.section-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}

.section-ticker:hover .section-ticker__track {
  animation-play-state: paused;
}

.section-ticker__text {
  display: block;
  white-space: nowrap;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* Tilted Card */
.tilted-card-figure {
  position: relative;
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  perspective: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: default;
}

.tilted-card-inner {
  position: relative;
  width: 160px;
  height: 160px;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilted-card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
  display: block;
  -webkit-user-drag: none;
}

.tilted-card-caption {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2d2d2d;
  opacity: 0;
  white-space: nowrap;
  transform-origin: center;
}

@media (max-width: 640px) {
  .tilted-card-caption { display: none; }
}