/* --- Global Styles & Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
    
    /* Animated Gradient Background */
    background: linear-gradient(315deg, #a40025, #ff9c1d, #07c1ffff, #77f94f);
    background-size: 400% 400%;
    animation: gradient-flow 18s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Main Container --- */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

/* --- Logo --- */
.logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* --- Typography --- */
.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 10vw, 7rem);
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 600px;
    margin: 20px 0 40px;
}

/* --- Countdown Timer --- */
.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-block span {
    display: block;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-family: 'Bebas Neue', cursive;
    line-height: 1;
}

.time-block div {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- Social Icon --- */
.social-container {
    margin-top: 20px;
}

.social-container p {
    margin-bottom: 15px;
    font-weight: bold;
}

.social-link {
    display: inline-block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.social-link svg {
    display: block; /* Removes tiny space below svg */
}

/* --- Media Query for Mobile Devices --- */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    .time-block {
        min-width: 70px;
        padding: 15px 10px;
    }
}