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


/* ==========================================
   BARE FOUNDATIONS VOL. 3
   ALBUM-ART COLOR THEME

   The page follows the same visual structure
   as Jaded / Take A Minute, but uses the
   Bare Foundations Vol. 3 cover palette:
   aged paper, parchment, ivory, graphite,
   faded pencil gray, sepia, and dusty brown.
   ========================================== */

:root {
  --bare3-bg-top: #4a433e;
  --bare3-bg-mid: #332e2a;
  --bare3-bg-low: #211d1a;

  --bare3-charcoal: #171513;
  --bare3-graphite: #393532;
  --bare3-pencil: #67615c;
  --bare3-taupe: #8f867c;

  --bare3-sepia: #8f6656;
  --bare3-rust: #9a6657;

  --bare3-paper-dark: #b8aea0;
  --bare3-paper: #d7d0c1;
  --bare3-parchment: #e6e0d1;
  --bare3-ivory: #f1ede2;
  --bare3-light: #faf7ee;
}


/* ==========================================
   MAIN PAGE
   ========================================== */

html {
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;

  position: relative;

  background: var(--bare3-bg-low);

  color: white;

  font-family:
    "Space Grotesk",
    sans-serif;
}


/*
  The cover colors are the page background
  itself, just like Take A Minute / Jaded.
  This fixed layer also prevents flicker when
  audio players change the page height.
*/

body::before {
  content: "";

  position: fixed;
  inset: 0;

  width: 100vw;
  height: 100vh;

  z-index: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 74% 10%,
      rgba(230, 224, 209, .20) 0%,
      rgba(184, 174, 160, .11) 28%,
      transparent 59%
    ),

    radial-gradient(
      circle at 16% 38%,
      rgba(143, 102, 86, .21) 0%,
      rgba(143, 102, 86, .08) 31%,
      transparent 56%
    ),

    radial-gradient(
      circle at 80% 69%,
      rgba(103, 97, 92, .14) 0%,
      transparent 43%
    ),

    linear-gradient(
      180deg,
      var(--bare3-bg-top) 0%,
      var(--bare3-bg-mid) 48%,
      var(--bare3-bg-low) 100%
    );

  background-repeat: no-repeat;
  background-size: 100% 100%;

  transform: translateZ(0);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/*
  Fade into black only at the true bottom of
  the page instead of turning each viewport
  into a dark/black panel.
*/

body::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 650px;

  z-index: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .08) 22%,
      rgba(0, 0, 0, .27) 45%,
      rgba(0, 0, 0, .60) 72%,
      #000 100%
    );
}


.back-link,
.album-page,
.site-footer {
  position: relative;

  z-index: 1;
}


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


h1,
h2 {
  font-weight: 600;
}


.track-name,
.streaming-links a {
  font-weight: 500;
}


/* ==========================================
   TOP BACK LINK
   ========================================== */

.back-link {
  display: inline-block;

  margin: 25px;

  padding:
    14px 22px;

  color:
    var(--bare3-light);

  text-decoration: none;

  font-size: 14px;

  letter-spacing: 3px;

  border:
    1px solid
    rgba(230, 224, 209, .40);

  background:
    rgba(23, 21, 19, .11);

  transition:
    transform .25s ease,
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}


.back-link:hover {
  color:
    var(--bare3-charcoal);

  background:
    var(--bare3-parchment);

  border-color:
    var(--bare3-parchment);

  transform:
    translateY(-2px);
}


/* ==========================================
   ALBUM PAGE
   ========================================== */

.album-page {
  min-height: 90vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding:
    40px 20px;

  box-sizing: border-box;

  background: transparent;
}


/* ==========================================
   ALBUM HEADER
   OPEN LAYOUT — NO BLACK CARD
   ========================================== */

.album-header {
  width: 100%;

  max-width: 1100px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 70px;

  margin-bottom: 60px;

  position: relative;

  background: transparent;

  border: none;

  border-radius: 0;

  box-shadow: none;
}


/* ==========================================
   ALBUM INFO
   ========================================== */

.album-info {
  width: 430px;

  max-width: 100%;

  text-align: left;
}


.album-info h1 {
  margin:
    0 0 10px;

  color:
    var(--bare3-light);

  font-size:
    clamp(
      36px,
      3.3vw,
      48px
    );

  line-height: 1;

  letter-spacing: 3px;

  text-shadow:
    0 0 18px
    rgba(230, 224, 209, .18),

    0 0 40px
    rgba(143, 102, 86, .11);
}


.album-info h1::after {
  content: "";

  display: block;

  width: 80px;

  height: 2px;

  margin-top: 18px;

  background:
    linear-gradient(
      90deg,
      var(--bare3-parchment),
      var(--bare3-sepia)
    );

  box-shadow:
    0 0 10px
    rgba(230, 224, 209, .15);
}


.album-title-line {
  display: block;

  white-space: nowrap;
}


.artist-name {
  margin:
    0 0 40px;

  color:
    rgba(241, 237, 226, .80);

  font-size: 18px;

  letter-spacing: 3px;
}


.artist-name a,
.artist-name a:visited {
  color:
    var(--bare3-light);

  text-decoration-color:
    rgba(143, 102, 86, .68);

  text-underline-offset: 4px;

  transition:
    color .3s ease,
    text-shadow .3s ease,
    text-decoration-color .3s ease;
}


.artist-name a:hover {
  color:
    var(--bare3-parchment);

  text-decoration-color:
    var(--bare3-parchment);

  text-shadow:
    0 0 12px
    rgba(230, 224, 209, .20);
}


.get-music {
  margin-bottom: 20px;

  color:
    rgba(230, 224, 209, .74);

  text-transform: uppercase;

  font-size: 12px;

  letter-spacing: 4px;
}


/* ==========================================
   STREAMING LINKS
   ========================================== */

.streaming-links {
  display: flex;

  flex-direction: column;

  gap: 12px;
}


.streaming-links a {
  position: relative;

  display: block;

  width: 100%;

  padding:
    13px 18px;

  box-sizing: border-box;

  overflow: hidden;

  color: #fff;

  text-align: center;

  text-decoration: none;

  letter-spacing: 1.5px;

  border:
    1px solid
    rgba(230, 224, 209, .28);

  border-radius: 999px;

  background:
    rgba(23, 21, 19, .12);

  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.streaming-links a::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 100%;

  height: 100%;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(230, 224, 209, .13) 50%,
      transparent 80%
    );

  transition:
    left .5s ease;

  pointer-events: none;
}


.streaming-links a:hover {
  transform:
    translateX(5px);

  border-color:
    rgba(230, 224, 209, .66);

  background:
    linear-gradient(
      90deg,
      rgba(143, 102, 86, .16),
      rgba(184, 174, 160, .07)
    );

  box-shadow:
    0 0 18px
    rgba(184, 174, 160, .10);
}


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


/* ==========================================
   ALBUM ART
   ========================================== */

.album-art-side {
  display: flex;

  justify-content: center;
}


.album-art {
  width: 500px;

  max-width: 100%;

  height: auto;

  border:
    1px solid
    rgba(230, 224, 209, .12);

  box-shadow:
    0 25px 78px
    rgba(0, 0, 0, .35),

    0 0 32px
    rgba(230, 224, 209, .08);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}


.album-art:hover {
  transform:
    scale(1.018);

  box-shadow:
    0 32px 90px
    rgba(0, 0, 0, .43),

    0 0 44px
    rgba(143, 102, 86, .15);
}


/* ==========================================
   TRACK LIST
   ========================================== */

.track-list {
  width: 100%;

  max-width: 700px;

  margin-top: 60px;

  text-align: left;
}


.track-list h2,
.album-description h2,
.album-details h2 {
  color:
    var(--bare3-light);

  text-shadow:
    0 0 12px
    rgba(230, 224, 209, .10);
}


.track-list h2 {
  margin-bottom: 25px;

  text-align: center;

  font-size: 28px;

  letter-spacing: 5px;
}


.track {
  width: 100%;

  display: grid;

  grid-template-columns:
    40px 1fr 300px;

  align-items: center;

  gap: 20px;

  margin-bottom: 8px;

  padding:
    16px 14px;

  box-sizing: border-box;

  border:
    1px solid
    rgba(230, 224, 209, .08);

  border-radius: 12px;

  background:
    rgba(23, 21, 19, .16);

  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}


.track:hover {
  transform:
    translateX(4px);

  border-color:
    rgba(230, 224, 209, .22);

  background:
    linear-gradient(
      90deg,
      rgba(143, 102, 86, .11),
      rgba(184, 174, 160, .05)
    );
}


.track-number {
  color:
    var(--bare3-paper);

  font-size: 14px;

  font-weight: bold;

  letter-spacing: 1px;
}


.track-name {
  color:
    rgba(250, 247, 238, .90);

  font-size: 18px;

  transition:
    color .3s ease,
    text-shadow .3s ease;
}


.track:hover .track-name {
  color: white;

  text-shadow:
    0 0 12px
    rgba(230, 224, 209, .18);
}


.track audio {
  width: 100%;

  height: 40px;
}


.track audio:not([controls]) {
  display: none;
}


/* ==========================================
   CUSTOM AUDIO PLAYER
   ========================================== */

.custom-audio-player {
  width: 100%;

  display: grid;

  grid-template-columns:
    46px 45px 1fr 45px;

  align-items: center;

  gap: 10px;

  padding:
    10px 12px;

  box-sizing: border-box;

  border:
    1px solid
    rgba(230, 224, 209, .10);

  border-radius: 14px;

  background:
    rgba(8, 7, 6, .28);

  box-shadow:
    inset 0 0 16px
    rgba(0, 0, 0, .17);

  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}


/* ==========================================
   PLAY BUTTON
   ========================================== */

.custom-play-button {
  position: relative;

  width: 44px;

  height: 44px;

  border:
    1px solid
    rgba(230, 224, 209, .46);

  border-radius: 50%;

  background:
    rgba(143, 102, 86, .09);

  color: transparent;

  font-size: 0;

  cursor: pointer;

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


.custom-play-button::before {
  content: "";

  position: absolute;

  top: 50%;

  left: 52%;

  width: 0;

  height: 0;

  transform:
    translate(-42%, -50%);

  border-top:
    7px solid transparent;

  border-bottom:
    7px solid transparent;

  border-left:
    11px solid
    var(--bare3-parchment);
}


.custom-play-button:hover {
  transform:
    scale(1.08);

  background:
    rgba(143, 102, 86, .19);

  border-color:
    var(--bare3-parchment);

  box-shadow:
    0 0 15px
    rgba(230, 224, 209, .14);
}


.track.playing
.custom-play-button::before {
  width: 4px;

  height: 14px;

  top: 50%;

  left: 42%;

  transform:
    translate(-50%, -50%);

  border: none;

  background:
    var(--bare3-sepia);
}


.track.playing
.custom-play-button::after {
  content: "";

  position: absolute;

  width: 4px;

  height: 14px;

  top: 50%;

  left: 58%;

  transform:
    translate(-50%, -50%);

  background:
    var(--bare3-sepia);
}


/* ==========================================
   AUDIO TIMES / PROGRESS
   ========================================== */

.current-time,
.duration {
  color:
    rgba(230, 224, 209, .60);

  font-size: 12px;

  text-align: center;
}


.progress-bar {
  width: 100%;

  height: 4px;

  appearance: none;

  -webkit-appearance: none;

  border-radius: 10px;

  background:
    rgba(230, 224, 209, .14);

  outline: none;

  cursor: pointer;
}


.progress-bar::-webkit-slider-thumb {
  width: 12px;

  height: 12px;

  -webkit-appearance: none;

  border: none;

  border-radius: 50%;

  background:
    var(--bare3-sepia);

  cursor: pointer;

  box-shadow:
    0 0 9px
    rgba(143, 102, 86, .34);
}


.progress-bar::-moz-range-thumb {
  width: 12px;

  height: 12px;

  border: none;

  border-radius: 50%;

  background:
    var(--bare3-sepia);

  cursor: pointer;

  box-shadow:
    0 0 9px
    rgba(143, 102, 86, .34);
}


/* ==========================================
   AUDIO STATUS
   ========================================== */

.custom-audio-player .audio-status {
  grid-column:
    1 / -1;

  margin: 0;

  color:
    rgba(230, 224, 209, .68);

  font-size: .8rem;

  line-height: 1.5;

  white-space: normal;

  overflow-wrap: anywhere;
}


.custom-audio-player
.audio-status[hidden] {
  display: none;
}


/* ==========================================
   PLAYING TRACK
   ========================================== */

.track.playing {
  background:
    linear-gradient(
      90deg,
      rgba(143, 102, 86, .18),
      rgba(230, 224, 209, .055)
    );

  border-color:
    rgba(230, 224, 209, .32);

  box-shadow:
    0 0 22px
    rgba(184, 174, 160, .07);
}


.track.playing
.track-number {
  color:
    var(--bare3-parchment);
}


.track.playing
.track-name {
  color: white;

  font-weight: bold;

  text-shadow:
    0 0 12px
    rgba(230, 224, 209, .18);
}


.track.playing
.custom-audio-player {
  background:
    rgba(143, 102, 86, .11);

  border-color:
    rgba(230, 224, 209, .23);
}


/* ==========================================
   ACCESSIBILITY
   ========================================== */

.custom-play-button:focus-visible,
.progress-bar:focus-visible,
.streaming-links a:focus-visible,
.back-link:focus-visible {
  outline:
    2px solid
    var(--bare3-parchment);

  outline-offset: 3px;
}


/* ==========================================
   ABOUT
   ========================================== */

.album-description {
  width: 100%;

  max-width: 700px;

  margin:
    80px auto 40px;

  text-align: center;

  background: transparent;

  border: none;

  box-shadow: none;
}


.album-description h2 {
  margin-bottom: 25px;

  font-size: 28px;

  letter-spacing: 5px;
}


.album-description p {
  color:
    rgba(230, 224, 209, .76);

  font-size: 18px;

  line-height: 1.7;
}


/* ==========================================
   ALBUM DETAILS
   ========================================== */

.album-details {
  width: 100%;

  max-width: 700px;

  margin:
    60px auto 80px;

  text-align: center;

  background: transparent;

  border: none;

  box-shadow: none;
}


.album-details h2 {
  margin-bottom: 25px;

  font-size: 28px;

  letter-spacing: 5px;
}


.album-details p {
  margin:
    5px 0;

  color:
    rgba(230, 224, 209, .74);

  font-size: 16px;

  line-height: 1.8;
}


.album-details strong {
  color:
    var(--bare3-parchment);
}


/* ==========================================
   LEVIAS MUSIC UNIVERSAL SOCIAL HUB
   KEEP BLACK / RED
   ========================================== */

.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 MUSIC BRAND
   ========================================== */

.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);
}


/* ==========================================
   HUB SECTIONS
   ========================================== */

.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;
}


/* ==========================================
   HUB LINKS
   ========================================== */

.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%;
}


/* ==========================================
   HUB DIVIDER
   ========================================== */

.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);
}


/* ==========================================
   SHARE
   ========================================== */

.levias-share-section {
  padding-bottom: 5px;
}


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


/* ==========================================
   LEVIAS MUSIC RETURN
   ========================================== */

.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);
}


/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  width: 100%;

  padding:
    50px 20px;

  box-sizing: border-box;

  text-align: center;

  background:
    #000;

  border-top:
    1px solid
    rgba(255, 255, 255, .08);
}


.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
   DISABLED FOR NOW
   ========================================== */

.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;

  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);
}


/* ==========================================
   TABLET + MOBILE
   ========================================== */

@media (max-width: 900px),
       (max-device-width: 900px) and (pointer: coarse) {

  .album-page {
    width: 100%;

    padding:
      30px
      clamp(16px, 5vw, 40px);

    box-sizing: border-box;
  }


  .album-header {
    width: 100%;

    max-width: 700px;

    flex-direction: column;

    gap: 45px;

    margin-bottom: 45px;
  }


  .album-art-side {
    width: 100%;

    display: flex;

    justify-content: center;

    order: 1;
  }


  .album-art {
    width:
      clamp(
        220px,
        72vw,
        420px
      );

    max-width: 100%;

    height: auto;
  }


  .album-info {
    width: 100%;

    max-width: 430px;

    text-align: center;

    order: 2;
  }


  .album-info h1 {
    font-size:
      clamp(
        29px,
        8vw,
        44px
      );

    line-height: 1.02;

    letter-spacing:
      clamp(
        1.5px,
        1vw,
        3px
      );
  }


  .album-info h1::after {
    margin-left: auto;

    margin-right: auto;
  }


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


  .artist-name {
    margin-bottom: 35px;
  }


  .streaming-links {
    width: 100%;

    max-width: 360px;

    margin:
      0 auto;
  }


  .track-list,
  .album-description,
  .album-details {
    width: 100%;

    max-width: 700px;

    box-sizing: border-box;
  }


  .track {
    grid-template-columns:
      35px minmax(0, 1fr);

    gap: 10px;

    padding:
      16px 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%;

    max-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;
  }

}


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

@media (max-width: 600px) {

  body::after {
    height: 520px;
  }


  .back-link {
    margin: 18px;

    padding:
      11px 15px;

    font-size: 11px;
  }


  .album-info h1 {
    font-size:
      clamp(
        24px,
        6.8vw,
        33px
      );

    letter-spacing: 1px;
  }


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


  .track-list h2,
  .album-description h2,
  .album-details h2 {
    font-size: 23px;

    letter-spacing: 4px;
  }


  .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;
  }

}


/* ==========================================
   REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration:
      .01ms !important;

    animation-duration:
      .01ms !important;

    animation-iteration-count:
      1 !important;
  }

}
