* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  animation: fadeIn 1s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #0ff;
}

#count {
  font-size: 3.5rem;
  color: #0ff;
  margin: 30px 0;
  transition: transform 0.3s ease;
  text-shadow: 0 0 15px #0ff;
}

button {
  background: transparent;
  border: 2px solid #0ff;
  color: #0ff;
  padding: 12px 25px;
  margin: 10px 5px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
  box-shadow: 0 0 8px #0ff;
}

button:hover {
  background-color: #0ff;
  color: #111;
  box-shadow: 0 0 20px #0ff, 0 0 25px #0ff inset;
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  #count {
    font-size: 3rem;
  }

  button {
    font-size: 1.1rem;
    padding: 10px 22px;
    min-width: 80px;
  }
}

@media (max-width: 460px) {
  .container {
    padding: 25px 15px;
  }

  h1 {
    font-size: 1.7rem;
  }

  #count {
    font-size: 2.5rem;
  }

  button {
    font-size: 1rem;
    padding: 9px 18px;
  }
}
