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

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

body {
    background-color: #1A1C1E;
    color: #E3E2E6;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

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

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