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;
  overflow-x: hidden;
  position: relative; 
  
}

/* ----------------------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(25s * 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; }
}
.Artist {
  display: none;
}

/* ----------------------Birds */
.BirdsFly {
  inset: 0;
  width: 100%;
  height: auto;
  position: fixed;
  overflow: hidden; 
  pointer-events: none;
  z-index: 3;
}
.BirdsFly img {
  display: inline-block;
  width: 300px;
  animation: BirdFly 15s ease-in-out infinite, BirdFade 1s ease-in-out infinite;
}

/* ----------------------Animations - Birds */
@keyframes BirdFly {
  0% { transform: translatex(-90%);}
  100% { transform: translatex(100%);}
}
@keyframes BirdFade {
  0%, 100% { opacity: 0; }
  80% { opacity: 1; }
}


/* ----------------------Background */

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

.ViewportBottomGradient {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  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: 11;
}

#FullGlass {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: transparent;
  backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: 4;
  animation: GrayOops 10s infinite;
}

.PartTwoBackground {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  background: url('../Assets/Images/0000000WCS2025.png') center/cover no-repeat fixed;
  pointer-events: none; 
  z-index: 1;
}
.PartThreeBackground {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  position: absolute;
  background: url('../Assets/Images/0000000WCS2025.png') center/cover no-repeat fixed;
  pointer-events: none; 
  animation: Fader 4s ease-in-out infinite;
  z-index: 12;
}

/* ----------------------QR */
.QR {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: fixed;
  z-index: 20;
}
.QR img {
  width: 125px;
  height: auto;
  display: block;
  border-radius: 4px 0px 0px 4px;
  z-index: 20;
}
@media screen and (max-width: 1023px) {
  .QR img {
  display: none;
  }
}

/* ----------------------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; 
  
}  
}

#Info {
  width: 350px;
  font-size: medium;
  font-weight: normal;
  text-transform: capitalize;
  color: #000000;
  background-color: transparent;
  line-height: 1.4rem;
  box-sizing: border-box;
  z-index: 7;
}

span {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: black;
  z-index: 7;
}

/* ----------------------Link Hub */

.LinkHub {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  gap: 20px;
  margin-bottom: 40%;
  margin-top: 35%;
  z-index: 7;
}

@media screen and (max-width: 375px){
.LinkHub {
  max-width: 300px;
}
}
.Links {
  width: 100%;
  display: block;
  justify-content: center;
  align-items: center;
  background-color: rgb(29, 29, 29);
  padding: 20px;
  flex: 1 1 auto;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 5px -10px 20px 0px #faf0ba50;
  z-index: 7;
}
.Links:active {
  background-color: #383838;
  transform: scale(0.98);
}
.KL {
  display: inline-block;
  justify-content: center;
  width: 130px;
  height: auto;
}

.L2 {
  display: inline-block;
  justify-content: center;
  width: 130px;
  height: auto;
}

.Links:active {
  background-color: #38383879;
  transform: scale(0.95);
}

/* ----------------------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, #Split {
  font-size: 0.6rem;
  margin: 7px;
  color: rgba(0, 0, 0, 0.438);
  user-select: none;
}
.Copyright a {
  font-size: 0.6rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.438);
  text-decoration: none;
}



