.total-crowns-section {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: min(100%, 540px);
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    rgba(8,10,16,0.8);
  border: 1px solid rgba(215,167,60,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  color: var(--text, #f5f1e8);
}

.total-crowns-section .hero-utility-intro {
  display: grid;
  gap: 6px;
}

.total-crowns-section .hero-utility-kicker {
  color: var(--gold-soft, #f5d17b);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.total-crowns-section .hero-utility-copy {
  margin: 0;
  max-width: none;
  color: var(--muted, #b9b2a4);
  font-size: 0.96rem;
  line-height: 1.6;
}

.total-crowns-section .hero-crowns-total {
  margin-top: 0;
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: none;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: none;
}

.total-crowns-section .hero-crowns-total-label {
  color: var(--muted, #b9b2a4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.total-crowns-section .hero-crowns-total-value {
  color: var(--gold-soft, #f5d17b);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.total-crowns-section .hero-crowns-total-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.total-crowns-section .hero-crowns-total-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft, #f5d17b);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.total-crowns-section .hero-crowns-counting {
  color: var(--muted, #b9b2a4);
  font-size: 0.88rem;
  font-weight: 600;
}

.total-crowns-section .hero-crowns-crown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transform: translateY(-1px);
}

.total-crowns-section .hero-crowns-crown svg {
  display: block;
  width: 100%;
  height: 100%;
}

.total-crowns-section .hero-crowns-total[data-state="loading"] .hero-crowns-total-value,
.total-crowns-section .hero-crowns-total[data-state="unavailable"] .hero-crowns-total-value {
  color: var(--text, #f5f1e8);
  font-size: 1rem;
  font-weight: 700;
}

.total-crowns-section .hero-crowns-total[data-state="loading"] .hero-crowns-total-meta,
.total-crowns-section .hero-crowns-total[data-state="unavailable"] .hero-crowns-total-meta {
  display: none;
}

.total-crowns-section .hero-utility-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.total-crowns-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 210px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
  box-shadow: none;
}

.total-crowns-section .btn:hover {
  transform: translateY(-2px);
}

.total-crowns-section .btn-primary {
  background: linear-gradient(135deg, #f0c45d, #bf7c08);
  color: #17120b;
  box-shadow: 0 12px 28px rgba(215,167,60,0.18);
}

.total-crowns-section .btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  color: var(--text, #f5f1e8);
}

@media (max-width: 720px) {
  .total-crowns-section .hero-utility-actions {
    gap: 10px;
    justify-content: center;
  }

  .total-crowns-section .hero-utility-actions .btn {
    flex: 0 1 auto;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .total-crowns-section {
    padding: 14px;
    gap: 14px;
  }

  .total-crowns-section .hero-crowns-total {
    width: 100%;
    padding: 14px 16px;
  }

  .total-crowns-section .hero-utility-actions {
    flex-direction: column;
    gap: 9px;
    align-items: center;
  }

  .total-crowns-section .hero-utility-actions .btn {
    width: auto;
    max-width: 100%;
    min-width: 220px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.84rem;
    border-radius: 12px;
  }

  .total-crowns-section .hero-crowns-total-row {
    gap: 8px;
  }

  .total-crowns-section .hero-crowns-total-meta {
    gap: 6px;
    font-size: 0.86rem;
  }

  .total-crowns-section .hero-crowns-counting {
    font-size: 0.82rem;
  }
}
