/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(8deg, #f14d0f, #f18648); /* Gradient background */
}

/* Main container */
.container {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
}

/* Logo styling */
.logo img {
    width: 190px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)); /* Logo shadow */
}

/* Title styling */
h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: white;
    background: linear-gradient(8deg, #f14d0f, #f18648);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle styling */
p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Countdown styling */
#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5em;
    color: white;
}

/* Countdown timer boxes */
#countdown div {
    background: #FF512F;
    background: linear-gradient(45deg, #FF512F, #F09819);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#countdown span {
    font-weight: bold;
    display: block;
    font-size: 2em;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    h1 {
        font-size: 2em;
    }

    #countdown {
        gap: 10px;
        font-size: 1.2em;
    }

    #countdown div {
        padding: 15px;
    }
}
