body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #FFCC33, #FF3399, #9900FF, #FF8800, #0077FF, #00C977);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: white;
}

.container {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.slogan {
    font-size: 1.3em;
    color: #FFCC33;
    margin-bottom: 20px;
}

.launch-message {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-section {
    margin-top: 20px;
}

.contact-section h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1em;
    margin: 5px 0;
}

.contact-section a {
    color: #00C977;
    text-decoration: none;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.5em;
    color: #0077FF;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FF3399;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
    .slogan {
        font-size: 1em;
    }
    .launch-message {
        font-size: 0.9em;
    }
}