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

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

/* Container */
.wrapper {
    background: black;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

/* Logo */
.logo img {
    width: 190px;
    margin-bottom: 20px;
}

/* Main Heading */
.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* Description */
.description {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress {
    background-color: #fff;
    border-radius: 20px;
    height: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    background-color: #00bcd4;
    height: 100%;
    width: 0;
    animation: progressAnimation 3s ease-out forwards;
}

@keyframes progressAnimation {
    0% { width: 0; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* Countdown */
.countdown-container {
    font-size: 1.3rem;
    color: #80cbc4;
    margin-top: 20px;
}

#countdown {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5722;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    margin-top: 30px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #f57c00;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .main-heading {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    #countdown {
        font-size: 1.5rem;
    }
}
