* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://image2url.com/images/1765215690302-3aaa604d-2ebc-4621-b63f-74eef95e3283.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Background image is handled by .background-image class */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 100, 0, 0.2) 100%
    );
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

.store-name {
    font-family: 'Blaka', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
}

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 2px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 30px auto;
    animation: expand 1.5s ease-out 0.5s both;
}

.description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 15px;
    }
    
    .coming-soon {
        font-size: clamp(1.2rem, 5vw, 2rem);
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }
    
    .divider {
        margin: 20px auto;
    }
}

/* Mobile - Ensure background image covers full screen */
@media screen and (max-width: 768px) {
    .background-image {
        background-size: cover !important;
        background-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
}

