/* Base page styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0c1c2b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: cyan;
    text-align: center;
}

/* Container for the image and text */
.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive image styling */
img {
    max-width: 90%;
    height: auto;
    max-height: 80vh;
    display: block;
    margin-bottom: 20px;
}

/* Countdown text styling */
#redirect-countdown {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: -5px;
}
