@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #0A4C2A, #2AB573, #12A95C);
    background-size: 400% 400%;
    animation: gradientMove 25s ease infinite;
    overflow: hidden;
    color: #ffffff;
    margin: 0;
}

body::before, body::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(150px);
    z-index: 0;
}

body::before {
    top: -200px;
    left: -200px;
}

body::after {
    bottom: -200px;
    right: -200px;
}

.coming-soon-banner--container {
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 2.6em;
    font-weight: 700;
    line-height: 1.4;
    max-width: 700px;
    z-index: 1;
    animation: fadeInUp 1.5s ease forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

h1 span {
    display: block;
}

h1 .pre, h1 .post {
    color: #F7F7F7;
}

h1 a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 700;
}

.btn-container {
    margin-top: 2.2em;
    z-index: 1;
}

.btn {
    background-color: #FFB238;
    color: #fff;
    border: none;
    padding: 1.3em 2.8em;
    margin: 0.7em;
    border-radius: 50px;
    font-size: 1.25em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #FFC857;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .btn {
        font-size: 1.05em;
        padding: 1em 2.2em;
    }
}
