/* Reset & Google Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #f9f7f1, #d4a373);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #333;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    max-width: 500px;
}

h1 {
    font-size: 2.5rem;
    color: #b65c1b;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.countdown p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #b65c1b;
}

footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}