@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(255,255,255,0.12) 0%, transparent 35%),
    #111111;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

#card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
  width: 320px;
}

h1 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: white;
  font-size: 15px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  text-align: center;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 24px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

h2 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 90px;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.1s;
}

h2.pop {
  transform: scale(1.15);
}

#rep-label {
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
  margin-top: 4px;
}

button {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-bottom: 10px;
}

button:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

button:active {
  transform: scale(0.98);
}

#increment-btn {
  background: #ffffff;
  color: #000000;
}

#save-btn {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#reset-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

#save-el {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.8;
  word-break: break-word;
}