/* Plugin: hello — démo UI takeover */

.hello-card {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.hello-glow {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--esh-accent, #58c8ff) 0%, transparent 60%);
  opacity: 0.18;
  filter: blur(40px);
  pointer-events: none;
  animation: hello-pulse 5s ease-in-out infinite;
}
@keyframes hello-pulse {
  0%, 100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.22; transform: translate(-50%, -50%) scale(1.08); }
}
.hello-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hello-emoji { font-size: 44px; line-height: 1; }
.hello-title {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--fg);
}
.hello-username { color: var(--esh-accent, #58c8ff); }
.hello-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin: 0;
}
.hello-text code {
  background: rgba(88, 200, 255, 0.10);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--esh-accent, #58c8ff);
  font-size: 11px;
}
.hello-counter {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-dim);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}
.hello-count { color: var(--esh-accent, #58c8ff); font-weight: 600; }
.hello-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.hello-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(88, 200, 255, 0.10);
  border: 1px solid rgba(88, 200, 255, 0.30);
  color: var(--fg);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hello-btn:hover {
  background: rgba(88, 200, 255, 0.20);
  border-color: var(--esh-accent, #58c8ff);
}
.hello-btn:active { transform: translateY(1px); }
