@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  /* Dynamic "Cyber" Gradient */
  background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px); /* Modern Glass effect */
  border: 4px solid #fff;
  padding: 40px;
  width: 400px;
  text-align: center;
  border-radius: 0px; /* Anime UI often uses sharp or skewed edges */
  transform: skew(-2deg); /* The "Action" tilt */
  box-shadow: 15px 15px 0px #ff0055; /* Offset bold shadow */
}

h1 {
  font-size: 45px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -2px;
  text-shadow: 4px 4px #ff0055;
  margin-bottom: 20px;
}

p {
  color: #00f2ff;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}

#user {
  width: 100%;
  background: #fff;
  border: 4px solid #00f2ff;
  padding: 15px;
  font-size: 24px;
  font-weight: 900;
  outline: none;
  transform: skew(2deg); /* Counter-skew to make text readable */
  margin-bottom: 20px;
}

#btn {
  width: 100%;
  height: 60px;
  background: #ff0055;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); /* Sharp stylized shape */
  transition: 0.2s;
}

#btn:hover {
  background: #00f2ff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f2ff;
}

#count {
  font-size: 40px;
  color: #fff;
  text-shadow: 0 0 10px #ff0055;
}

.result {
  margin-top: 30px;
  padding: 10px;
  background: #fff;
  color: #000;
  font-weight: 900;
  transform: skew(-10deg);
}

#result {
  font-size: 22px;
}