ubuntu@ip-172-31-33-47:~/public$ cat styles.css
:root { color-scheme: dark; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 10% 10%, #24315f, #080b15 48%, #05060a); color: #f5f7ff; }
.shell { width: min(940px, calc(100% - 32px)); margin: 48px auto; }
.card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 32px; box-shadow: 0 24px 80px rgba(0,0,0,.32); backdrop-filter: blur(16px); margin-bottom: 22px; }
.hero { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.eyebrow { color: #ffcf4a; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: 12px; }
h1 { font-size: clamp(38px, 7vw, 72px); line-height: .95; margin: 0 0 18px; }
h2 { margin: 0 0 20px; }
.sub { color: #c8d0e8; font-size: 19px; max-width: 620px; }
.badge { width: 112px; height: 112px; border-radius: 30px; background: linear-gradient(135deg, #ffcf4a, #ff8b2b); display: grid; place-items: center; color: #10131e; font-weight: 950; font-size: 30px; }
.amount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; margin-bottom: 22px; }
.amount { border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 22px; text-align: center; cursor: pointer; background: rgba(255,255,255,.06); font-weight: 900; font-size: 24px; transition: .2s; }
.amount:hover, .amount.selected { transform: translateY(-2px); border-color: #ffcf4a; background: rgba(255,207,74,.18); }
.amount input { display: none; }
button, .link { display: inline-flex; justify-content: center; align-items: center; border: 0; border-radius: 999px; padding: 16px 24px; background: #ffcf4a; color: #10131e; font-weight: 900; text-decoration: none; cursor: pointer; font-size: 16px; }
button:disabled { opacity: .5; cursor: not-allowed; }
a { color: #ffcf4a; }
.inline-link { color: #ffcf4a; font-weight: 800; }
.hint, .message { color: #c8d0e8; }
.message.warning { color: #ffd6c8; }
.message.success { color: #bfffd2; }
.voucher { border: 1px dashed rgba(255,255,255,.26); border-radius: 24px; padding: 28px; background: rgba(0,0,0,.2); }
.voucher-top { display: flex; justify-content: space-between; color: #ffcf4a; font-weight: 900; }
.pin { font-size: clamp(34px, 7vw, 64px); letter-spacing: .05em; font-weight: 950; margin: 24px 0; word-break: break-word; }
dl { display: grid; grid-template-columns: 100px 1fr; gap: 10px; color: #dbe2fa; }
dt { color: #8f9ab8; }
.warning { background: rgba(255, 120, 72, .14); border: 1px solid rgba(255, 120, 72, .35); padding: 14px; border-radius: 14px; color: #ffd6c8; }
.stack { display: grid; gap: 14px; }
.field-label { color: #c8d0e8; font-weight: 800; }
.text-input { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 16px 18px; background: rgba(0,0,0,.22); color: #fff; font-size: 18px; }
.hidden { display: none; }
.sdk-container { min-height: 620px; overflow: hidden; border-radius: 20px; background: rgba(0,0,0,.22); margin: 18px 0; }
.checkbox-row { display: flex; gap: 12px; align-items: flex-start; color: #dbe2fa; margin: 18px 0; line-height: 1.45; }
.checkbox-row input { margin-top: 4px; transform: scale(1.3); }
.verified-strip { display: flex; justify-content: space-between; gap: 14px; align-items: center; background: rgba(255,207,74,.12); border: 1px solid rgba(255,207,74,.25); border-radius: 16px; padding: 14px 16px; margin-bottom: 24px; color: #f9edbd; }
.warning-list { display: grid; gap: 12px; margin: 24px 0; }
.warning-list p { margin: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px; color: #e7ecff; }
@media (max-width: 680px) { .hero { display: block; } .badge { margin-top: 20px; width: 86px; height: 86px; } .verified-strip { display: block; } }
.start-again {
  text-align: center;
  margin-top: 25px;
}

.voucher-card {
  max-width: 700px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  border: 1px solid #e5e7eb;
}

.voucher-header {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voucher-brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
}

.voucher-subtitle {
  font-size: 14px;
  opacity: .8;
  margin-top: 4px;
}

.badge {
  background: #22c55e;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.voucher-value {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
  padding: 35px 20px 8px;
  color: #111827;
}

.voucher-pin-label {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voucher-pin {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 5px;
  margin: 22px;
  padding: 24px;
  background: #f8fafc;
  border: 3px dashed #cbd5e1;
  border-radius: 14px;
  color: #111827;
  word-break: break-all;
}

.voucher-details {
  padding: 10px 35px 20px;
  color: #000000;
}

.voucher-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  color: #000000;
}
.voucher-details span {
  color: #000000;
}
.label {
  font-weight: 700;
  color: #000000;
}
.voucher-details span:last-child {
  color: #000000;
  font-weight: 500;
}

.voucher-qr {
  text-align: center;
  padding: 20px;
}

.voucher-qr img {
  width: 180px;
  height: 180px;
}

.voucher-warning {
  background: #fef3c7;
  color: #92400e;
  padding: 18px;
  margin: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

.voucher-actions {
  text-align: center;
  padding: 24px;
}

.voucher-actions button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.voucher-actions button:hover {
  background: #1d4ed8;
}

.error {
  max-width: 650px;
  margin: 30px auto;
  padding: 20px;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 12px;
  text-align: center;
}

@media print {
  body {
    background: white;
  }

  h1,
  #status,
  .start-again,
  .voucher-actions {
    display: none;
  }

  .voucher-card {
    box-shadow: none;
    border: 1px solid #000;
    margin: 0;
  }
}
