/* style.css - Modern iPhone-like minimal theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');

body {
  background: #f6f7fb;
  font-family: 'Inter', 'SF Pro Display', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.card {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px) saturate(1.2);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.06);
}

.title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 0.5rem 0;
  color: #222;
  opacity: 1;
  margin-bottom: 0.1rem;
  text-shadow: none;
  align-self: flex-start;
  text-align: left;
}

.count {
  font-size: 3.2rem;
  font-weight: 700;
  color: #222;
  background: #f6f7fb;
  border-radius: 1.1rem;
  padding: 0.4rem 2rem;
  box-shadow: 0 1.5px 8px rgba(0,0,0,0.04);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  border: 1.5px solid #e5e7eb;
}

.button-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

button {
  background: #f1f3f6;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  box-shadow: 0 1.5px 4px rgba(0,0,0,0.03);
  letter-spacing: 0.2px;
}

button#increment {
  background: #007aff;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,122,255,0.10);
}

button#increment:hover {
  background: #005ecb;
}

button#decrement {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,59,48,0.10);
}

button#decrement:hover {
  background: #c1271a;
}

button#reset {
  background: #f1c40f;
  color: #fff;
  box-shadow: 0 2px 8px rgba(241,196,15,0.10);
}

button#reset:hover {
  background: #b7950b;
}

button:active {
  transform: scale(0.98);
  filter: brightness(0.98);
}
