body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #16161b;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 90%;
}

.logo {
    width: 250px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(200, 13, 20, 0.5);
}

h1 {
    font-family: 'Roboto', sans-serif;
    color: #c80d14;
    font-size: 5em;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

p {
    font-size: 1.5em;
}

#countdown {
    font-size: 2.5em;
    margin-top: 30px;
    color: #c80d14;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #c80d14, 0 0 10px #c80d14;
    }
    to {
        text-shadow: 0 0 10px #c80d14, 0 0 15px #c80d14;
    }
}

@media (max-width: 1024px) { /* Tablet */
    .logo {
        width: 200px;
        border-radius: 20px;
    }
    h1 {
        font-size: 4em;
    }
    p {
        font-size: 1.2em;
    }
    #countdown {
        font-size: 2em;
    }
}

@media (max-width: 768px) { /* Large Mobile */
    .logo {
        width: 150px;
        border-radius: 15px;
    }
    h1 {
        font-size: 3em;
    }
    p {
        font-size: 1em;
    }
    #countdown {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) { /* Small Mobile */
    .logo {
        width: 120px;
        border-radius: 10px;
    }
    h1 {
        font-size: 2.5em;
    }
    p {
        font-size: 0.9em;
    }
    #countdown {
        font-size: 1.2em;
    }
}