:root {
  color-scheme: dark;
  --bg: #03040a;
  --ink: #f8fbff;
  --muted: #c5cade;
  --soft: #8992aa;
  --cyan: #31d7ff;
  --violet: #a65cff;
  --pink: #ff4fd8;
  --green: #7dffca;
  --line: rgba(211, 229, 255, 0.18);
  --glass: rgba(8, 10, 24, 0.62);
  --glass-strong: rgba(10, 13, 31, 0.78);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(6, 7, 17, 0.94), rgba(3, 4, 10, 1)),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 5px, 56px 100%;
  opacity: 0.22;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
  padding: 8px 0 34px;
}

.lang-switch {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 0 6px;
}

.lang-switch a {
  min-width: 40px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(49, 215, 255, 0.05));
  color: #e5ecfb;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.lang-switch a[aria-current="page"] {
  border-color: rgba(49, 215, 255, 0.62);
  background: linear-gradient(135deg, rgba(49, 215, 255, 0.16), rgba(166, 92, 255, 0.08));
  color: var(--ink);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.14);
}

.hero {
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(211, 229, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(4, 5, 13, 0.16) 0%, rgba(4, 5, 13, 0.52) 38%, rgba(4, 5, 13, 0.93) 100%),
    linear-gradient(90deg, rgba(166, 92, 255, 0.24), rgba(49, 215, 255, 0.08)),
    url("/assets/media/kisaua/hero-mobile-kisaua.webp") center / cover no-repeat;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), 0 0 70px rgba(166, 92, 255, 0.14);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 22px 16px 20px;
  text-align: center;
}

.hero__copy {
  order: 2;
}

.hero__visual {
  order: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}

.hero__logo {
  width: min(62vw, 248px);
  filter: drop-shadow(0 0 26px rgba(166, 92, 255, 0.58)) drop-shadow(0 0 30px rgba(49, 215, 255, 0.22));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-size: 3.95rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(166, 92, 255, 0.58), 0 0 52px rgba(49, 215, 255, 0.24);
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero__subtitle {
  margin-bottom: 9px;
  color: #e4f6ff;
  font-size: 1rem;
  font-weight: 800;
}

.hero__text {
  max-width: 35rem;
  margin: 0 auto 18px;
  color: #d9def0;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.button,
.track-link,
.socials a,
.email-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(14px);
}

.button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--cyan) 42%, var(--violet));
  color: #03040a;
  box-shadow: 0 0 26px rgba(49, 215, 255, 0.24);
}

.section {
  margin-top: 14px;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.section__head {
  margin-bottom: 16px;
}

.track-list {
  display: grid;
  gap: 10px;
}

.track-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(211, 229, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(49, 215, 255, 0.05)),
    linear-gradient(145deg, rgba(166, 92, 255, 0.12), rgba(255, 79, 216, 0.045)),
    rgba(8, 10, 24, 0.52);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3), 0 0 24px rgba(49, 215, 255, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.track-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--pink));
  opacity: 0.58;
}

.track-cover {
  width: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(49, 215, 255, 0.16);
}

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

.track-card p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.track-link {
  min-height: 28px;
  width: fit-content;
  padding: 0 10px;
  border: 1px solid rgba(49, 215, 255, 0.34);
  background: rgba(49, 215, 255, 0.12);
  color: #e7fbff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about,
.booking {
  background:
    linear-gradient(145deg, rgba(166, 92, 255, 0.12), rgba(49, 215, 255, 0.06)),
    var(--glass-strong);
}

.about p:last-child {
  margin-bottom: 0;
}

.email-link {
  width: 100%;
  margin: 4px 0 13px;
  border: 1px solid rgba(166, 92, 255, 0.42);
  background: linear-gradient(135deg, rgba(166, 92, 255, 0.2), rgba(49, 215, 255, 0.11));
  color: #fbf4ff;
  box-shadow: 0 0 22px rgba(166, 92, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.socials a {
  border: 1px solid rgba(49, 215, 255, 0.36);
  background: linear-gradient(135deg, rgba(166, 92, 255, 0.2), rgba(49, 215, 255, 0.13));
  color: #f3fbff;
  box-shadow: 0 0 20px rgba(49, 215, 255, 0.08), 0 0 16px rgba(255, 79, 216, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.button:focus-visible,
.track-link:focus-visible,
.email-link:focus-visible,
.socials a:focus-visible,
.lang-switch a:focus-visible {
  outline: 3px solid rgba(49, 215, 255, 0.66);
  outline-offset: 3px;
}

@media (min-width: 520px) {
  .site-shell {
    width: min(100% - 40px, 1180px);
    padding-top: 22px;
  }

  .hero__inner {
    padding: 34px 30px 30px;
  }

  .hero__logo {
    width: 310px;
  }

  .section {
    padding: 28px 24px;
  }

  .socials {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 760px) {
  body {
    background:
      linear-gradient(180deg, rgba(6, 7, 17, 0.88), rgba(3, 4, 10, 1)),
      var(--bg);
  }

  .site-shell {
    width: min(100% - 56px, 1120px);
    padding: 28px 0 60px;
  }

  .lang-switch {
    justify-content: flex-end;
    margin-bottom: 14px;
  }

  .hero {
    min-height: 630px;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(3, 4, 10, 0.9) 0%, rgba(3, 4, 10, 0.64) 42%, rgba(3, 4, 10, 0.14) 100%),
      linear-gradient(180deg, rgba(166, 92, 255, 0.14), rgba(49, 215, 255, 0.055)),
      url("/assets/media/kisaua/hero-desktop-kisaua.webp") center / cover no-repeat;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.86fr);
    align-items: center;
    gap: 30px;
    padding: 48px 54px;
    text-align: left;
  }

  .hero__copy,
  .hero__visual {
    order: initial;
  }

  .hero__visual {
    margin-bottom: 0;
    justify-content: end;
  }

  .hero__visual::before {
    content: "";
    position: absolute;
    inset: 16% 0 12% 30%;
    border: 1px solid rgba(49, 215, 255, 0.07);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(166, 92, 255, 0.055), rgba(49, 215, 255, 0.025));
    box-shadow: inset 0 0 56px rgba(49, 215, 255, 0.035);
  }

  .hero__logo {
    position: relative;
    width: min(32vw, 390px);
    margin: 0;
  }

  h1 {
    font-size: 6.9rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero__subtitle {
    margin-bottom: 10px;
    font-size: 1.04rem;
  }

  .hero__text {
    margin-left: 0;
    margin-right: 0;
    max-width: 32rem;
    font-size: 1.04rem;
  }

  .hero__actions {
    width: min(100%, 380px);
    gap: 9px;
  }

  .button,
  .email-link,
  .socials a {
    min-height: 44px;
  }

  .section {
    margin-top: 18px;
    padding: 30px;
  }

  .section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
  }

  .section__head .eyebrow,
  .section__head h2 {
    margin-bottom: 0;
  }

  .track-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .track-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
  }

  .track-cover {
    width: 100%;
    margin-bottom: 14px;
  }

  .track-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .track-card h3 {
    font-size: 1.16rem;
  }

  .track-card p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .track-link {
    min-height: 30px;
    width: fit-content;
    margin-top: auto;
    padding: 0 11px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 16px;
    align-items: stretch;
  }

  .info-grid .section {
    margin-top: 18px;
  }

  .about p {
    max-width: 44rem;
    font-size: 1rem;
  }

  .booking {
    display: flex;
    flex-direction: column;
  }

  .booking .socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
    gap: 8px;
  }

  .booking .email-link {
    min-height: 42px;
    margin-bottom: 12px;
  }

  .booking .socials a {
    min-height: 38px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1080px) {
  .site-shell {
    width: min(100% - 72px, 1180px);
    padding-top: 34px;
  }

  .hero__inner {
    gap: 44px;
    padding: 58px 66px;
  }

  h1 {
    font-size: 8rem;
  }

  .section {
    padding: 36px;
  }
}

@media (max-width: 380px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero {
    min-height: 610px;
  }

  .hero__inner {
    padding: 22px 14px 20px;
  }

  .hero__logo {
    width: 228px;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero__subtitle,
  .hero__text {
    font-size: 0.94rem;
  }

  .track-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .track-cover {
    width: 84px;
  }
}

/* Audio player test page */
.player-test-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(166, 92, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(49, 215, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(6, 7, 17, 0.96), rgba(3, 4, 10, 1));
}

.player-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 920px);
  margin: 0 auto;
  padding: 18px 0 42px;
}

.back-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 13px;
  border: 1px solid rgba(49, 215, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(8, 10, 24, 0.62);
  color: #e7fbff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(211, 229, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(166, 92, 255, 0.13), rgba(49, 215, 255, 0.06)),
    rgba(8, 10, 24, 0.72);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44), 0 0 50px rgba(166, 92, 255, 0.12);
  backdrop-filter: blur(18px);
}

.album-hero {
  display: grid;
  gap: 18px;
  padding: 16px;
}

.album-cover {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 38px rgba(49, 215, 255, 0.16);
}

.album-copy h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 15vw, 5rem);
}

.album-artist {
  margin-bottom: 10px;
  color: #e4f6ff;
  font-weight: 800;
}

.album-description {
  margin-bottom: 0;
}

.now-playing {
  display: grid;
  gap: 4px;
  margin: 0 16px 14px;
  padding: 13px;
  border: 1px solid rgba(49, 215, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(49, 215, 255, 0.08);
}

.now-playing span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.now-playing strong {
  font-size: 1rem;
}

.player-progress {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 8px;
  align-items: center;
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.player-progress input {
  width: 100%;
  accent-color: var(--cyan);
}

.test-track-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 14px 14px;
  list-style: none;
}

.test-track {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(211, 229, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(49, 215, 255, 0.035)),
    rgba(8, 10, 24, 0.58);
}

.test-track.is-active {
  border-color: rgba(49, 215, 255, 0.42);
  box-shadow: 0 0 24px rgba(49, 215, 255, 0.1);
}

.track-number {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.test-track-title {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.test-play {
  min-width: 68px;
  min-height: 34px;
  border: 1px solid rgba(49, 215, 255, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(49, 215, 255, 0.18), rgba(166, 92, 255, 0.12));
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.test-play:focus-visible,
.back-link:focus-visible,
.player-progress input:focus-visible {
  outline: 3px solid rgba(49, 215, 255, 0.66);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .player-shell {
    padding: 34px 0 62px;
  }

  .album-hero {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: 24px;
  }

  .now-playing,
  .player-progress {
    margin-left: 24px;
    margin-right: 24px;
  }

  .test-track-list {
    padding: 0 24px 24px;
  }

  .test-track {
    grid-template-columns: 42px minmax(0, 1fr) 82px;
    padding: 12px;
  }
}

/* Album player test v2 */
.player-test-v2 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 79, 216, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 12%, rgba(49, 215, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #060713 0%, #03040a 100%);
}

.album-player-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 1040px);
  margin: 0 auto;
  padding: 12px 0 34px;
}

.player-back-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid rgba(49, 215, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 10, 24, 0.58);
  color: #ecfbff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.album-player-card {
  overflow: hidden;
  border: 1px solid rgba(211, 229, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(49, 215, 255, 0.035)),
    rgba(8, 10, 24, 0.74);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 54px rgba(166, 92, 255, 0.13);
  backdrop-filter: blur(20px);
}

.album-panel {
  display: grid;
  gap: 18px;
  padding: 16px;
}

.album-art {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 34px rgba(49, 215, 255, 0.18), 0 18px 42px rgba(0, 0, 0, 0.36);
}

.album-main h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 12vw, 48px);
  line-height: 1;
}

.album-meta {
  margin-bottom: 9px;
  color: #e4f6ff;
  font-weight: 800;
}

.album-lead {
  margin-bottom: 18px;
}

.custom-player {
  padding: 13px;
  border: 1px solid rgba(49, 215, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(166, 92, 255, 0.16), rgba(49, 215, 255, 0.08)),
    rgba(5, 7, 18, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(49, 215, 255, 0.1), 0 0 22px rgba(255, 79, 216, 0.06);
}

.player-now {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.player-now span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.player-now strong {
  font-size: 1.1rem;
}

.player-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.player-range {
  width: 100%;
  accent-color: var(--cyan);
}

.player-range {
  height: 18px;
  appearance: none;
  background: transparent;
}

.player-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(49, 215, 255, 0.22);
}

.player-range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  appearance: none;
  border: 2px solid #041018;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.46);
}

.player-range::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(49, 215, 255, 0.22);
}

.player-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #041018;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(49, 215, 255, 0.46);
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.control-btn,
.track-play-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(49, 215, 255, 0.2), rgba(166, 92, 255, 0.16));
  box-shadow: 0 0 24px rgba(49, 215, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.control-btn--side {
  width: 42px;
  height: 42px;
  font-size: 1.65rem;
}

.control-btn--main {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #03040a;
  font-size: 1.35rem;
  box-shadow: 0 0 34px rgba(49, 215, 255, 0.26), 0 0 28px rgba(255, 79, 216, 0.12);
}

.album-track-section {
  padding: 0 16px 16px;
}

.album-track-head {
  margin: 4px 0 14px;
}

.album-track-head h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.album-track-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.album-track {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto auto;
  gap: 7px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(211, 229, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.048), rgba(49, 215, 255, 0.032)),
    rgba(8, 10, 24, 0.56);
}

.album-track.is-active {
  border-color: rgba(49, 215, 255, 0.46);
  box-shadow: 0 0 24px rgba(49, 215, 255, 0.12), 0 0 18px rgba(255, 79, 216, 0.07);
}

.album-track-number {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.album-track-title {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-play-btn,
.track-download {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.track-play-btn {
  border: 1px solid rgba(49, 215, 255, 0.34);
  background: rgba(49, 215, 255, 0.12);
}

.track-download {
  border: 1px solid rgba(255, 79, 216, 0.3);
  background: rgba(255, 79, 216, 0.1);
  color: #ffeaff;
}

.album-track.is-playing .track-play-btn {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #03040a;
}

.player-back-link:focus-visible,
.control-btn:focus-visible,
.track-play-btn:focus-visible,
.track-download:focus-visible,
.player-range:focus-visible {
  outline: 3px solid rgba(49, 215, 255, 0.66);
  outline-offset: 3px;
}

@media (min-width: 560px) {
  .album-track {
    grid-template-columns: 42px minmax(0, 1fr) auto auto;
  }
}

@media (min-width: 780px) {
  .album-player-shell {
    padding: 24px 0 58px;
  }

  .album-panel {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 24px;
  }

  .album-main h1 {
    font-size: 4.4rem;
  }

  .album-track-section {
    padding: 0 24px 24px;
  }

  .album-track-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 2px;
  }

  .album-track {
    padding: 11px 12px;
  }
}
