/* EventFay Production Design System & Core Styles */

:root {
  --bg-brand-dark: #0b0f19;
  --bg-brand-darker: #0b0f19;
  --bg-brand-card: rgba(15, 23, 42, 0.7);
  --border-brand: rgba(168, 85, 247, 0.2);
  --color-cyan: #06b6d4;
  --color-purple: #a855f7;
  --color-pink: #ec4899;
}

html.light {
  --bg-brand-dark: #f8fafc;
  --bg-brand-darker: #f1f5f9;
  --bg-brand-card: rgba(255, 255, 255, 0.85);
  --border-brand: rgba(168, 85, 247, 0.15);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: var(--bg-brand-dark);
  color: #f8fafc;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Glassmorphism Design System */
.glass {
  background: var(--bg-brand-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-brand);
}

.glass-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient Classes */
.bg-gradient-brand {
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 50%, #ec4899 100%);
}

.text-gradient-brand {
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Micro-Animations & Custom Scrollbar */
.transition-all-fast {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-brand-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}
