body.cs-default-template {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-45deg, #ff7e5f, #feb47b, #ff7e5f, #feb47b);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

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

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

.coming-soon-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-container p {
    font-size: 1.2rem;
    opacity: 0.85;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}


