/* Basic page setup */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Main container */
.coming-soon-container {
    padding: 2rem;
    max-width: 800px;
}

/* Main "Coming Soon" text */
.main-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    /* Innovative glow effect */
    text-shadow: 0 0 10px rgba(50, 200, 255, 0.5), 
                 0 0 20px rgba(50, 200, 255, 0.5);
    animation: pulse 2s infinite alternate;
}

/* Tagline text */
.tagline {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Progress bar container */
.progress-container {
    width: 80%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}

/* Progress bar animation */
.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #32c8ff, #7e38ff);
    box-shadow: 0 0 8px rgba(126, 56, 255, 0.7);
    border-radius: 5px;
    animation: fill 4s forwards;
}

/* Launching text */
.progress-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* Keyframe animations for glow and progress bar */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

@keyframes fill {
    0% {
        width: 0%;
    }
    100% {
        /* Adjust this percentage to your desired progress */
        width: 75%; 
    }
}