body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffecd2, #fcb69f, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
    max-width: 500px;
}

h1 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1em;
    margin-bottom: 20px;
}

#countdown {
    font-size: 2em;
    font-weight: bold;
    color: #ff9800;
    margin: 15px 0;
}

.launch-text {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}