@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --discord-bg: #313338;
  --discord-card: #2b2d31;
  --discord-dark: #1e1f22;
  --discord-green: #23a55a;
  --discord-blurple: #5865f2;
}

body {
  font-family: var(--font-sans);
  background-color: #090d16;
  color: #f1f5f9;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Canvas styling */
#canvas-container {
  touch-action: none;
  user-select: none;
}

.crop-canvas {
  cursor: crosshair;
  background-image: 
    linear-gradient(45deg, #1e293b 25%, transparent 25%), 
    linear-gradient(-45deg, #1e293b 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #1e293b 75%), 
    linear-gradient(-45deg, transparent 75%, #1e293b 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  background-color: #0f172a;
}

/* Discord preview card aesthetics */
.discord-chat-bubble {
  background-color: var(--discord-card);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.discord-chat-bubble:hover {
  background-color: #35373c;
}

/* Glassmorphism elements */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-panel-glow {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 35px -10px rgba(168, 85, 247, 0.2);
}

/* Gradient text utility */
.text-gradient-purple {
  background: linear-gradient(135deg, #c084fc 0%, #f472b6 50%, #fb7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulsing badge animation */
@keyframes pulse-subtle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}
.animate-pulse-subtle {
  animation: pulse-subtle 3s infinite ease-in-out;
}

/* FAQ Accordion transitions */
.faq-content {
  transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
}

/* Ad placeholder container */
.ad-slot {
  min-height: 90px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px dashed rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
