@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");

:root {
  --bg: #000000;
  --clr-1: #33ff8c;
  --clr-2: #33ff8c;
  --clr-3: #33ff8c;
  --clr-4: #33ff8c;

  --blur: 1rem;
  --fs: clamp(3rem, 8vw, 7rem);
  --ls: clamp(-1.75px, -0.25vw, -3.5px);
  }

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-color: var(--bg);
  color: #fff;
  font-family: "Inter", "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
  user-select: none; /* Standard */
}

body {
  background-color: #111111;
  margin: 0;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url('/images/static.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation .2s infinite;
  opacity: .9;
  visibility: visible;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}


*,
*::before,
*::after {
  font-family: inherit;
  box-sizing: border-box;
}

.content {
  text-align: center;
}

.title {
  font-size: var(--fs);
  font-weight: 800;
  letter-spacing: var(--ls);
  position: relative;
  overflow: hidden;
  margin: 0;
}

.subtitle {
  margin-top: 0.175rem
}

a.errorsubtitle {
  text-decoration: none;   
  color: white;            
  cursor: pointer;         
  font-weight: 800;
  margin-top: 0.175rem        
}

a.errorsubtitle:hover, 
a.errorsubtitle:focus, 
a.errorsubtitle:active {
  text-decoration: none;   
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: var(--clr-3);
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: var(--clr-2);
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: var(--clr-4);
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Space between buttons */
  justify-content: center;
  margin-top: 20px;
  z-index: 0;
}

/* Button and its related styles remain unchanged */
.Btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #181818;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
  transition: all .3s;
}

.Btn:hover {
  background-color: #2c2c2c;
}

.trail {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #33ff8c; /* Transparent green */
  pointer-events: none; /* Ignore mouse events */
  transform: scale(1);
  animation: fadeOut 0.5s ease-out forwards, shrink 0.5s ease-out forwards;
}

/* Fade out the trail */
@keyframes fadeOut {
  to {
      opacity: 0;
  }
}

/* Shrink the trail size */
@keyframes shrink {
  to {
      transform: scale(0);
  }
}

.svgContainer {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all .3s;
  border: 1px solid rgb(181818);
}

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #181818;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all .3s;
}

#status-container {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 0; /* Ensure it appears above other content */
  display: flex; /* Align items horizontally */
  align-items: center; /* Center vertically */
}

#status-icon {
  width: 24px; /* Adjust size as needed */
  height: 24px; /* Adjust size as needed */
}

#status-text {
  margin-right: 12px; /* Space between icon and text */
  font-size: 14px; /* Adjust font size as needed */
  color: #ffffff; /* Adjust text color as needed */
  text-decoration: none;
  cursor: help;
}

.eye-closure {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999; /* Ensure it's above all other content */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none; /* Ensure it doesn’t interfere with other elements */
}

.eye-closure.open {
  opacity: 1;
}

.music-player {
  position: fixed; /* Keep it in the same position */
  top: 10px; /* Adjust as necessary */
  left: 10px; /* Adjust as necessary */
  padding: 10px;
  color: white; /* Button icon color */
  display: none; /* makes it invisible so no one can play shit */
}

.controls {
  display: flex; /* Align buttons in a row */
  gap: 10px; /* Space between buttons */
}

/* Button styles */
button {
  background-color: transparent; /* Make buttons transparent */
  border: none; /* Remove border */
  cursor: pointer; /* Pointer on hover */
  padding: 5px; /* Button padding */
}

button svg {
  width: 24px; /* Icon size */
  height: 24px; /* Icon size */
}

button:hover svg {
  fill: rgba(255, 255, 255, 0.7); /* Light hover effect */
}

