:root {
  --bg: #0a0713;
  --panel: rgba(30, 20, 48, 0.6);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(217, 70, 239, 0.18), transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(249, 115, 22, 0.15), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.18), transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

.title { letter-spacing: -0.03em; }

.grad-text {
  background: linear-gradient(90deg, #d946ef, #ec4899, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 70, 239, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.sec-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c084fc;
}

.act {
  padding: 0.55rem;
  border-radius: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
}
.act:hover { background: rgba(217, 70, 239, 0.25); }

.cta-glow {
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
  50% { box-shadow: 0 0 35px rgba(249, 115, 22, 0.6); }
}

.spark { animation: float 3s ease-in-out infinite; display:inline-block; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

.spinner {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(217,70,239,0.2);
  border-top-color: #ec4899;
  border-right-color: #f97316;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

textarea::-webkit-scrollbar { width: 6px; }
textarea::-webkit-scrollbar-thumb { background: rgba(217,70,239,0.4); border-radius: 3px; }