/* Base Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent scroll restoration on page refresh */
html {
    scroll-behavior: auto;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

body.modal-active {
    overflow: hidden;
}
