/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background Styling */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(to right, #141e30, #243b55);
    color: white;
    text-align: center;
}

/* Main Container */
.container {
    max-width: 600px;
    padding: 20px;
}

/* Title */
h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Subtitle */
p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.time {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.time span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.time small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    margin-top: 20px;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
