/* ==================================================
   GLOBAL COMPONENTS - MINIMAL
   Only styles that apply site-wide
================================================== */

/* Import variables & reset first */
@import 'variables.css';
@import 'reset.css';

/* Global Text Utilities */
.text-primary { color: var(--color-primary); }
.text-purple { color: var(--color-accent-purple); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gradient {
  background: linear-gradient(90deg, #732aff, #2affc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Global Hero (shared across dashboards) */
.cs-hero {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  background: radial-gradient(circle at top, rgba(245,179,1,0.15), transparent);
  box-shadow: 0 20px 40px rgba(157,77,255,.6);
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0% { box-shadow: 0 20px 40px rgba(157,77,255,.5); }
  50% { box-shadow: 0 25px 55px rgba(157,77,255,.85); }
  100% { box-shadow: 0 20px 40px rgba(157,77,255,.5); }
}

/* Notification System */
#cs-notify-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-notify {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: csNotifyIn .4s ease;
}

@keyframes csNotifyIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}