body {
  background-color: #000000;
  font-family: sans-serif;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gradient-text {
  background-image: linear-gradient(to right, white 50%, #00ff00 50%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 48px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

input[type="text"] {
  font-size: 18px;
  padding: 12px 16px;
  border: none;
  border-radius: 30px;
  outline: none;
  width: 400px;
}

button[type="button"] {
  background-color: #1ed760;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  margin-left: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button[type="button"]:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0px 0px 20px #00ff15;
}

button[type="button"]:active {
  transform: rotate(360deg);
}

.green-text {
  color: #1ed760;
}

.user-info-container {
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 40px;
}

.user-info-container.active {
  opacity: 1;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

img {
  width: 120px;
  height: 120px;
  border: 4px solid #1db954;
  border-radius: 50%;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
}

.user-info-container {
  border: 2px solid #1db954;
  border-radius: 10px;
  padding: 20px;
}

