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

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.coming-soon {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3),
                 0 0 40px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 2s ease-in-out;
    letter-spacing: 0.1em;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
    }
}
