/* Mysticman Productions — shared design tokens & global styles.
   Tailwind via CDN handles utilities; this file is for design tokens,
   custom keyframes, and the few utilities Tailwind can't express inline. */

:root {
  --mp-navy-950: #050a23;
  --mp-navy-900: #0a0f2e;
  --mp-navy-800: #111a3f;
  --mp-cyan: #22d3ee;
  --mp-cyan-bright: #00e0ff;
  --mp-purple: #a855f7;
  --mp-magenta: #c026d3;
  --mp-pink: #ec4899;
  --mp-text: #e2e8f0;
  --mp-text-dim: #94a3b8;
}

html, body {
  background:
    radial-gradient(ellipse at top, rgba(34, 211, 238, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(168, 85, 247, 0.10), transparent 60%),
    var(--mp-navy-950);
  color: var(--mp-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

.font-display {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.glow-cyan {
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.55), 0 0 48px rgba(34, 211, 238, 0.25);
}

.glow-purple {
  text-shadow: 0 0 24px rgba(168, 85, 247, 0.55);
}

.btn-primary {
  background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
  color: #0a0f2e;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 120ms ease, box-shadow 200ms ease;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.4), 0 4px 24px rgba(168, 85, 247, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--mp-text);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: border-color 200ms ease, color 200ms ease;
}

.btn-secondary:hover {
  border-color: var(--mp-cyan);
  color: var(--mp-cyan);
}

.card {
  background: linear-gradient(180deg, rgba(17, 26, 63, 0.6) 0%, rgba(10, 15, 46, 0.4) 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  transition: border-color 240ms ease, transform 240ms ease;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-2px);
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), rgba(168, 85, 247, 0.4), transparent);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-free {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
}

.tag-paid {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.2));
  color: var(--mp-cyan);
  border: 1px solid rgba(34, 211, 238, 0.4);
}

a {
  color: var(--mp-cyan);
}

a:hover {
  color: var(--mp-cyan-bright);
}

/* Subtle animated glow under the banner for the hero section */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.pulse-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}
