/* ============================================================================
   KAAYKO KREATOR - ENTERPRISE CREATOR PLATFORM v1.0
   Premium Creator Dashboard with Kaayko Design System
   ============================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors - Kaayko Signature Gold */
  --gold-primary: #d4af37;
  --gold-bright: #ffd700;
  --gold-dark: #b8941f;
  --gold-subtle: rgba(212, 175, 55, 0.1);
  --gold-glow: rgba(212, 175, 55, 0.3);
  
  /* Kreator Accent - Distinguish from Kortex */
  --kreator-primary: #10b981;
  --kreator-secondary: #059669;
  --kreator-subtle: rgba(16, 185, 129, 0.1);
  --kreator-glow: rgba(16, 185, 129, 0.3);
  
  /* Dark Theme - Premium Feel */
  --bg-app: #0a0a0a;
  --bg-sidebar: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-input: #151515;
  
  /* Light Theme Overrides */
  --bg-app-light: #f9f9f9;
  --bg-sidebar-light: #ffffff;
  --bg-card-light: #ffffff;
  --bg-card-hover-light: #f5f5f5;
  --bg-input-light: #f0f0f0;
  
  /* Text Hierarchy */
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --text-inverse: #0a0a0a;
  
  /* Light Theme Text */
  --text-primary-light: #111111;
  --text-secondary-light: #555555;
  --text-muted-light: #888888;
  
  /* Status Colors - Data Visualization */
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.1);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.1);
  --info: #3b82f6;
  --info-bg: rgba(59, 130, 246, 0.1);
  
  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);
  
  /* Light Theme Borders */
  --border-subtle-light: rgba(0, 0, 0, 0.06);
  --border-medium-light: rgba(0, 0, 0, 0.1);
  --border-strong-light: rgba(0, 0, 0, 0.15);
  
  /* Shadows - Depth System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);
  --shadow-kreator: 0 8px 24px rgba(16, 185, 129, 0.15);
  
  /* Animations - Smooth & Professional */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing System - 8px base */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ============================================================================
   TYPOGRAPHY - Modern Professional System
   ============================================================================ */

@font-face {
  font-family: 'Josefin_Medium';
  src: url('../../fonts/JosefinSans-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Josefin_Bold';
  src: url('../../fonts/JosefinSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Josefin_Light';
  src: url('../../fonts/JosefinSans-Light.ttf') format('truetype');
}

body {
  font-family: 'Josefin Sans', 'Josefin_Medium', Arial, sans-serif;
  background: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Light Theme */
body.light-theme {
  background: var(--bg-app-light);
  color: var(--text-primary-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Josefin_Bold', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 22px; font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }

/* ============================================================================
   BUTTONS - Shared Styles
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'Josefin Sans', 'Josefin_Medium', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-bright));
  color: var(--text-inverse);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.btn-kreator {
  background: linear-gradient(135deg, var(--kreator-primary), var(--kreator-secondary));
  color: white;
  box-shadow: var(--shadow-kreator);
}

.btn-kreator:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--gold-subtle);
}

.btn-danger {
  background: var(--error);
  color: white;
}

.btn-danger:hover:not(:disabled) {
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-icon {
  padding: 10px;
  min-width: 40px;
}

/* Light theme buttons */
body.light-theme .btn-secondary {
  background: var(--bg-card-light);
  color: var(--text-primary-light);
  border-color: var(--border-medium-light);
}

/* ============================================================================
   FORM ELEMENTS - Inputs, Selects, etc.
   ============================================================================ */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: var(--space-xs);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
}

/* Light theme forms */
body.light-theme .form-input,
body.light-theme .form-textarea,
body.light-theme .form-select {
  background: var(--bg-input-light);
  border-color: var(--border-medium-light);
  color: var(--text-primary-light);
}

/* ============================================================================
   CARDS - Content Containers
   ============================================================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-body {
  padding: var(--space-lg);
}

.card-footer {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-input);
  border-top: 1px solid var(--border-subtle);
}

/* Light theme cards */
body.light-theme .card {
  background: var(--bg-card-light);
  border-color: var(--border-subtle-light);
}

/* ============================================================================
   ALERTS & NOTIFICATIONS
   ============================================================================ */

.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.alert-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-warning {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-info {
  background: var(--info-bg);
  color: var(--info);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ============================================================================
   LOADING STATES
   ============================================================================ */

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-medium);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-spinner.kreator {
  border-top-color: var(--kreator-primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 1000;
}

.loading-overlay .loading-spinner {
  width: 48px;
  height: 48px;
  border-width: 3px;
}

.loading-text {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ============================================================================
   BADGES & TAGS
   ============================================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: var(--success-bg);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge-error {
  background: var(--error-bg);
  color: var(--error);
}

.badge-info {
  background: var(--info-bg);
  color: var(--info);
}

.badge-gold {
  background: var(--gold-subtle);
  color: var(--gold-primary);
}

.badge-kreator {
  background: var(--kreator-subtle);
  color: var(--kreator-primary);
}

/* ============================================================================
   PAGE LAYOUTS
   ============================================================================ */

/* Full-page centered layout (login, apply, onboarding) */
.page-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.page-centered .container {
  width: 100%;
  max-width: 480px;
}

/* Split layout (apply page) */
.page-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 968px) {
  .page-split {
    grid-template-columns: 1fr;
  }
  
  .page-split .showcase-section {
    display: none;
  }
}

/* Dashboard layout */
.app-container {
  display: flex;
  min-height: 100vh;
  background: var(--bg-app);
}

body.light-theme .app-container {
  background: var(--bg-app-light);
}

/* ============================================================================
   SIDEBAR - Fixed Navigation
   ============================================================================ */

.sidebar {
  width: 280px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
}

body.light-theme .sidebar {
  background: var(--bg-sidebar-light);
  border-right-color: var(--border-subtle-light);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}

.sidebar-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

body.light-theme .sidebar-header {
  border-bottom-color: var(--border-subtle-light);
}

.sidebar-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  background: linear-gradient(135deg, var(--kreator-primary), var(--kreator-secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans', 'Josefin_Bold', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-kreator);
}

.sidebar-brand {
  text-align: center;
}

.sidebar-brand h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

body.light-theme .sidebar-brand h2 {
  color: var(--text-primary-light);
}

.sidebar-subtitle {
  font-size: 11px;
  color: var(--kreator-primary);
  margin-bottom: 8px;
  font-weight: 400;
}

.sidebar-version {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Navigation */
.sidebar-nav {
  flex: 1;
  padding: var(--space-md) var(--space-sm);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px var(--space-md);
  margin-bottom: 1px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
  border-left: 3px solid transparent;
}

body.light-theme .nav-item {
  color: var(--text-secondary-light);
}

.nav-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

body.light-theme .nav-item:hover {
  background: var(--bg-card-hover-light);
  color: var(--text-primary-light);
}

.nav-item.active {
  background: var(--kreator-subtle);
  color: var(--text-primary);
  border-left-color: var(--kreator-primary);
}

body.light-theme .nav-item.active {
  color: var(--text-primary-light);
}

.nav-item.active .nav-icon {
  color: var(--kreator-primary);
}

.nav-icon {
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.nav-badge {
  margin-left: auto;
  background: var(--kreator-primary);
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

body.light-theme .sidebar-footer {
  border-top-color: var(--border-subtle-light);
}

.user-card {
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

body.light-theme .user-card {
  background: var(--bg-card-light);
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--kreator-primary), var(--kreator-secondary));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.light-theme .user-name {
  color: var(--text-primary-light);
}

.user-email {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-status {
  font-size: 10px;
  color: var(--kreator-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============================================================================
   MAIN CONTENT AREA
   ============================================================================ */

.main-content {
  flex: 1;
  margin-left: 280px;
  padding: var(--space-xl);
  min-height: 100vh;
  overflow-y: auto;
}

@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: var(--space-md);
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
}

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 101;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  cursor: pointer;
}

/* View Header */
.view-header {
  margin-bottom: var(--space-xl);
}

.view-header h1 {
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

body.light-theme .view-header h1 {
  color: var(--text-primary-light);
}

.view-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

body.light-theme .view-header p {
  color: var(--text-secondary-light);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

body.light-theme .stat-card {
  background: var(--bg-card-light);
  border-color: var(--border-subtle-light);
}

.stat-card:hover {
  border-color: var(--kreator-primary);
  box-shadow: var(--shadow-kreator);
}

.stat-icon {
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

body.light-theme .stat-value {
  color: var(--text-primary-light);
}

.stat-change {
  font-size: 12px;
  color: var(--kreator-primary);
  margin-top: var(--space-xs);
}

/* ============================================================================
   TABLES
   ============================================================================ */

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

body.light-theme .table-container {
  border-color: var(--border-subtle-light);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

body.light-theme .table {
  background: var(--bg-card-light);
}

.table th,
.table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

body.light-theme .table th,
body.light-theme .table td {
  border-bottom-color: var(--border-subtle-light);
}

.table th {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-input);
}

body.light-theme .table th {
  background: var(--bg-input-light);
  color: var(--text-muted-light);
}

.table tr:hover td {
  background: var(--bg-card-hover);
}

body.light-theme .table tr:hover td {
  background: var(--bg-card-hover-light);
}

.table td {
  font-size: 14px;
  color: var(--text-primary);
}

body.light-theme .table td {
  color: var(--text-primary-light);
}

/* ============================================================================
   MODALS
   ============================================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-smooth);
}

body.light-theme .modal {
  background: var(--bg-card-light);
  border-color: var(--border-medium-light);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

body.light-theme .modal-header {
  border-bottom-color: var(--border-subtle-light);
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  padding: var(--space-xs);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: var(--space-lg);
  overflow-y: auto;
  max-height: calc(90vh - 140px);
}

.modal-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-md);
}

body.light-theme .modal-footer {
  border-top-color: var(--border-subtle-light);
}

/* ============================================================================
   EMPTY STATES
   ============================================================================ */

.empty-state {
  text-align: center;
  padding: var(--space-2xl);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

body.light-theme .empty-title {
  color: var(--text-primary-light);
}

.empty-description {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================================================
   CUSTOM SCROLLBAR
   ============================================================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-card);
}

body.light-theme ::-webkit-scrollbar-track {
  background: var(--bg-card-light);
}

::-webkit-scrollbar-thumb {
  background: var(--kreator-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--kreator-secondary);
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
  
  .hidden-desktop {
    display: block;
  }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-smooth) ease-out;
}

.animate-slide-in {
  animation: slideIn var(--transition-smooth) ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}
