/* Imagos Softworks - Main Stylesheet */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    line-height: 1.5;
}

/* Layout */
.page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Components */
.logo {
    max-width: 22.5vw;
    max-height: 20vh;
    width: auto;
    height: auto;
}

/* Mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .logo {
        max-width: 70vw;
        max-height: 30vh;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
