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

/* Fullscreen black background */
body, html {
    height: 100%;
    background-color: #000;
    overflow: hidden;
}

/* Splash container */
.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    text-align: center;
}

/* Red "Coming Soon" banner */
.banner {
    background-color: #e63946; /* Red background */
    color: #fff; /* White text */
    font-family: Arial, sans-serif;
    font-size: 3vw; /* Responsive font size */
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 0;
    width: 100%; /* Stretch across the full width */
    position: relative;
    top: 0; /* Sit directly above the logo */
    z-index: 2;
}

/* Logo styling */
.logo {
    max-width: 80%;
    max-height: 80%;
    height: auto;
    width: auto;
    z-index: 1;
}

/* Detect smartphones using aspect ratio and smaller screens */
@media (max-width: 600px) and (orientation: portrait) and (aspect-ratio: 9/16) {
    .logo {
        margin-top: -20%; /* Raise logo higher only on smartphones */
    }
}
