body {
    font-family: 'Source Code Pro', monospace;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.glow-header {
    font-size: 2.5em;
    color: #00d9ff;
    text-shadow: 0 0 10px #00d9ff;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff4081;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    color: #ff4081;
    text-shadow: 0 0 10px #ff4081;
    font-size: 1em;
}

.countdown-label {
    font-size: 0.4em;
    margin-top: 5px;
    white-space: nowrap;
}

.countdown-date {
    font-size: 0.6em;
    color: #ffffff;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    opacity: 0.6;
}

#lang-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4081;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    font-size: 0.9em;
}