@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --gold: #f0c36a;
  --gold-dark: #c9921f;
  --red: #d72638;
  --red-dark: #a81c2a;
  --black: #0a0a0b;
  --card: #111113;
  --card-2: #1a1a1d;
  --card-3: #222226;
  --white: #ffffff;
  --muted: #8a8a92;
  --muted-light: #cfcfd6;
  --green: #4ade80;
  --green-bg: #0d2d1a;
  --amber: #fcd34d;
  --amber-bg: #2d200a;
  --bg: #f5f0e8;
  --bg2: #ede5d8;
  --border: rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  min-height: 100vh;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(240,195,106,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 90%, rgba(215,38,56,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #f7f2eb 0%, #ede5d8 50%, #e5dace 100%);
  z-index: -1;
}

.shell {
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* ── CARD ── */
.card {
  background: var(--card);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28), 0 0 0 1px var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,195,106,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ── HEADER ── */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(215,38,56,0.3);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.badge {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(240,195,106,0.1);
  border: 1px solid rgba(240,195,106,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── INFO BOXES ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.info-box {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--card-2);
  border: 1px solid var(--border);
}

.info-box.full { grid-column: 1 / -1; }

.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-value {
  font-size: 17px;
  font-weight: 700;
  word-break: break-word;
  color: var(--white);
}

/* ── PROGRESS ── */
.progress-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--card-2);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-title { font-size: 15px; font-weight: 700; }
.progress-count { color: var(--gold); font-weight: 800; font-size: 18px; }

.bar {
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-box {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.status-box.promo { background: var(--green-bg); color: var(--green); }
.status-box.progress { background: var(--amber-bg); color: var(--amber); }

/* ── BUTTON ── */
.btn {
  display: block;
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(215,38,56,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(215,38,56,0.4); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: var(--card-2);
  border: 1px solid var(--border-light);
  box-shadow: none;
  color: var(--muted-light);
}

.btn-ghost:hover { box-shadow: none; background: var(--card-3); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

/* ── NOTE ── */
.note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card { animation: fadeUp 0.4s ease both; }

@media (max-width: 360px) {
  .brand-name { font-size: 26px; }
  .info-grid { grid-template-columns: 1fr; }
}
