/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #141124;
}

/* Hide both containers by default */
.desktop, .mobile {
    display: none;
}

/* Common splash container styles */
.splash-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141124;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

/* Desktop/Tablet version - 768px and up */
@media screen and (min-width: 768px) {
    .desktop {
        display: block;
    }
}

/* Mobile version - under 768px */
@media screen and (max-width: 767px) {
    .mobile {
        display: block;
    }
}

/* Force body to fill screen */
body {
    position: relative;
    margin: 0;
    padding: 0;
}