* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
}

.image-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    color: #34495e;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time {
    background: #2c3e50;
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
}

.time span {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.time p {
    color: #fff;
    font-size: 1em;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content {
        padding: 30px;
    }

    h1 {
        font-size: 2em;
    }

    .countdown {
        gap: 15px;
    }

    .time {
        min-width: 80px;
        padding: 15px;
    }

    .time span {
        font-size: 1.5em;
    }
    
    .image-container {
        height: 100vh;
    }
    
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 480px) {
    .content {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .countdown {
        gap: 10px;
    }

    .time {
        min-width: 70px;
        padding: 10px;
    }

    .time span {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 768px) {
    html, body {
        height: 100%;
        width: 100%;
        position: fixed;
        overflow: hidden;
    }
    
    .image-container {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
    }
    
    .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }
}
