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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #f0f0f0;
  color: #2d3a2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
}

/* Social Proof */
.social-proof {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}

.social-proof.hidden {
  opacity: 0;
  transform: translateY(-1rem);
}

.social-proof .icon {
  color: #e08a2e;
  font-size: 1rem;
}

.social-proof strong {
  color: #1a7a1a;
}

.social-proof .claimed {
  color: #737373;
}

/* Container */
.container {
  width: 100%;
  max-width: 28rem;
}

/* Gift Card */
.gift-card {
  background: linear-gradient(135deg, #1a7a1a, #2d9e2d);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gift-card .logo-box {
  margin: 0 auto;
  width: 13rem;
  height: 11rem;
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gift-card .logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Amount */
.amount-section {
  text-align: center;
  margin-top: 1.5rem;
}

.amount-section h1 {
  font-size: 3.75rem;
  font-weight: 900;
  color: #1a7a1a;
  line-height: 1;
}

.amount-section p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(26, 122, 26, 0.8);
}

/* Timer */
.timer {
  margin: 1.25rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fde8e8;
  color: #c43030;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.timer svg {
  width: 1rem;
  height: 1rem;
}

/* Steps */
.steps {
  margin-top: 1.5rem;
  background: #f0f5e0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #1a7a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  font-weight: 600;
  color: #2d3a2d;
}

/* CTA Button */
.cta-button {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #1a7a1a, #6daa2c);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(26, 122, 26, 0.35);
  transition: transform 0.15s ease;
  animation: pulse-glow 2s infinite;
}

.cta-button:hover {
  transform: scale(1.02);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 122, 26, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(26, 122, 26, 0); }
}
