.hero {
  background: linear-gradient(135deg, #fff5dc 0%, #ffe9b5 60%, #ffd97a 100%);
  border-radius: 24px;
  padding: 18px 20px 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 0 var(--cream-dark), 0 8px 24px var(--shadow);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '⭐';
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 90px;
  opacity: 0.12;
  transform: rotate(15deg);
  pointer-events: none;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.hero-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-count-num {
  font-family: 'Klee One', serif;
  font-weight: 600;
  font-size: clamp(40px, 9vw, 56px);
  color: var(--gold-deep);
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
}
.hero-count-label {
  font-family: 'Klee One', serif;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.hero-next {
  text-align: right;
  font-family: 'Klee One', serif;
}
.hero-next-label {
  font-family: 'Klee One', serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}
.hero-next-prize {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
  max-width: 160px;
}
.hero-next-prize .prize-emoji { font-size: 20px; margin-right: 4px; }
.hero-next-need {
  font-family: 'Klee One', serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 3px;
}
.hero-bar {
  height: 14px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
}
.hero-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 8px rgba(232, 168, 56, 0.5);
}
.hero-milestones {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.milestone-chip {
  flex: 1;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  border: 1.5px solid rgba(232, 168, 56, 0.3);
  transition: all 0.25s;
}
.milestone-chip.earned {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: white;
  border-color: var(--gold-deep);
  box-shadow: 0 2px 6px rgba(201, 127, 29, 0.35);
}
.milestone-chip.next {
  background: white;
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(232, 123, 111, 0.2);
}
.milestone-stars {
  font-family: 'Klee One', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold-deep);
  line-height: 1;
}
.milestone-chip.earned .milestone-stars { color: white; }
.milestone-prize {
  font-family: 'Klee One', serif;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.2;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.milestone-chip.earned .milestone-prize { color: white; }
.milestone-chip.locked .milestone-prize { opacity: 0.5; }
