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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    /* Enable smooth scrolling for the entire page */
}

/* Common utility classes for text colors */
.text-white {
    color: #ffffff;
}

.text-medium {
    color: #b0b0b0;
}

.text-dark {
    color: #707070;
}

/* Fix modal scroll issues */
.modal {
    -webkit-overflow-scrolling: touch;
}

/* Ensure proper scaling for modal videos */
.video-container iframe {
    width: 100%;
    height: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Mobile body styles */
@media (max-width: 768px) {
    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}