/* Telegram CSS Variables */
:root {
  --tg-theme-bg-color: #ffffff;
  --tg-theme-text-color: #000000;
  --tg-theme-hint-color: #999999;
  --tg-theme-link-color: #2196f3;
  --tg-theme-button-color: #3390ec;
  --tg-theme-button-text-color: #ffffff;
  --tg-theme-secondary-bg-color: #f0f0f0;
  --tg-theme-header-bg-color: #ffffff;
  --tg-theme-accent-text-color: #3390ec;
  --tg-theme-section-bg-color: #ffffff;
  --tg-theme-section-header-text-color: #707579;
  --tg-theme-subtitle-text-color: #707579;
  --tg-theme-destructive-text-color: #df3f40;
}

/* Dark theme fallback */
@media (prefers-color-scheme: dark) {
  :root {
    --tg-theme-bg-color: #212121;
    --tg-theme-text-color: #ffffff;
    --tg-theme-hint-color: #aaaaaa;
    --tg-theme-link-color: #8cc2ff;
    --tg-theme-button-color: #8cc2ff;
    --tg-theme-button-text-color: #212121;
    --tg-theme-secondary-bg-color: #0f0f0f;
    --tg-theme-header-bg-color: #212121;
    --tg-theme-section-bg-color: #212121;
  }
}
