body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: url('../ASSETS/Images/KL00002CAB02025.jpg') center/cover no-repeat fixed;
  overflow-x: hidden;
  position: relative; 
}

#ShortBio {
  top: 0;
  left: 0;
  margin-top: 10%;
  margin-bottom: 15%;
  max-width: 640px;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0.8rem;
  line-height: 1.4;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  user-select: none;
  z-index: 10;
}

/* ----------------------Cookie - Banner */
#CookieBanner {
  inset: 0;
  width: 100%;
  position: fixed;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.699); 
  backdrop-filter: blur(5px);
  animation: CFadeIn 1.5s ease-in;
  will-change: transform, opacity;
  z-index: 201;
}

#CookieTextBox {
  max-width: 330px;
  box-sizing: border-box;
  padding: 0.5rem;
  font-family: Arial, Helvetica;
  font-size: 0.75rem;
  user-select: none;
}

#CookieTitle {
  color: #ffffff;
  font-weight: bolder;
  font-style: normal;
  font-size: 1.15rem;
  text-align: center;
  padding-top: 10px;
}
#CookieTitle p {
  color: #ffffffd5;
  font-weight: normal;
  font-style: italic;
  font-size: 0.75rem; 
  text-align: center;
  text-transform: none;
}
#CookieTitle a {
  color: #ffffffbd;
  font-size: 0.70rem;
  font-style: italic;
  text-decoration: underline;
  -webkit-user-drag: none;
}

#ButtonBox {
  text-align: center;
}  
#B1, #B2 {
  margin-left: 0;
  margin-right: 10px;
  margin-top: 0.8rem;
  padding: 0.4rem 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Arial';
  font-size: 0.6rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #ffffff91; 
  color: #000000;
}
#B1:active, #B2:active, #close-banner:active {
  background-color: #383838;
  transform: scale(0.95);
}

/* ----------------------Animations - Cookie - Banner */  
@keyframes CFadeIn {
  0% { opacity: 0.1; }
  100% { opacity: 0.8; }
}

/* ----------------------Moving Clouds */
.Cloudy picture {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow: hidden; 
  pointer-events: none;
  z-index: 2; 
}
.Cloudy picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  animation: Drift calc(10s * var(--i)) linear infinite, Fader calc(5s * var(--i)) ease-in infinite;
}

/* ----------------------Animations - Moving Clouds */
@keyframes Drift {
  0% { transform: translatex(10%);}
  100% { transform: translatex(-90%);}
}

@keyframes Fader {
  0%, 100% { opacity: 0; }
  80% { opacity: 1; }
}
/* ----------------------Background */
.ViewportTopGradient {
  top: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  position: fixed;
  background: linear-gradient(
    to bottom,
      hsl(32, 100%, 21%) 0%,
      hsla(32, 100%, 21%, 0.738) 19%,
      hsla(32, 100%, 21%, 0.541) 34%,
      hsla(32, 100%, 21%, 0.382) 47%,
      hsla(32, 100%, 21%, 0.278) 56.5%,
      hsla(32, 100%, 21%, 0.194) 65%,
      hsla(32, 100%, 21%, 0.126) 73%,
      hsla(32, 100%, 21%, 0.075) 80.2%,
      hsla(32, 100%, 21%, 0.042) 86.1%,
      hsla(32, 100%, 21%, 0.021) 91%,
      hsla(32, 100%, 21%, 0.008) 95.2%,
      hsla(32, 100%, 21%, 0.002) 98.2%,
      hsla(32, 100%, 21%, 0) 100%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
}

.ViewportBottomGradient {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  position: fixed;
  background: linear-gradient(
    to top,
      hsl(0, 0%, 100%) 0%,
      hsla(0, 0%, 100%, 0.738) 19%,
      hsla(0, 0%, 100%, 0.541) 34%,
      hsla(0, 0%, 100%, 0.382) 47%,
      hsla(0, 0%, 100%, 0.278) 56.5%,
      hsla(0, 0%, 100%, 0.194) 65%,
      hsla(0, 0%, 100%, 0.126) 73%,
      hsla(0, 0%, 100%, 0.075) 80.2%,
      hsla(0, 0%, 100%, 0.042) 86.1%,
      hsla(0, 0%, 100%, 0.021) 91%,
      hsla(0, 0%, 100%, 0.008) 95.2%,
      hsla(0, 0%, 100%, 0.002) 98.2%,
      hsla(0, 0%, 100%, 0) 100%);
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 1;
}

/* ----------------------Full Nav*/
.FullNav {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  flex-direction: row;
  justify-content: center;
  display: flex;
  position: fixed;
  gap: 10px;
  z-index: 199;
}

#NT {
  top: 14px;
  max-width: 200px;
  position: relative;
}

#MV {
  top: 17.5px;
  max-width: 178px;
  position: relative;
}

#B {
  top: 18px;
  max-width: 82px;
  position: relative;
}

#M {
  top: 20px;
  max-width: 121px;
  position: relative;
}

.ScoFull {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-top: 23px;
}
.ScoFull img {
  display: block;
  width: 17px;
  max-width: 100%;
  height: auto;
  filter: brightness(0)saturate(100%) invert(100%);
  text-decoration: none;
}

/* ----------------------Mobile Nav*/
.NavBar, .ShortNav, .Artist {
  display: none;
}

/* ----------------------Foooter */ 
 footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 201;
}

.Copyright {
  font-size: 0.6rem;
  margin: 7px;
  color: rgba(0, 0, 0, 0.438);
  user-select: none;
}

.PPolicy {
  font-size: 0.6rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.438);
  text-decoration: none;
}

.More {
  font-size: 0.6rem;
  font-style: normal;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.438);
  text-decoration: none;
}

@media screen and (max-width: 800px) {
.Artist {
  top: 24px;
  display: block;
  justify-content: center;
  position: fixed;
  z-index: 6;
}
.Artist img {
  max-width: 180px;
  position: relative; 
}  

/* ----------------------Mobile Nav*/
.NavBar {
  position: fixed;
  justify-content: center;
  height: 40px;
  gap: 4px;
  top: 20px;
  right: 22px;
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
  z-index: 200;
  background: transparent;
  
}
.NavBar div {
  height: 2px;
  width: 30px;
  background: rgb(255, 255, 255);
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
  z-index: 200;
}
.NavBar.open div:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 2px;
}
.NavBar.open div:nth-child(2) {
  opacity: 0;
}
.NavBar.open div:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -10px;
}

.ShortNav {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  backdrop-filter: blur(20px);
  background-color: transparent;
  gap: 20px;
  z-index: 199;
  transition: opacity 5s;
}
.ShortNav.show {
  display: flex;
}

#NameTitle {
  max-width: 350px;
  display: block;
  justify-content: center;
  position: relative;
}

#Music-Video {
  max-width: 200px;
  display: block;
  position: relative;
}

#Bio {
  max-width: 93px;
  display: block;
  position: relative;
}

#MERCH {
  max-width: 140px;
  display: block;
  position: relative;
}

.Sco {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  margin-top: 26px;
}
.Sco img {
  display: block;
  width: 19px;
  max-width: 100%;
  height: auto;
  filter: brightness(0)saturate(100%) invert(100%);
  text-decoration: none;
}

/* ----------------------Full Nav*/
#NT, #B, #MS, #M, #MV, .ScoFull {
  display: none;
}
}