@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --blueprint-darkest: #02080d;
  --blueprint-dark: #05131d;
  --blueprint-mid: #08283b;
  --blueprint-blue: #0f6f9c;
  --blueprint-cyan: #45d8ff;
  --blueprint-light: #9beaff;
  --blueprint-white: #edfaff;
}

html { background: #000; }

body {
  margin: 0;
  min-height: 100vh;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--blueprint-darkest);
  background-image:
    linear-gradient(rgba(69,216,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,216,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(69,216,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,216,255,.022) 1px, transparent 1px),
    radial-gradient(circle at 72% 12%, rgba(0,150,220,.20), transparent 36%),
    radial-gradient(circle at 18% 42%, rgba(0,90,150,.15), transparent 38%),
    linear-gradient(180deg, #071b29 0%, #04121c 42%, #02080d 78%, #000 100%);
  background-size: 44px 44px, 44px 44px, 220px 220px, 220px 220px, 100% 100%, 100% 100%, 100% 100%;
  background-repeat: repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
}

button, input, select, textarea { font-family: "Space Grotesk", sans-serif; }
h1, h2 { font-weight: 600; }

.back-link {
  display: inline-block;
  margin: 25px;
  padding: 13px 20px;
  color: var(--blueprint-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  border: 1px solid rgba(69,216,255,.45);
  border-radius: 3px;
  background: rgba(3,18,28,.55);
  box-shadow: inset 0 0 15px rgba(69,216,255,.025);
  transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.back-link:hover {
  color: #001018;
  background: var(--blueprint-cyan);
  border-color: var(--blueprint-cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(69,216,255,.25);
}

.album-page {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 20px;
  box-sizing: border-box;
  text-align: center;
}

.album-header {
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-bottom: 70px;
  padding: 55px;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(69,216,255,.16);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(4,29,44,.78), rgba(1,11,17,.72));
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 70px rgba(0,135,200,.035);
}

.album-header::before,
.album-header::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  pointer-events: none;
}

.album-header::before {
  top: 15px;
  left: 15px;
  border-top: 2px solid rgba(69,216,255,.62);
  border-left: 2px solid rgba(69,216,255,.62);
}

.album-header::after {
  right: 15px;
  bottom: 15px;
  border-right: 2px solid rgba(69,216,255,.62);
  border-bottom: 2px solid rgba(69,216,255,.62);
}

.album-info {
  width: 430px;
  max-width: 100%;
  text-align: left;
}

.album-info h1 {
  margin: 0 0 13px;
  color: var(--blueprint-white);
  font-size: clamp(36px, 3.15vw, 46px);
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(69,216,255,.22), 0 0 45px rgba(0,125,185,.13);
}

.album-title-line {
  display: block;
  white-space: nowrap;
}

.album-info h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 18px;
  background: var(--blueprint-cyan);
  box-shadow: 0 0 12px rgba(69,216,255,.42);
}

.artist-name {
  margin: 0 0 38px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  letter-spacing: 3px;
}

.artist-name a,
.artist-name a:visited {
  color: var(--blueprint-white);
  text-decoration-color: rgba(69,216,255,.65);
  text-underline-offset: 4px;
  transition: color .25s ease, text-shadow .25s ease;
}

.artist-name a:hover {
  color: var(--blueprint-cyan);
  text-shadow: 0 0 12px rgba(69,216,255,.30);
}

.get-music {
  margin: 0 0 18px;
  color: rgba(155,234,255,.74);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.streaming-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.streaming-links a {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 18px;
  box-sizing: border-box;
  overflow: hidden;
  color: var(--blueprint-white);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  border: 1px solid rgba(69,216,255,.27);
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(69,216,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 3px 0 0 rgba(69,216,255,.22);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.streaming-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 20%, rgba(69,216,255,.14) 50%, transparent 80%);
  transition: left .48s ease;
  pointer-events: none;
}

.streaming-links a:hover {
  transform: translateX(5px);
  border-color: rgba(69,216,255,.78);
  background: rgba(15,111,156,.13);
  box-shadow: inset 4px 0 0 var(--blueprint-cyan), 0 0 20px rgba(69,216,255,.10);
}

.streaming-links a:hover::before { left: 130%; }

.album-art-side {
  display: flex;
  justify-content: center;
  position: relative;
  flex: 1;
}

.album-art-side::before {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(69,216,255,.18);
  pointer-events: none;
}

.album-art {
  width: 500px;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  border: 1px solid rgba(69,216,255,.46);
  box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 0 45px rgba(0,140,205,.15);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.album-art:hover {
  transform: scale(1.018);
  border-color: rgba(69,216,255,.85);
  box-shadow: 0 34px 90px rgba(0,0,0,.52), 0 0 58px rgba(69,216,255,.20);
}

.track-list h2,
.album-description h2,
.album-details h2 {
  color: var(--blueprint-white);
  font-size: 27px;
  letter-spacing: 5px;
  text-align: center;
  text-shadow: 0 0 14px rgba(69,216,255,.13);
}

.track-list {
  width: 100%;
  max-width: 760px;
  margin-top: 55px;
  text-align: left;
}

.track-list h2 { margin-bottom: 30px; }

.track {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr 300px;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
  padding: 15px 14px;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(69,216,255,.11);
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(10,55,78,.22), rgba(2,12,18,.42));
  box-shadow: inset 3px 0 0 rgba(69,216,255,.12);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.track:hover {
  transform: translateX(4px);
  border-color: rgba(69,216,255,.30);
  background: linear-gradient(90deg, rgba(13,83,116,.24), rgba(3,18,27,.55));
  box-shadow: inset 3px 0 0 rgba(69,216,255,.38);
}

.track-number {
  color: var(--blueprint-cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: .82;
}

.track-name {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  font-weight: 500;
}

.track audio { width: 100%; height: 40px; }
.track audio:not([controls]) { display: none; }

.custom-audio-player {
  width: 100%;
  display: grid;
  grid-template-columns: 46px 45px 1fr 45px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  box-sizing: border-box;
  border: 1px solid rgba(69,216,255,.14);
  border-radius: 3px;
  background: rgba(0,7,11,.50);
  box-shadow: inset 0 0 16px rgba(0,0,0,.32);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.custom-play-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(69,216,255,.48);
  border-radius: 3px;
  background: rgba(15,111,156,.08);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.custom-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  transform: translate(-42%, -50%);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--blueprint-cyan);
}

.custom-play-button:hover {
  transform: scale(1.06);
  border-color: var(--blueprint-cyan);
  background: rgba(69,216,255,.11);
  box-shadow: 0 0 17px rgba(69,216,255,.15);
}

.track.playing .custom-play-button::before {
  width: 4px;
  height: 14px;
  top: 50%;
  left: 41%;
  transform: translate(-50%, -50%);
  border: none;
  background: var(--blueprint-cyan);
}

.track.playing .custom-play-button::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 14px;
  top: 50%;
  left: 59%;
  transform: translate(-50%, -50%);
  background: var(--blueprint-cyan);
}

.current-time,
.duration {
  color: rgba(155,234,255,.62);
  font-size: 11px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  background: rgba(155,234,255,.16);
  outline: none;
  cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
  width: 11px;
  height: 11px;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 0;
  background: var(--blueprint-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(69,216,255,.38);
}

.progress-bar::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 0;
  background: var(--blueprint-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(69,216,255,.38);
}

.custom-play-button:focus-visible,
.progress-bar:focus-visible,
.streaming-links a:focus-visible,
.back-link:focus-visible {
  outline: 2px solid var(--blueprint-cyan);
  outline-offset: 3px;
}

.track.playing {
  border-color: rgba(69,216,255,.47);
  background: linear-gradient(90deg, rgba(0,116,167,.24), rgba(2,20,30,.65));
  box-shadow: inset 4px 0 0 var(--blueprint-cyan), 0 0 28px rgba(0,145,215,.08);
}

.track.playing .track-number { color: var(--blueprint-white); opacity: 1; }
.track.playing .track-name { color: white; font-weight: 700; text-shadow: 0 0 13px rgba(69,216,255,.24); }
.track.playing .custom-audio-player { border-color: rgba(69,216,255,.37); background: rgba(0,55,80,.25); }

.album-description {
  width: 100%;
  max-width: 700px;
  margin: 90px auto 45px;
  padding: 38px 35px;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid rgba(69,216,255,.18);
  border-bottom: 1px solid rgba(69,216,255,.18);
  background: rgba(4,25,37,.30);
}

.album-description h2 { margin: 0 0 24px; }
.album-description p { margin: 0; color: rgba(237,250,255,.70); font-size: 18px; line-height: 1.7; }

.album-details {
  width: 100%;
  max-width: 700px;
  margin: 55px auto 80px;
  padding: 35px;
  box-sizing: border-box;
  text-align: center;
  border: 1px dashed rgba(69,216,255,.18);
  background: rgba(0,16,25,.33);
}

.album-details h2 { margin: 0 0 25px; }
.album-details p { margin: 6px 0; color: rgba(237,250,255,.68); font-size: 16px; line-height: 1.8; }
.album-details strong { color: var(--blueprint-light); }

/* Universal Levias Music hub */
.levias-social-hub {
  width: 100%;
  max-width: 900px;
  margin: 100px auto 70px;
  padding: 1px;
  box-sizing: border-box;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,40,40,.55), rgba(120,0,0,.18) 28%, rgba(255,255,255,.06) 50%, rgba(110,0,0,.18) 72%, rgba(255,35,35,.45));
  box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 0 35px rgba(160,0,0,.08);
}

.levias-hub-inner {
  width: 100%;
  padding: 55px 55px 45px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 27px;
  background: radial-gradient(circle at 50% 0%, rgba(150,0,0,.12), transparent 35%), radial-gradient(circle at 50% 100%, rgba(90,0,0,.08), transparent 38%), linear-gradient(180deg, rgba(10,10,10,.98), rgba(2,2,2,.99));
}

.levias-hub-inner::before {
  content: "";
  position: absolute;
  top: -170px;
  left: 50%;
  width: 500px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(220,0,0,.11), transparent 68%);
  pointer-events: none;
}

.levias-hub-brand {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 7px;
}

.levias-hub-small { color: white; font-size: 18px; font-weight: 600; }
.levias-hub-main { color: #d51f1f; font-size: 18px; font-weight: 700; }

.levias-hub-accent {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 52px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e22b2b, transparent);
  box-shadow: 0 0 14px rgba(220,30,30,.45);
}

.levias-hub-section { position: relative; z-index: 2; text-align: center; }
.levias-hub-label { margin: 0 0 10px; color: #b32323; font-size: 10px; font-weight: 700; letter-spacing: 5px; }
.levias-hub-section h2 { margin: 0; color: white; font-size: 28px; letter-spacing: 5px; }
.levias-hub-description { margin: 14px auto 30px; color: rgba(255,255,255,.47); font-size: 14px; line-height: 1.6; letter-spacing: .5px; }

.levias-hub-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.levias-hub-links a,
.levias-hub-links button {
  position: relative;
  min-width: 118px;
  padding: 13px 21px;
  box-sizing: border-box;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid rgba(190,35,35,.38);
  border-radius: 999px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.1px;
  cursor: pointer;
  box-shadow: inset 0 0 15px rgba(255,255,255,.012);
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}

.levias-hub-links a span,
.levias-hub-links button span { position: relative; z-index: 2; }

.levias-hub-links a::before,
.levias-hub-links button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 15%, rgba(220,30,30,.17) 50%, transparent 85%);
  transition: left .48s ease;
  pointer-events: none;
}

.levias-hub-links a:hover,
.levias-hub-links button:hover {
  transform: translateY(-2px);
  color: white;
  border-color: rgba(235,45,45,.78);
  background: linear-gradient(180deg, rgba(130,0,0,.13), rgba(255,255,255,.025));
  box-shadow: 0 0 22px rgba(170,0,0,.14), inset 0 0 18px rgba(170,0,0,.05);
}

.levias-hub-links a:hover::before,
.levias-hub-links button:hover::before { left: 120%; }

.levias-hub-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin: 52px auto;
  position: relative;
  z-index: 2;
}

.levias-hub-divider > span { display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(180,35,35,.42)); }
.levias-hub-divider > span:last-child { background: linear-gradient(90deg, rgba(180,35,35,.42), transparent); }

.levias-hub-divider-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,35,35,.55);
  border-radius: 50%;
  color: #dc2c2c;
  background: #050505;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(160,0,0,.12);
}

.levias-share-section { padding-bottom: 5px; }
.levias-share-links a,
.levias-share-links button { min-width: 125px; }

.levias-hub-return {
  margin-top: 55px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
}

.levias-hub-return a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 150px;
  padding: 13px 21px;
  box-sizing: border-box;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid rgba(190,35,35,.38);
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.1px;
  transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease;
}

.levias-return-arrow,
.levias-return-text { position: relative; z-index: 2; }
.levias-return-arrow { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1; }

.levias-hub-return a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(110deg, transparent 15%, rgba(220,30,30,.17) 50%, transparent 85%);
  transition: left .48s ease;
  pointer-events: none;
}

.levias-hub-return a:hover {
  transform: translateY(-2px);
  color: white;
  border-color: rgba(235,45,45,.78);
  background: linear-gradient(180deg, rgba(130,0,0,.13), rgba(255,255,255,.025));
  box-shadow: 0 0 22px rgba(170,0,0,.14), inset 0 0 18px rgba(170,0,0,.05);
}

.levias-hub-return a:hover::before { left: 120%; }
.levias-hub-return a:active { transform: translateY(0); }

.site-footer {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.15);
}

.site-footer .footer-logo { margin: 0 0 15px; color: white; font-size: 26px; letter-spacing: 6px; }
.site-footer p { margin: 10px 0; color: #888; font-size: 12px; letter-spacing: 2px; }

/* Pixel Guy is present but disabled until this album gets its own script. */
.pixel-guy-wrapper {
  position: fixed;
  right: 22px;
  bottom: 18px;
  width: 160px;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .35s ease, transform .45s ease;
}

.pixel-guy-image {
  display: block;
  width: 150px;
  max-width: none;
  height: auto;
  object-fit: contain;
  image-rendering: pixelated;
  -webkit-user-drag: none;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.45));
}

.pixel-guy-bubble {
  position: absolute;
  right: 118px;
  bottom: 118px;
  width: max-content;
  min-width: 170px;
  max-width: 310px;
  height: auto;
  padding: 15px 18px;
  box-sizing: border-box;
  background: white;
  color: #111;
  border: 3px solid #111;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
  pointer-events: none;
}

.pixel-guy-bubble::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -14px;
  width: 22px;
  height: 22px;
  background: white;
  border-right: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: rotate(45deg);
}

@media (max-width: 900px), (max-device-width: 900px) and (pointer: coarse) {
  .album-page { padding: 30px clamp(16px,5vw,40px); }
  .album-header { max-width: 700px; flex-direction: column; gap: 48px; padding: 45px 30px; margin-bottom: 45px; }
  .album-art-side { width: 100%; order: 1; }
  .album-art { width: clamp(220px,72vw,420px); }
  .album-info { width: 100%; max-width: 430px; order: 2; text-align: center; }
  .album-info h1 { font-size: clamp(34px,8.7vw,46px); line-height: 1.02; }
  .album-title-line { white-space: nowrap; }
  .album-info h1::after { margin-left: auto; margin-right: auto; }
  .streaming-links { width: 100%; max-width: 370px; margin: 0 auto; }
  .track-list, .album-description, .album-details { width: 100%; max-width: 700px; }
  .track { grid-template-columns: 35px minmax(0,1fr); gap: 10px; padding: 15px 12px; }
  .track:hover { transform: none; }
  .track-number { grid-column: 1; }
  .track-name { grid-column: 2; min-width: 0; text-align: left; }
  .track audio { grid-column: 1 / -1; width: 100%; min-width: 0; margin-top: 8px; }
  .custom-audio-player { grid-column: 1 / -1; grid-template-columns: 44px 40px minmax(0,1fr) 40px; gap: 6px; width: 100%; margin-top: 8px; }
}

@media (max-width: 600px) {
  .back-link { margin: 18px; padding: 11px 15px; font-size: 11px; }
  .album-header { padding: 38px 18px; }
  .album-header::before, .album-header::after { width: 28px; height: 28px; }
  .album-info h1 { font-size: clamp(25px,7.8vw,36px); line-height: 1.02; letter-spacing: 1.2px; }
  .album-title-line { white-space: nowrap; }
  .track-list h2, .album-description h2, .album-details h2 { font-size: 23px; letter-spacing: 4px; }
  .album-description, .album-details { padding: 30px 18px; }
  .levias-social-hub { width: calc(100% - 10px); margin: 75px auto 55px; border-radius: 22px; }
  .levias-hub-inner { padding: 42px 20px 34px; border-radius: 21px; }
  .levias-hub-brand { margin-bottom: 42px; letter-spacing: 5px; }
  .levias-hub-small, .levias-hub-main { font-size: 15px; }
  .levias-hub-section h2 { font-size: 23px; letter-spacing: 4px; }
  .levias-hub-label { font-size: 9px; letter-spacing: 4px; }
  .levias-hub-description { max-width: 280px; margin-bottom: 25px; font-size: 13px; }
  .levias-hub-links { gap: 10px; }
  .levias-hub-links a, .levias-hub-links button { min-width: 0; padding: 12px 17px; font-size: 13px; }
  .levias-hub-divider { gap: 12px; margin: 45px auto; }
  .levias-hub-divider-mark { width: 30px; height: 30px; }
  .levias-hub-return { margin-top: 45px; }
  .levias-hub-return a { min-width: 145px; padding: 12px 17px; font-size: 13px; border-radius: 5px; }
  .pixel-guy-wrapper { right: 10px; bottom: 10px; width: 120px; }
  .pixel-guy-image { width: 110px; }
  .pixel-guy-bubble { right: 84px; bottom: 86px; width: max-content; min-width: 145px; max-width: min(235px, calc(100vw - 125px)); padding: 12px 14px; font-size: 12px; border-width: 2px; border-radius: 14px; }
  .pixel-guy-bubble::after { right: 15px; bottom: -11px; width: 16px; height: 16px; border-right-width: 2px; border-bottom-width: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================
   LEFT-SIDE JUMP ANIMATION TEST
   ========================================== */

.jump-test-guy {
  position: fixed;

  left: 22px;
  bottom: 18px;

  width: 160px;

  z-index: 9998;

  cursor: pointer;

  user-select: none;
  -webkit-user-select: none;

  -webkit-tap-highlight-color: transparent;

  touch-action: manipulation;

  opacity: 1;

  transform:
    translateY(0);

  transition:
    transform .55s ease-in,
    opacity .35s ease;

  filter:
    drop-shadow(
      0 8px 10px
      rgba(0,0,0,.45)
    );
}


.jump-test-image {
  display: block;

  width: 150px;
  max-width: none;

  height: auto;

  object-fit: contain;

  image-rendering: pixelated;

  pointer-events: none;

  -webkit-user-drag: none;

  user-select: none;
  -webkit-user-select: none;
}


/* ==========================================
   SMALL HOVER EFFECT
   ========================================== */

.jump-test-guy:not(.jump-test-dropped):hover {
  transform:
    translateY(-4px);
}


/* ==========================================
   PAUSED STATE
   ========================================== */

.jump-test-guy.jump-test-paused {
  filter:
    drop-shadow(
      0 8px 10px
      rgba(0,0,0,.45)
    );
}


/* ==========================================
   DOUBLE CLICK - DROP AWAY
   ========================================== */

.jump-test-guy.jump-test-dropped {
  transform:
    translateY(450px);

  opacity: 0;

  pointer-events: none;
}


/* ==========================================
   KEYBOARD FOCUS
   ========================================== */

.jump-test-guy:focus-visible {
  outline:
    2px solid
    var(--blueprint-cyan);

  outline-offset:
    5px;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 600px) {

  .jump-test-guy {
    left: 10px;
    bottom: 10px;

    width: 120px;
  }


  .jump-test-image {
    width: 110px;
  }

}

/* Loading and retry messages fit inside the existing player. */
.custom-audio-player .audio-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}
.custom-audio-player .audio-status[hidden] { display: none; }
