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

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background: #f6f1eb;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #ffc400;
}

a:hover {
  text-decoration: underline;
}

/* ===== Soft Gradient Background ===== */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, #ffe7d6, transparent 50%),
    radial-gradient(circle at bottom right, #d6f5ea, transparent 50%),
    radial-gradient(circle at center, #fff6e9, #f6f1eb);
  z-index: -1;
}

/* ===== Glass Card ===== */
.card {
  width: 100%;
  max-width: 500px;
  padding: 40px 100px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background:
    radial-gradient(circle at top left, #ffe7d6, transparent 50%),
    radial-gradient(circle at bottom right, #d6f5ea, transparent 50%),
    radial-gradient(circle at center, #fff6e9, #f6f1eb);
  text-align: center;
}

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 8px;
  color: #5d5c58;
}

/* ===== Subtext ===== */
.subtext {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
}

/* ===== Select ===== */
.wraper {
  position: relative;
}

.select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.605);
  outline: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  background: transparent;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
  cursor: pointer;
  margin-bottom: 20px;
  appearance: none;
}

.wraper::after {
  content: '▼';
  position: absolute;
  right: 15px;
  top: 7px;
  pointer-events: none;
}

.select:hover {
  transform: translateY(-2px);
}

.select:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== Counter ===== */
.count {
  font-size: 64px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}

/* ===== Buttons ===== */
.buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 3px 10px;
  border-radius: 17px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.reset {
  flex: 8;
  font-size: 25px;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.plus {
  background: #c9f3e6;
}

.minus {
  background: #ffe1d6;
}

/* ===== Footer ===== */
.footer {
  margin-top: 12px;
  font-size: 11px;
  color: #777;
}
