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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000c1f; /* Dark Blue Background from your design */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Hide scrollbars caused by blobs */
    position: relative;
    text-align: center;
}

/* --- Decorative Blobs --- */
.blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.4) 0%, rgba(3, 169, 244, 0) 70%);
    filter: blur(100px);
    z-index: 0;
}

.blob1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
}

.blob2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

/* --- Main Container --- */
.container {
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 0.75rem; /* Adjusted space for tagline */
}

.tagline {
    color: #a0a0a0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(3, 169, 244, 0.5); /* Glowing effect */
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #c0c0c0;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* --- Countdown Timer --- */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem; /* Increased margin for better spacing */
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 3.5rem;
    font-weight: 600;
    color: #03a9f4; /* Cyan color from your design */
    line-height: 1;
}

.time-unit p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #a0a0a0;
    text-transform: uppercase;
}

/* --- Social Media Links --- */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f0f0f0;
    border: 1px solid #4a5a73;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #03a9f4;
    border-color: #03a9f4;
    transform: translateY(-3px);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .time-unit span {
        font-size: 2.5rem;
    }
    .countdown {
        gap: 1rem;
    }
}