.cc-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  text-align: center;
}

.cc-blast {
  margin: 0;
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
  min-height: 4.5em;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.cc-blast--fire {
  animation: cc-pop 0.55s ease;
}

@keyframes cc-pop {
  0% {
    transform: scale(0.96);
    opacity: 0.35;
  }
  40% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cc-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
