@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #1e1e2e, #23232e);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
  width: 400px;
  max-width: 100%;
  animation: fadeIn 0.6s ease-in-out;
}

h1 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}

.move {
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  transition: all 0.3s ease-in-out;
}

.name {
  font-size: 18px;
  font-weight: 400;
  margin-top: 5px;
  color: #00d4ff;
  transition: all 0.3s ease-in-out;
}

.generate-button {
  margin-top: 25px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.generate-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.6);
}

.generate-button:active,
.generate-button.clicked {
  transform: scale(0.92);
  box-shadow: 0 5px 10px rgba(255, 204, 0, 0.4);
}

.info {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 500px) {
  .container {
    width: 90%;
    padding: 30px;
  }

  h1 {
    font-size: 20px;
  }

  .move {
    font-size: 22px;
  }

  .name {
    font-size: 16px;
  }

  .generate-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .info {
    font-size: 12px;
  }
}

@media screen and (max-width: 350px) {
  .container {
    width: 95%;
    padding: 20px;
  }

  h1 {
    font-size: 18px;
  }

  .move {
    font-size: 20px;
  }

  .generate-button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media screen and (max-width: 210px) {
  .container {
    width: 100%;
    padding: 15px;
  }

  h1 {
    font-size: 12px;
  }

  .move {
    font-size: 14px;
  }

  .name {
    font-size: 12px;
  }

  .generate-button {
    font-size: 10px;
    padding: 6px 12px;
  }

  .info {
    font-size: 10px;
  }
}

