* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff8f8;
  color: #3a2526;
}

.hero {
  padding: 80px 20px;
  text-align: center;
}

h1 {
  font-size: 48px;
  margin: 0;
  background: linear-gradient(90deg, #E1585EFF, #F8B2B5FF);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.subtitle {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 800;
  opacity: 0.4;
  color: rgb(188, 188, 188);
}

.card {
  margin: 40px auto;
  padding: 28px;
  background: #ffffffcc;
  border-radius: 24px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}

input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 3px solid #e1585e;
  font-size: 16px;
  margin-bottom: 14px;
  outline: none;
  background: #ffffff;
}

input::placeholder {
  color: rgb(188, 188, 188);
  opacity: 0.6;
}

input:focus {
  border-color: #e1585e;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #e1585e;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s;
}

button:hover {
  transform: translateY(-2px);
}

#count {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #e1585e;
}

#message {
  margin-top: 12px;
  font-size: 16px;
}

footer {
  margin-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  font-weight: 400;
}
