/* ============================================================
   GRAMATON.PRO — DESIGN SYSTEM
   Цветовая схема строго по спецификации mobile theme.dart
   Copyright © 2026 Gramaton Group
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES (THEME TOKENS) ---------- */
:root {
  /* Основные цвета (из theme.dart) */
  --gram-primary: #00D4FF;
  --gram-primary-darker: #0099BB;
  --gram-accent: #00FF88;
  --gram-success: #00FF88;
  --gram-warning: #FFD060;
  --gram-error: #FF3366;

  /* Фоны */
  --gram-bg-dark: #04070F;
  --gram-bg-card: #080E1C;
  --gram-bg-surface: #0D1529;
  --gram-border: #1C2B4A;

  /* Текст */
  --gram-text-primary: #E8EEF8;
  --gram-text-secondary: #A8B8D4;
  --gram-text-muted: #6A7E9E;

  /* Alpha-оттенки */
  --gram-primary-20: rgba(0, 212, 255, 0.20);
  --gram-primary-12: rgba(0, 212, 255, 0.12);
  --gram-primary-40: rgba(0, 212, 255, 0.40);
  --gram-primary-10: rgba(0, 212, 255, 0.10);
  --gram-primary-15: rgba(0, 212, 255, 0.15);
  --gram-success-12: rgba(0, 255, 136, 0.12);
  --gram-warning-12: rgba(255, 208, 96, 0.12);
  --gram-error-12: rgba(255, 51, 102, 0.12);
  --gram-error-10: rgba(255, 51, 102, 0.10);

  /* Типографика */
  --gram-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gram-font-mono: 'Space Mono', 'JetBrains Mono', monospace;

  /* Радиусы */
  --gram-radius-sm: 4px;
  --gram-radius: 8px;
  --gram-radius-md: 10px;
  --gram-radius-lg: 12px;
  --gram-radius-xl: 16px;

  /* Размеры */
  --gram-appbar-height: 56px;
  --gram-sidebar-width: 280px;
  --gram-drawer-width: min(320px, 85vw);

  /* Анимации */
  --gram-duration-fast: 150ms ease;
  --gram-duration: 250ms ease;
  --gram-duration-slow: 350ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Тени */
  --gram-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --gram-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --gram-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --gram-glow-primary: 0 0 12px rgba(0, 212, 255, 0.25);
}

/* ============================================================
   Базовые стили
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--gram-font);
  background: var(--gram-bg-dark);
  color: var(--gram-text-primary);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  transition: background var(--gram-duration), color var(--gram-duration);
}

/* ============================================================
   Скроллбар
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--gram-border);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gram-text-muted);
}

/* ============================================================
   Aнимации
   ============================================================ */
@keyframes gramFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gramSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gramSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gramPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}
@keyframes gramSpin {
  to { transform: rotate(360deg); }
}
@keyframes gramGlow {
  0%, 100% { filter: drop-shadow(0 0 4px var(--gram-primary)); }
  50% { filter: drop-shadow(0 0 12px var(--gram-primary)); }
}
@keyframes gramFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

.gram-fade-in { animation: gramFadeIn 0.3s ease forwards; }
.gram-slide-in { animation: gramSlideIn 0.3s ease forwards; }
.gram-slide-up { animation: gramSlideUp 0.35s ease forwards; }

/* ============================================================
   КОМПОНЕНТЫ
   ============================================================ */

/* --- Контейнеры --- */
.gram-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: var(--gram-bg-dark);
}

.gram-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.gram-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--gram-bg-dark);
}

/* --- AppBar / Шапка --- */
.gram-appbar {
  display: flex;
  align-items: center;
  height: var(--gram-appbar-height);
  padding: 0 12px;
  background: var(--gram-bg-dark);
  border-bottom: 1px solid var(--gram-border);
  flex-shrink: 0;
  z-index: 10;
}

.gram-appbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 44px;
}

.gram-appbar-center {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.gram-appbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  justify-content: flex-end;
}

.gram-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gram-text-primary);
}

.gram-brand-dot {
  font-size: 15px;
  color: var(--gram-primary);
  font-weight: 800;
}

.gram-brand-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--gram-text-muted);
}

/* --- Кнопки AppBar --- */
.gram-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--gram-text-muted);
  font-size: 16px;
  cursor: pointer;
  border-radius: var(--gram-radius);
  transition: all var(--gram-duration-fast);
}
.gram-btn-icon:hover {
  background: var(--gram-primary-10);
  color: var(--gram-primary);
}

.gram-btn-icon.primary { color: var(--gram-primary); }

/* --- Бургер (≡) --- */
.gram-burger {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 0;
}
.gram-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gram-text-primary);
  border-radius: 1px;
  transition: all var(--gram-duration-fast);
}

/* --- DRAWER (меню) --- */
.gram-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.75);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--gram-duration-slow);
}
.gram-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.gram-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--gram-drawer-width);
  height: 100vh;
  height: 100dvh;
  background: var(--gram-bg-surface);
  z-index: 901;
  transform: translate3d(-100%, 0, 0);
  transition: transform var(--gram-duration-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.gram-drawer.open {
  transform: translate3d(0, 0, 0);
}

.gram-drawer-header {
  padding: 32px 20px 20px;
  background: var(--gram-primary-20);
  flex-shrink: 0;
}

.gram-drawer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gram-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.gram-drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--gram-text-primary);
  margin-bottom: 2px;
}

.gram-drawer-subtitle {
  font-size: 12px;
  color: var(--gram-text-muted);
}

.gram-drawer-section {
  padding: 16px 12px 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gram-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--gram-font-mono);
}

.gram-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gram-text-secondary);
  text-decoration: none;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all var(--gram-duration-fast);
}
.gram-nav-item:hover {
  background: var(--gram-primary-10);
  color: var(--gram-text-primary);
  border-left-color: var(--gram-primary);
}
.gram-nav-item.active {
  color: var(--gram-primary);
  background: var(--gram-primary-10);
  border-left-color: var(--gram-primary);
}

.gram-nav-item .nav-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--gram-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--gram-font-mono);
}

.gram-nav-divider {
  height: 1px;
  background: var(--gram-border);
  margin: 8px 12px;
}

/* --- Карточки --- */
.gram-card {
  background: var(--gram-bg-card);
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius-lg);
  padding: 16px;
  transition: border-color var(--gram-duration-fast);
  animation: gramFadeIn 0.3s ease forwards;
}

.gram-card-left-accent {
  border-left: 3px solid var(--gram-primary);
}

.gram-card-left-accent.closed {
  border-left-color: var(--gram-text-muted);
}

.gram-card:hover {
  border-color: var(--gram-primary-40);
}

/* --- Календарть (Shifts) --- */
.gram-calendar {
  display: flex;
  align-items: stretch;
  gap: 4px;
  padding: 10px 8px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--gram-border);
  flex-shrink: 0;
}
.gram-calendar::-webkit-scrollbar { display: none; }

.gram-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 4px;
  border-radius: var(--gram-radius-md);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--gram-duration-fast);
  background: transparent;
  gap: 2px;
}

.gram-cal-day:hover {
  background: var(--gram-primary-12);
}

.gram-cal-day.today {
  border-color: var(--gram-primary-40);
  background: var(--gram-primary-12);
}

.gram-cal-day.selected {
  background: var(--gram-primary);
}
.gram-cal-day.selected .day-name { color: rgba(0, 0, 0, 0.6); }
.gram-cal-day.selected .day-num { color: #000; font-weight: 700; }

.day-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--gram-text-muted);
}

.day-num {
  font-size: 17px;
  font-weight: 600;
  color: var(--gram-text-primary);
  line-height: 1;
}

.day-count {
  font-size: 8px;
  font-weight: 600;
  padding: 0 6px;
  border-radius: 6px;
  background: var(--gram-primary);
  color: #000;
  line-height: 14px;
  margin-top: 2px;
}
.gram-cal-day.selected .day-count {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* --- Фильтры смен --- */
.gram-filters {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--gram-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.gram-filters::-webkit-scrollbar { display: none; }

.gram-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--gram-border);
  border-radius: 20px;
  background: transparent;
  color: var(--gram-text-secondary);
  cursor: pointer;
  transition: all var(--gram-duration-fast);
  white-space: nowrap;
}
.gram-filter-btn:hover {
  border-color: var(--gram-primary);
  color: var(--gram-primary);
}
.gram-filter-btn.active {
  background: var(--gram-primary);
  color: #000;
  border-color: var(--gram-primary);
}

/* --- Кнопки --- */
.gram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: var(--gram-radius-md);
  font-family: var(--gram-font);
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--gram-duration-fast);
  text-decoration: none;
}

.gram-btn-primary {
  background: var(--gram-primary);
  color: #000;
}
.gram-btn-primary:hover {
  box-shadow: var(--gram-glow-primary);
  transform: translateY(-1px);
}

.gram-btn-secondary {
  background: transparent;
  color: var(--gram-text-secondary);
  border: 1px solid var(--gram-border);
}
.gram-btn-secondary:hover {
  border-color: var(--gram-text-secondary);
}

.gram-btn-sm {
  padding: 5px 12px;
  font-size: 10px;
}

.gram-btn-block {
  width: 100%;
  justify-content: center;
}

/* --- Поля ввода --- */
.gram-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--gram-bg-surface);
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius-md);
  color: var(--gram-text-primary);
  font-family: var(--gram-font);
  font-size: 13px;
  outline: none;
  transition: border-color var(--gram-duration-fast);
}
.gram-input:focus {
  border-color: var(--gram-primary);
  box-shadow: 0 0 0 2px var(--gram-primary-20);
}
.gram-input::placeholder {
  color: var(--gram-text-muted);
}

.gram-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--gram-bg-surface);
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius-md);
  color: var(--gram-text-primary);
  font-family: var(--gram-font);
  font-size: 13px;
  outline: none;
  transition: border-color var(--gram-duration-fast);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.gram-select:focus {
  border-color: var(--gram-primary);
}

.gram-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gram-text-secondary);
  margin-bottom: 6px;
}

.gram-input-group {
  margin-bottom: 14px;
}

/* --- Модалка --- */
.gram-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(6px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gramFadeIn 0.2s ease;
}

.gram-modal {
  width: min(440px, 92vw);
  max-height: 85vh;
  background: var(--gram-bg-surface);
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius-lg);
  overflow: hidden;
  animation: gramSlideUp 0.3s ease;
}

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

.gram-modal-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gram-text-primary);
}

.gram-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--gram-text-muted);
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--gram-radius);
  transition: all var(--gram-duration-fast);
}
.gram-modal-close:hover {
  background: var(--gram-primary-10);
  color: var(--gram-primary);
}

.gram-modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
}

.gram-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--gram-border);
}

/* --- Контакт-тег (выбранный контакт) --- */
.gram-contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--gram-primary-15);
  border-radius: 6px;
}

.gram-contact-tag .tag-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gram-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #000;
  font-weight: 700;
}

.gram-contact-tag .tag-name {
  font-size: 12px;
  color: var(--gram-text-primary);
}

/* --- Список контактов (выпадающий) --- */
.gram-contact-list {
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius);
  max-height: 180px;
  overflow-y: auto;
  background: var(--gram-bg-surface);
}

.gram-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background var(--gram-duration-fast);
}
.gram-contact-item:hover {
  background: var(--gram-primary-10);
}

.gram-contact-item .ci-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gram-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
}

.gram-contact-item .ci-info {
  display: flex;
  flex-direction: column;
}

.gram-contact-item .ci-name {
  font-size: 12px;
  color: var(--gram-text-primary);
}

.gram-contact-item .ci-email {
  font-size: 10px;
  color: var(--gram-text-muted);
}

/* --- SnackBar / Toast --- */
.gram-snackbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  border-radius: var(--gram-radius-md);
  font-size: 13px;
  font-weight: 600;
  animation: gramSlideUp 0.3s ease;
  max-width: 90vw;
  text-align: center;
}
.gram-snackbar.success {
  background: var(--gram-success);
  color: #000;
}
.gram-snackbar.error {
  background: var(--gram-error);
  color: #fff;
}

/* --- Табы --- */
.gram-tabs {
  display: flex;
  border-bottom: 1px solid var(--gram-border);
  flex-shrink: 0;
}

.gram-tab {
  flex: 1;
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gram-text-muted);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--gram-duration-fast);
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.gram-tab:hover {
  color: var(--gram-text-secondary);
}
.gram-tab.active {
  color: var(--gram-primary);
  border-bottom-color: var(--gram-primary);
  font-weight: 600;
}

/* --- Хлебные крошки и тэги --- */
.gram-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  font-family: var(--gram-font-mono);
}
.gram-badge-primary {
  background: var(--gram-primary-15);
  color: var(--gram-primary);
  border: 1px solid var(--gram-primary);
}
.gram-badge-success {
  background: var(--gram-success-12);
  color: var(--gram-success);
  border: 1px solid var(--gram-success);
}
.gram-badge-warning {
  background: var(--gram-warning-12);
  color: var(--gram-warning);
  border: 1px solid var(--gram-warning);
}
.gram-badge-error {
  background: var(--gram-error-12);
  color: var(--gram-error);
  border: 1px solid var(--gram-error);
}

/* --- Статистика (MiniStat) --- */
.gram-mini-stat {
  background: var(--gram-bg-card);
  border: 1px solid var(--gram-border);
  border-radius: var(--gram-radius);
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.gram-mini-stat-label {
  font-size: 8px;
  font-family: var(--gram-font-mono);
  color: var(--gram-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gram-mini-stat-value {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}
.gram-mini-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  opacity: 0.5;
}

/* --- Прогресс-бар --- */
.gram-progress {
  height: 3px;
  background: var(--gram-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}
.gram-progress-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* --- Мета-текст для карточек смен --- */
.gram-meta {
  font-size: 9px;
  color: var(--gram-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* --- Гриды --- */
.gram-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gram-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gram-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* --- Пустое состояние --- */
.gram-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 8px;
  text-align: center;
}
.gram-empty-icon {
  font-size: 48px;
  opacity: 0.3;
}
.gram-empty-text {
  font-size: 14px;
  color: var(--gram-text-muted);
}

/* --- Прелоадер --- */
.gram-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.gram-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gram-border);
  border-top-color: var(--gram-primary);
  border-radius: 50%;
  animation: gramSpin 0.8s linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .gram-grid-2,
  .gram-grid-3,
  .gram-grid-4 {
    grid-template-columns: 1fr;
  }
  .gram-content {
    padding: 12px;
  }
  .gram-modal {
    width: 96vw;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .gram-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   OLD CLASSES — для обратной совместимости
   сохраняем существующие классы messenger/соцсети
   ============================================================ */
[data-theme="gramaton"] {
  --bg-primary: #04070F;
  --bg-secondary: #080E1C;
  --bg-card: #080E1C;
  --bg-card-hover: #0A1122;
  --bg-drawer: rgba(13, 21, 41, 0.95);
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --glass-bg: rgba(13, 21, 41, 0.7);
  --glass-blur: 20px;
  --glass-border: 1px solid rgba(28, 43, 74, 0.4);
  --glass-border-hover: 1px solid rgba(0, 212, 255, 0.3);
  --text-primary: #E8EEF8;
  --text-secondary: #A8B8D4;
  --text-muted: #6A7E9E;
  --text-accent: #00D4FF;
  --accent-purple: #00D4FF;
  --accent-purple-dark: #0099BB;
  --accent-gold: #00FF88;
  --accent-gold-dark: #00AA55;
  --accent-blue: #00D4FF;
  --gradient-purple: linear-gradient(135deg, #00D4FF, #0099BB);
  --gradient-gold: linear-gradient(135deg, #00FF88, #00AA55);
  --gradient-blue: linear-gradient(135deg, #00D4FF, #0099BB);
  --status-online: #00FF88;
  --status-away: #FFD060;
  --status-offline: #6A7E9E;
  --border-subtle: 1px solid rgba(28, 43, 74, 0.3);
  --border-accent: 1px solid rgba(0, 212, 255, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-purple: 0 0 20px rgba(0, 212, 255, 0.15);
  --shadow-glow-gold: 0 0 20px rgba(0, 255, 136, 0.12);
  --font-primary: 'Inter', -apple-system, sans-serif;
  --font-ui: 'Inter', -apple-system, sans-serif;
}
