:root {
  --night: #020711;
  --deep: #071423;
  --ink: #f4f8ff;
  --muted: #a9b9c9;
  --soft: rgba(255, 255, 255, .08);
  --soft-strong: rgba(255, 255, 255, .13);
  --line: rgba(255, 255, 255, .16);
  --gold: #d7b47a;
  --gold-light: #f4d9aa;
  --blue: #4bb6ff;
  --shadow: 0 30px 110px rgba(0, 0, 0, .38);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 0%, rgba(75,182,255,.2), transparent 34rem),
    radial-gradient(circle at 0% 70%, rgba(215,180,122,.12), transparent 32rem),
    var(--night);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url('out2blue-background.png') center top / cover no-repeat fixed;
  opacity: .18;
  filter: saturate(1.1);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2,7,17,.78), rgba(2,7,17,.92) 58%, rgba(2,7,17,.98)),
    radial-gradient(circle at 50% 10%, transparent, rgba(2,7,17,.78) 72%);
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

.page-light {
  position: fixed;
  inset: auto -20vw -35vw auto;
  width: 70vw;
  aspect-ratio: 1;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(75,182,255,.16), transparent 65%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(70px, 1fr) auto;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.site-header::after {
  content: "";
  grid-column: 2;
  width: calc(100% - 38px);
  height: 1px;
  justify-self: center;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.58), rgba(255,255,255,.12));
}

.brand {
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  width: min(190px, 42vw);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(83, 156, 211, .28));
}

.nav-links {
  display: flex;
  grid-column: 3;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}

.nav-links a:hover {
  color: white;
  background: rgba(255,255,255,.06);
}

.menu-toggle {
  display: none;
  grid-column: 3;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,.07);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('out2blue-background.png') center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 36%, rgba(19,46,72,.06), rgba(2,7,17,.14) 20%, rgba(2,7,17,.68) 76%),
    linear-gradient(180deg, rgba(2,7,17,.18), rgba(2,7,17,.5) 72%, var(--night));
}

.hero-content {
  position: absolute;
  top: 27vh;
  left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  width: min(560px, calc(100% - 56px));
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  transform: translateY(calc(var(--scroll, 0) * .018px));
}

.kicker,
.mini {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 900;
}

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

.hero-title {
  margin: 0;
  width: min(620px, 49vw);
  filter:
    drop-shadow(0 0 5px rgba(255,255,255,.56))
    drop-shadow(0 0 18px rgba(89,183,255,.7))
    drop-shadow(0 22px 42px rgba(0,0,0,.42));
}

.hero-title img {
  display: block;
  width: 100%;
  height: auto;
}

.subtitle {
  margin: 14px 0 0;
  color: var(--gold-light);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-line {
  width: min(260px, 60vw);
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, rgba(244,217,170,.9), transparent);
}

.intro {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(244,248,255,.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.listen-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  margin-top: 78px;
  padding: 18px 30px;
  border: 1px solid rgba(207,239,255,.72);
  border-radius: 8px;
  color: #06224a;
  background: linear-gradient(135deg, rgba(219,247,255,.98), rgba(92,190,255,.92));
  box-shadow:
    0 0 26px rgba(94,190,255,.62),
    inset 0 0 18px rgba(255,255,255,.48);
  text-transform: uppercase;
  font-size: clamp(1rem, 1.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .12em;
}

.listen-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 34px rgba(117,205,255,.72),
    inset 0 0 18px rgba(255,255,255,.58);
}

.listen-icon {
  font-size: 1.2em;
  line-height: 1;
}

.social-block {
  margin-top: 58px;
}

.social-block p {
  margin: 0 0 16px;
  color: rgba(239,248,255,.9);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .88rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform .18s ease, color .18s ease, filter .18s ease;
}

.social-links a:hover {
  color: #9bd8ff;
  filter: drop-shadow(0 0 10px rgba(120,208,255,.58));
  transform: translateY(-2px);
}

.social-links svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg circle,
.social-links a:last-child svg circle {
  fill: currentColor;
  stroke: currentColor;
}

.social-links a:first-child svg path,
.social-links a:last-child svg path {
  stroke: #06111f;
}

.social-links a:nth-child(2) svg rect {
  fill: currentColor;
  stroke: currentColor;
}

.social-links a:nth-child(2) svg path {
  fill: #06111f;
  stroke: #06111f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,.07);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.11);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.button.primary {
  color: #07101c;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button.glass {
  backdrop-filter: blur(14px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 28px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.album-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  line-height: .88;
  letter-spacing: 0;
}

.section-heading p,
.album-copy p,
.track p,
.empty p,
#nowMeta {
  color: var(--muted);
  line-height: 1.7;
}

.music-layout {
  display: block;
}

.player-panel,
.notice,
.track,
.empty {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.player-panel {
  display: grid;
  gap: 20px;
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
}

.now-playing h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: .93;
  letter-spacing: 0;
}

.transport-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.transport-button {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.transport-button.main {
  color: #07101c;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.player-time {
  min-width: 94px;
  color: var(--ink);
  font-weight: 800;
}

.player-progress {
  flex: 1;
  min-width: 160px;
}

.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 160px;
  min-width: 130px;
}

.volume-icon {
  flex: 0 0 auto;
  line-height: 1;
  font-size: 1.1rem;
  color: var(--gold-light);
  user-select: none;
}

.player-volume {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}

.player-progress,
.player-volume {
  accent-color: var(--gold);
  appearance: none;
  height: 8px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  padding: 0;
  background:
    linear-gradient(90deg, var(--gold-light), var(--gold)) 0 / var(--range-fill, 0%) 100% no-repeat,
    rgba(255,255,255,.16);
  outline: none;
}

.player-progress {
  position: relative;
  display: block;
  cursor: pointer;
  touch-action: none;
}

.player-volume {
  cursor: pointer;
  touch-action: pan-y;
}

.player-progress:focus-visible {
  box-shadow: 0 0 0 3px rgba(244,217,170,.22);
}

.player-progress::-webkit-slider-thumb,
.player-volume::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(215,180,122,.18);
  cursor: pointer;
}

.player-progress::-moz-range-thumb,
.player-volume::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(215,180,122,.18);
  cursor: pointer;
}

.player-progress::-moz-range-track,
.player-volume::-moz-range-track {
  background: transparent;
}

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

.track {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
}

.track:hover,
.track.active {
  border-color: rgba(244,217,170,.38);
  background: rgba(244,217,170,.08);
}

.track-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
  font-weight: 900;
}

.track > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.track h3 {
  margin-bottom: 4px;
}

.track p,
.track time {
  margin: 0;
  color: var(--muted);
}

.track p {
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.empty {
  border-radius: 8px;
  padding: 22px;
}

.album-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.album-copy p {
  max-width: 560px;
  font-size: 1.1rem;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.date-row span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--gold-light);
  font-weight: 900;
}

.album-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transform: rotate(1deg);
}

.album-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, transparent, rgba(2,7,17,.35) 75%);
}

.album-type {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 14px;
}

.album-type span {
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0;
}

.album-type strong {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 500;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 28px 70px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer-contact {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact:hover {
  color: var(--ink);
}

.footer-link {
  position: fixed;
  left: 28px;
  bottom: 22px;
  z-index: 79;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 13px 8px 10px;
  color: rgba(244,248,255,.9);
  background: linear-gradient(135deg, rgba(7,18,32,.82), rgba(42,42,42,.74));
  box-shadow:
    0 14px 42px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  text-decoration: none;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.footer-link[hidden] {
  display: none;
}

.footer-link:hover {
  color: var(--ink);
  border-color: rgba(244,217,170,.48);
  background: linear-gradient(135deg, rgba(12,33,58,.9), rgba(50,50,50,.86));
  box-shadow:
    0 18px 48px rgba(0,0,0,.38),
    0 0 22px rgba(75,182,255,.12),
    inset 0 1px 0 rgba(255,255,255,.18);
  transform: translateY(-2px);
}

.cookie-settings-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #07101c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: .82rem;
  line-height: 1;
  font-weight: 900;
}

.cookie-banner {
  position: fixed;
  left: 28px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(340px, calc(100% - 56px));
  padding: 16px 20px 18px;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(42, 42, 42, .98);
  box-shadow: 0 20px 70px rgba(0,0,0,.5);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-close {
  position: absolute;
  top: -8px;
  right: 10px;
  width: auto;
  border: 0;
  padding: 0;
  color: white;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-copy h2 {
  margin: 0 28px 8px 0;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.cookie-copy p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.86);
  line-height: 1.45;
  font-size: .82rem;
  font-weight: 700;
}

.cookie-read-more {
  width: auto;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,.86);
  background: transparent;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.cookie-details {
  margin-top: 8px !important;
  font-size: .78rem !important;
  font-weight: 500 !important;
}

.cookie-options {
  display: grid;
  gap: 8px;
  margin: 2px 0 4px;
}

.cookie-option {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.cookie-option input {
  appearance: none;
  display: grid;
  place-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 3px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-option input:checked {
  border-color: #757575;
  background: #757575;
}

.cookie-option input:checked::before {
  content: "✓";
  color: #1f1f1f;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 900;
}

.cookie-option.disabled {
  cursor: default;
}

.cookie-option.disabled input {
  cursor: not-allowed;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.cookie-button {
  width: 100%;
  min-height: 42px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 12px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-button.primary {
  color: white;
  border-color: transparent;
  background: #69bd68;
}

.cookie-button.secondary {
  color: white;
  background: transparent;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.08);
  outline: none;
}

input:focus {
  border-color: var(--gold);
}

.notice {
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.notice.success {
  color: #b9ffd1;
}

.notice.error {
  color: #ffbbbb;
}

code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--gold-light);
  background: rgba(255,255,255,.08);
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(24px, 1fr) auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 28px;
    right: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .hero-content {
    top: 24vh;
    left: 28px;
    width: min(520px, calc(100% - 56px));
  }

  .hero-title {
    width: min(580px, 68vw);
  }

  .music-layout,
  .album-section {
    grid-template-columns: 1fr;
  }

  .visual-disc {
    min-height: 360px;
  }

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

  .track > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .track p {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .album-frame {
    transform: none;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero-content {
    top: 22vh;
    left: 18px;
    width: calc(100% - 32px);
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .hero-title {
    width: min(420px, 86vw);
  }

  .listen-button {
    min-height: 56px;
    margin-top: 56px;
    padding: 15px 20px;
    gap: 12px;
    letter-spacing: .08em;
  }

  .social-block {
    margin-top: 44px;
  }

  .social-links {
    gap: 16px;
  }

  .social-links a {
    width: 30px;
    height: 30px;
  }

  .subtitle {
    margin-top: 10px;
    font-size: 1.15rem;
  }

  .intro {
    font-size: 1rem;
    line-height: 1.55;
  }

  .section {
    padding: 78px 18px;
  }

}

.music-layout,
.player-panel,
.transport-row,
.volume-control,
.track-list,
.track,
.track > div,
.now-playing,
#nowTitle,
#nowMeta {
  min-width: 0;
  max-width: 100%;
}

.track h3,
.track p,
#nowTitle,
#nowMeta {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 640px) {
  .player-panel {
    width: 100%;
    overflow: hidden;
    padding: 18px;
  }

  .transport-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .transport-button {
    width: 100%;
    min-width: 0;
  }

  .player-time,
  .player-progress,
  .volume-control {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .player-time {
    text-align: center;
  }

  .track-list {
    width: 100%;
  }

  .track {
    width: 100%;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .track-button {
    width: 46px;
    height: 46px;
  }

  .track > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .track h3,
  .track p {
    max-width: 100%;
  }

  .track p {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px 16px 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }
}
