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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0b0c10; /* Sleek dark fallback background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Premium blurred background layer */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px) brightness(0.35); /* Blurred and darkened background */
    transform: scale(1.08); /* Scale slightly up to hide blurred edges */
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

/* Content Container */
.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 10px; /* Safe padding for mobile devices */
}

/* The primary coming soon image */
#coming-soon-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Keeps the entire image visible without distortion or cropping */
    border-radius: 8px; /* Smooth rounded corners for a modern feel */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7); /* Deep elegant drop shadow */
    
    /* Animation on load */
    opacity: 0;
    transform: scale(0.97);
    animation: revealImage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animations */
@keyframes revealImage {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
