/* Base Styles for JewbileeTV */
/* Global reset and base styles */

/* Inter Font - Self-hosted (400=regular, 500=medium) */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter_regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter_medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force Inter font on all elements to override webOS injected stylesheet */
*, *::before, *::after {
    font-family: 'Inter', sans-serif !important;
}

body {
    background-color: #1A1C1E;
    color: #E3E2E6;
    overflow-x: hidden;
}

/* Hide scrollbars globally - TV apps should not show scrollbars */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

#navbar-container {
    position: relative;
    z-index: 1000;
}

/* CSS containment on layer containers to isolate layout recalculations */
[id$="-layer"] {
    contain: layout style;
}

#root {
    min-height: 100vh;
    padding-top: 5.556vh; /* 60px at 1080p */
}
