body, html, a {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Arial' monospace;
    overflow: hidden;
}

/* Countdown Container */
#timer {
    position: relative;
    z-index: 10;
    color: #ff3333;
    font-size: clamp(2rem, 8vw, 6rem); /* Responsive font sizing */
    font-weight: bold;
    text-shadow: 0 0 30px #ff0000;
    background: rgba(0, 0, 0, 0.9);
    padding: 30px 60px;
    border-radius: 5px;
    border: 3px solid #ff3333;
    text-align: center;
}

/* Info section styles */
.info {
    position: relative;
    z-index: 10;
    color: #ff3333;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 15px #ff0000;
    text-align: center;
    margin-top: 20px;
}