html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    /*font-family: 'Arial', sans-serif;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    transition: background 0.3s, color 0.3s;
}
.container {
    background: #232323;
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 20px #0008;
    text-align: center;
}
h1 {
    margin-bottom: 0.7rem;
    font-size: 3rem; /* Bigger title */
    letter-spacing: 1px;
}
.subtitle {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 2rem;
}
.countdown-row {
    /*display: flex;*/
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countdown-label {
    font-size: 1rem;
    color: #aaa;
}
.countdown-value {
    font-size: 2rem;
    font-weight: bold;
}
.seconds-row {
    margin-bottom: 1.5rem;
}
.seconds-label {
    font-size: 1rem;
    color: #aaa;
}
.seconds-value {
    font-size: 2.2rem;
    font-weight: bold;
}
.dark-toggle {
    margin-top: 1.5rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.dark-toggle:hover {
    background: #444;
}
body.light {
    background: #f5f5f5;
    color: #222;
}
body.light .container {
    background: #fff;
    color: #222;
    box-shadow: 0 0 20px #bbb8;
}
body.light .subtitle,
body.light .countdown-label,
body.light .seconds-label {
    color: #666;
}
body.light .dark-toggle {
    background: #eee;
    color: #222;
}
body.light .dark-toggle:hover {
    background: #ddd;
}
body {
    background: #181818;
}
@media (max-width: 992px) {
    .container {
        margin-top: 50px;
    }
    h1 {
        font-size: 2.5rem; /* Smaller title on smaller screens */
    }
    .countdown-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .countdown-item {
        align-items: center;
    }
    .seconds-row {
        flex-direction: column;
        align-items: center;
    }
    .dark-toggle {
        width: 100%;
        padding: 0.7rem;
    }
    html, body {
        height: revert;
    }
}