/* ===================================
   BASE RESET STYLES
   Базовые стили сброса браузерных настроек
   =================================== */

/* Universal Box Sizing Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Telegram Web App Override */
html, body {
    background-color: transparent !important;
}

/* Body Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif !important;
    background: linear-gradient(135deg, #16213e 0%, #0f1829 100%) !important;
    color: white !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: 100vh !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Main Container */
.demo-container {
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    position: relative !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
}
