/* 
  gtfo out the code u niggger
 */


html, body {
  margin: 0;
  padding: 0;
  overflow: auto;
}

body {
  margin: 0;
}


.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-left: auto;
  margin-right: auto;

  position: relative;
  top: 30px;
  left: 0;
  width: 50%;
  height: 80px;
  /* background: rgba(0, 0, 0, 0.5); */

  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  

  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 1000;

  border-radius: 15px;
  pointer-events: none;
}

.toolbar * {
  pointer-events: auto;
}

#toolbarCenter {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.toolbar button {
  padding: 12px 20px;
  border: none;

  background: rgba(255, 255, 255, 0);
  text-shadow: none;

  /* color: white; */
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;

}

.toolbar button:hover {
  padding: 12px 20px;
  border: none;

  transform: scale(1.1);

  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(3.7px);
  backdrop-filter: blur(3.7px);


  /* color: white; */
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.toolbar button:active {
  transform: scale(0.95);

  padding: 12px 20px;
  border: none;

  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  /* color: white; */
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.toolbar #sideElementLeft {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 100%;
  overflow: visible;
}

.toolbar #sideElementRight {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 100%;

}

#loginButton {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.7px;
  word-spacing: 0.7px;
  color: rgb(225, 127, 255);
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  background: rgba(255, 255, 255, 0);

  text-shadow:
    0 0 8px rgb(153, 0, 255),
    0 0 16px rgb(153, 0, 255),
    0 0 32px rgb(22, 0, 37);
}

#signupButton {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.7px;
  word-spacing: 0.7px;
  color: rgb(225, 127, 255);
  font-weight: 400;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  background: rgba(255, 255, 255, 0);

  text-shadow:
    0 0 8px rgb(153, 0, 255),
    0 0 16px rgb(153, 0, 255),
    0 0 32px rgb(22, 0, 37);
}

.stats {
  display: flex;
  justify-content: space-evenly;

  margin-left: auto;
  margin-right: auto;

  position: relative;
  top: 30px;
  left: 0;
  width: 30%;
  height: 50px;


  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 1000;

}


#buttonText {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 4.2px;
  word-spacing: -1.4px;
  color: rgb(225, 127, 255);
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: lowercase;

  text-shadow:
    0 0 8px rgb(153, 0, 255),
    0 0 16px rgb(153, 0, 255),
    0 0 32px rgb(22, 0, 37);
}

#logoText {
  font-family: monospace;
  font-size: 20px;
  letter-spacing: 3px;
  word-spacing: -1.4px;
  color: rgb(225, 127, 255);
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  position: relative;

  text-shadow:
    0 0 10px rgb(153, 0, 255),
    0 0 20px rgb(153, 0, 255),
    0 0 30px rgb(22, 0, 37);
}

#logoText::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  color: rgb(225, 127, 255);
  text-shadow: 0 0 5px rgb(153, 0, 255), 0 0 15px rgb(153, 0, 255);
}

#logoText:hover::before {
  animation: glitch 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
}

@keyframes glitch {
  0%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }
  33% {
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%);
    transform: translate(-5px, -5px);
  }
  66% {
    clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(5px, 5px);
  }
}

#logoText:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s;
}



#logoImage {
  width: 70px;
  height: 70px;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.1s;
}

#logoImage:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

#logoImage:active {
  transform: scale(0.95);
  transition: transform 0.1s;
}

#loginButton {
  padding: 12px 20px;
  border: none;

  background: rgba(255, 255, 255, 0);
  text-shadow:
    0 0 8px rgb(153, 0, 255),
    0 0 16px rgb(153, 0, 255),
    0 0 32px rgb(22, 0, 37);

  /* color: white; */
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;

}

#loginButton:hover {
  padding: 12px 20px;
  border: none;

  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(3.7px);
  backdrop-filter: blur(3.7px);


  /* color: white; */
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

#loginButton:active {

  padding: 12px 20px;
  border: none;

  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}


.features {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: auto;
  margin-right: auto;

  position: relative;
  top: 50px;
  left: 0;
  width: 80%;
  height: auto;

  perspective: 1000px;
  gap: 20px;
  z-index: 100;
  pointer-events: none;
}

.features > * {
  pointer-events: auto;
}

.feature-nav-btn {
  background: rgba(153, 0, 255, 0.2);
  border: 2px solid rgb(225, 127, 255);
  color: rgb(225, 127, 255);
  font-size: 32px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow:
    0 0 8px rgb(153, 0, 255),
    0 0 16px rgb(153, 0, 255);
  box-shadow: 0 0 15px rgba(153, 0, 255, 0.3);
  z-index: 10;
  position: relative;
}

.feature-nav-btn:hover {
  background: rgba(153, 0, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(153, 0, 255, 0.6);
}

.feature-nav-btn:active {
  transform: scale(0.95);
}


#features {
  transition: transform 0.1s, opacity 0.4s ease;
  transform-style: preserve-3d;
  background: #000;
  position: relative;
  z-index: 2;
}


.mainText {


  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin-left: auto;
  margin-right: auto;

  position: relative;
  top: 80px;
  left: 0;
  width: 700px;
  height: auto;
  text-align: center;
}

#mainHeading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 50px;
  letter-spacing: 2px;
  word-spacing: 0px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  margin: 0;
}

.mainText h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgb(200, 200, 200);
  font-weight: 300;
  text-decoration: none;
  font-style: normal;
  font-variant: normal;
  text-transform: lowercase;
  margin: 15px 0 0 0;
  opacity: 1;
  display: block;
}



#mainHeading .glitch-text {
  font-family: monospace;
  color: rgb(225, 127, 255);
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 10px rgb(153, 0, 255),
    0 0 20px rgb(153, 0, 255),
    0 0 30px rgb(22, 0, 37);
}

#mainHeading .glitch-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: glitch 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  color: rgb(225, 127, 255);
  text-shadow: 0 0 5px rgb(153, 0, 255), 0 0 15px rgb(153, 0, 255);
}

.html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
 
.background {
    --s: 214px; 
    --c1: #420034;
    --c2: #000000;
    --_g: #0000 90deg,var(--c1) 0;
    background: 
      conic-gradient(from 90deg at 2px 2px,var(--_g)),
      conic-gradient(from 90deg at 1px 1px,var(--_g)),
      var(--c2);
    background-size: var(--s) var(--s), calc(var(--s)/4) calc(var(--s)/4);
    color: #fff;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  pointer-events: none;
  z-index: 1;
}

.background-grid-square {
  pointer-events: auto;
  transition: background var(--fade-duration, 0.7s), box-shadow var(--fade-duration, 0.7s), filter var(--fade-duration, 0.7s);
  background: transparent;
}
.background-grid-square.lit {
  background: var(--glow-bg, rgba(78,202,255,0.18));
  box-shadow: var(--glow-shadow, 0 0 24px 8px #4ecaff99);
  filter: brightness(var(--glow-brightness,2.5)) saturate(var(--glow-saturation,2));
  transition: none;
}
