// ============================================
// КАСТОМНАЯ ЧЕРНО-ЗОЛОТАЯ ТЕМА
// ============================================

:root {
  /* Основные цвета фона */
  --body-background-color: #0f0f11 !important;
  --background-color-true: #0f0f11 !important;
  --background-color: #0f0f11 !important;
  --surface-color: #1a1a1e !important;
  --border-color: #2a2a2e !important;
  
  /* Основной цвет (золотой) */
  --primary-color: #d4af37 !important;
  --primary-color-rgb: 212, 175, 55 !important;
  --light-primary-color: #f3e5ab !important;
  --light-filled-primary-color: #f3e5ab !important;
  
  /* Цвета текста */
  --primary-text-color: #ffffff !important;
  --secondary-text-color: #aa9870 !important;
  --light-secondary-text-color: #aa9870 !important;
  --light-filled-secondary-text-color: #aa9870 !important;
  
  /* Сообщения */
  --chat-bubble-out-background: #d4af37 !important;
  --chat-bubble-out-text: #000000 !important;
  --chat-bubble-in-background: #222226 !important;
  --chat-bubble-in-text: #ffffff !important;
  
  /* Дополнительно */
  --message-out-background-color: #d4af37 !important;
  --message-out-background-color-rgb: 212, 175, 55 !important;
  --message-in-background-color: #222226 !important;
  --message-in-background-color-rgb: 34, 34, 38 !important;
  
  /* Ссылки */
  --link-color: #d4af37 !important;
  
  /* Скроллбар */
  --scrollbar-color: rgba(212, 175, 55, 0.3) !important;
  
  /* Выделение */
  --selection-background-color: rgba(212, 175, 55, 0.4) !important;
}

/* Переопределение для темной темы */
.night {
  --body-background-color: #0f0f11 !important;
  --background-color-true: #0f0f11 !important;
  --background-color: #0f0f11 !important;
  --surface-color: #1a1a1e !important;
  --border-color: #2a2a2e !important;
  
  --primary-color: #d4af37 !important;
  --primary-color-rgb: 212, 175, 55 !important;
  --light-primary-color: #f3e5ab !important;
  
  --primary-text-color: #ffffff !important;
  --secondary-text-color: #aa9870 !important;
  
  --chat-bubble-out-background: #d4af37 !important;
  --chat-bubble-out-text: #000000 !important;
  --chat-bubble-in-background: #222226 !important;
  --chat-bubble-in-text: #ffffff !important;
  
  --link-color: #d4af37 !important;
  --selection-background-color: rgba(212, 175, 55, 0.4) !important;
}