body {
  margin: 0;
  color: floralwhite;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  background: black;
  overflow-x: hidden;
  position: relative; 
}

#Info {
  top: 0;
  left: 0;
  justify-content: center;
  max-width: 300px;
  box-sizing: border-box;
  border-radius: 10px;
  text-transform: uppercase;
  color: #000000;
  user-select: none;
  z-index: 10;

}

.video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  pointer-events: none;
}
/* ----------------------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; }
}

/* ----------------------Title */
.Artist {
  top: 24px;
  display: block;
  justify-content: center;
  position: fixed;
  z-index: 15;
}
.Artist img {
  max-width: 350px;
  position: relative; 

}  
@media screen and (max-width: 800px) {
.Artist {
  top: 24px;
  display: block;
  justify-content: center;
  position: fixed;
}
.Artist img {
  max-width: 300px;
  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;
}
#NameTitle {
  max-width: 300px;
  display: block;
  justify-content: center;
  position: relative;
}
.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;
}


/* ----------------------Foooter */ 
 footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  text-align: left;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: left;
  gap: 10px;
  line-height: 1.2;
  z-index: 201;
}

.Copyright {
  text-transform: uppercase;
  font-size: 0.6rem;
  margin: 1.2rem;
  color: #ffffffa6;
  user-select: none;
}
.Copyright img {
  image-rendering: crisp-edges;
  margin-top: 0.45rem;
  max-width: 10.02rem;
  opacity: 0.85;
  pointer-events: none;
}
.PPolicy {
  font-size: 0.5rem;
  color: #ffffff94;
  text-decoration: none;
}
.More {
  font-size: 0.5rem;
  color: #ffffffa6;
  text-decoration: none;
}

/* Social Media Links*/
.socials {
  margin: 1.2rem;
  display: flex;
  gap: 1rem; 
}
.socials img {
  margin-top: 1.45rem;
  width: 17px;
  height: auto; 
}

@media screen and (max-width: 800px) {
footer {
  text-align: center;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
.socials {
  margin: -1.2rem;
  display: flex;
  gap: 1rem;
}

}

@keyframes Huey {
  0% { filter: hue-rotate(0deg);}
  100% { filter: hue-rotate(360deg);}
}

