body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    background-size: cover;
    z-index: -2;
}

/* Glassmorphism Overlay */
.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* Adjust transparency here */
    backdrop-filter: blur(10px); /* Adjust blur intensity here */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    z-index: -1;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px; /* Adjusted margin */
}

.logo {
    width: 280px; /* Adjusted size */
    height: auto;
}

/* Hero Section */
.hero {
    margin-bottom: 30px; /* Adjusted margin */
}

.tagline {
    font-size: 2rem; /* Adjusted size */
    font-weight: 700;
    color: #000;
    margin-bottom: 15px; /* Adjusted margin */
}

.message {
    font-size: 1.1rem; /* Adjusted size */
    line-height: 1.6;
    margin-bottom: 25px; /* Adjusted margin */
}

/* Countdown Styling */
.countdown {
    margin-bottom: 40px; /* Adjusted margin */
}

#timer {
    display: flex;
    gap: 15px; /* Adjusted gap */
    justify-content: center;
    flex-wrap: wrap; /* Added wrap for smaller screens */
}

.countdown-item {
    background-color: #000;
    padding: 15px 20px; /* Adjusted padding */
    border-radius: 8px;
    color: #fff;
    font-size: 1.4rem; /* Adjusted size */
    font-weight: 600;
    min-width: 70px; /* Added minimum width */
}

.countdown-item span {
    display: block;
    font-size: 0.9rem; /* Adjusted size */
    color: #eee;
    margin-top: 5px;
}

/* Footer Styling */
footer {
    margin-top: 40px; /* Adjusted margin */
    width: 100%;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjusted gap */
    margin-bottom: 15px;
    flex-wrap: wrap; /* Added wrap for smaller screens */
}

.social-links a {
    color: #000;
    font-size: 1.5rem; /* Adjusted size */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #555;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .logo {
        width: 250px; /* Further reduced size */
    }

    .tagline {
        font-size: 1.8rem; /* Further reduced size */
    }

    .message {
        font-size: 1rem; /* Further reduced size */
    }

    .countdown-item {
        font-size: 1.2rem; /* Further reduced size */
        padding: 12px 15px; /* Further reduced padding */
    }

    .countdown-item span {
        font-size: 0.8rem; /* Further reduced size */
    }

    .social-links a {
        font-size: 1.4rem; /* Further reduced size */
    }
}

@media (max-width: 480px) {
    .logo {
        width: 220px; /* Even smaller size */
    }

    .tagline {
        font-size: 1.6rem; /* Even smaller size */
    }

    .message {
        font-size: 0.9rem; /* Even smaller size */
    }

    .countdown-item {
        font-size: 1.1rem; /* Even smaller size */
        padding: 10px 12px; /* Even smaller padding */
        min-width: 60px; /* Reduced minimum width */
    }

    .social-links a {
        font-size: 1.3rem; /* Even smaller size */
    }
}