body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
    border-radius: 50%;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#countdown {
    font-size: 3em;
    margin: 20px 0;
}

#launchMessage {
    font-size: 3em;
    color: #f0c808;
    font-weight: bold;
    margin-top: 20px;
}

.link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 10px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.link:hover {
    background-color: #fff;
    color: #000;
}
