* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  font-family: "Urbanist", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

section {
  width: 36rem;
  min-height: 52rem;
  background: rgba(33, 35, 46, 0.9);
  backdrop-filter: blur(20px);
  text-align: center;
  padding: 2.4rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#countDown {
  font-size: 10rem;
  font-weight: bold;
  color: #fb6087;
  margin-bottom: 2.4rem;
  text-shadow: 0 0 15px rgba(251, 96, 135, 0.7),
    0 0 30px rgba(251, 96, 135, 0.5);
}

.buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

button {
  background: linear-gradient(135deg, #f5ee62, #ff9f68);
  padding: 1rem 2rem;
  border-radius: 10rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  color: #21232e;
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(245, 238, 98, 0.3);
}

button:hover {
  background: transparent;
  color: #f5ee62;
  box-shadow: 0 0 1rem #f5ee62, inset 0 0 0.3rem #f5ee62;
}

#resetValue {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  min-height: 3rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}

#resetValue p {
  margin: 0.6rem 0;
  color: #f5ee62;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(245, 238, 98, 0.6);
}
