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

body,
html {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    /* Prevent scrolling */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    opacity: 0;
    /* Start hidden for fade-in */
    animation: fadeIn 1.2s ease-out forwards;
}

/* Video Styling */
.video-wrapper {
    width: 100%;
    max-width: 405px;
    /* Increased by 50% */
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    /* Optional: subtle shadow for depth, remove if strictly flat required */
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.05); */
}

/* Typography */
.coming-soon-text {
    margin-top: 2rem;
    /* Harmonious spacing */
    font-family: 'Futura', sans-serif;
    /* Futura Medium */
    font-weight: 500;
    /* Medium weight */
    font-size: 1.5rem;
    /* Balanced size */
    letter-spacing: 0.1em;
    /* Slight letter spacing for sophistication */
    color: #1a1a1a;
    /* Soft black for better readability vs pure black */
    text-align: center;
}

/* Keyframe Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-video {
        max-width: 90%;
    }

    .coming-soon-text {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
}