.psychic-generator-tool {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.psychic-generator-tool__title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #4CAF50, #00ff99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-transform: uppercase;
}

.psychic-generator-tool__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.psychic-generator-tool__button {
  background-color: #4CAF50;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.psychic-generator-tool__button:hover {
  background-color: #45a049;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
  transform: scale(1.03);
}

.psychic-generator-tool__output {
  min-height: 60px;
  font-size: 22px;
  color: #00ffcc;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 600px) {
  .psychic-generator-tool {
    padding: 20px 15px;
  }

  .psychic-generator-tool__title {
    font-size: 1.3rem;
  }

  .psychic-generator-tool__button {
    font-size: 16px;
  }

  .psychic-generator-tool__output {
    font-size: 20px;
  }
}
