@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&display=swap');

:root {
  --text-color: #0a2540;
  --accent-color: #635bff;
  --card-bg: #ffffff;
  --glass-border: #e6e6e6;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #000000;
}

.debt-amount {
  font-size: 4rem;
  font-weight: 900;
  display: block;
  margin: 0.2rem 0;
  letter-spacing: -2px;
  color: #000000;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.push-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 20px 40px;
  border-radius: 12px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  width: 200px;
  height: 60px;
  box-sizing: border-box;
}

.push-button:active {
  transform: translateY(10px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
}

.coffee-btn {
  background-color: #00C853;
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 0 #009624;
}

.coffee-btn:active {
  box-shadow: 0 0 0 #009624;
}

.x-btn {
  background-color: #000000;
  color: white !important;
  box-shadow: 0 8px 0 #333333;
}

.x-btn:active {
  box-shadow: 0 0 0 #333333;
}

.stripe-container {
  margin: 40px 0;
}

/* Admin Form Styles */
.admin-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #eee;
  max-width: 500px;
  margin: 0 auto;
}

input[type="number"] {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 20px;
}

button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 600px) {
  .container { padding: 0 20px; margin: 40px auto; }
  h1 { font-size: 2.2rem; }
  .debt-amount { font-size: 3rem; }
  .button-container { flex-direction: column; align-items: center; }
  .push-button { width: 100%; max-width: 300px; }
}
