/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  font-family: 'Fantasy', copperplate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

/* Centered Main Element */
#neurabot {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 70px #ffffff, 0 0 80px #ffffff, 0 0 100px #ffffff, 0 0 150px #ffffff;
  cursor: pointer;
  opacity: 0.9;
  transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
  padding: 10px;
}

#neurabot:active {
  transform: scale(1.1);
}

/* Explanation Box */
#explanation {
  width: 90%;
  max-width: 600px;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #ffffff, 0 0 70px #ffffff, 0 0 80px #ffffff, 0 0 100px #ffffff, 0 0 150px #ffffff;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin-top: 20px;
}

#explanation.show {
  display: block;
  opacity: 1;
}

/* Buttons */
#xButton, #tgButton {
  position: relative;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  background: none;
  color: white;
  cursor: pointer;
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  transition: transform 0.3s ease-in-out;
}

#xButton:hover, #tgButton:hover {
  transform: scale(1.2);
}

#tgButton img {
  /* Color filter to make the logo white */
  filter: invert(100%) sepia(0) saturate(0) hue-rotate(100deg);
   filter: invert(100%) sepia(100%) saturate(0) hue-rotate(180deg) drop-shadow(0 0 1px #ffffff) drop-shadow(0 0 10px #ffffff);
}

#tgButton:hover {
  transform: scale(1.2);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  #neurabot {
    font-size: 1.5rem;
  }

  #explanation {
    font-size: 1rem;
  }

  #xButton, #tgButton {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.container {
  width: 100%;
  max-width: 90vw;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

