/*
 * styles.css — external overrides & Telegram theme bridge
 * Main styles live in index.html <style> for single-file portability.
 * Move them here if you prefer a separate file.
 *
 * This file is intentionally minimal — it only handles
 * things that are environment-specific or need to be
 * loaded before the page renders.
 */

/* Telegram safe-area support */
:root {
    --tg-safe-top:    env(safe-area-inset-top, 0px);
    --tg-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* Prevent text size adjust on rotation */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Tap highlight removal */
* {
    -webkit-tap-highlight-color: transparent;
}
