* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.coming-soon-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('compress_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
}

.content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    min-height: 100vh;
}

.logo {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 90px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.main-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 36px;
    margin-top: -40px;
    letter-spacing: -0.01em;
    padding: 0 20px;
}

.sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 29px;
    letter-spacing: 0.02em;
}

.countdown-timer {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: normal;
    color: #FDC200;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 48px;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        width: 75px;
    }
    
    .main-heading {
        font-size: 32px;
        margin-bottom: 24px;
        max-width: 95%;
    }
    
    .countdown-timer {
        font-size: 28px;
    }
    
    .social-icons {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .logo {
        top: 40px;
    }
    
    .logo img {
        width: 60px;
    }
    
    .main-heading {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .countdown-timer {
        font-size: 24px;
    }
    
    .social-icons {
        gap: 24px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}

