* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

#countdown ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
}

#countdown li {
    font-size: 1rem;
    text-transform: uppercase;
}

#countdown span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.social-links {
    margin-top: 3rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}
