body {
    background: linear-gradient(
        to top,
        #2d1e60 0%,
        #ff512f 40%,
        #f09819 60%,
        #ffb347 80%,
        #ffe29f 100%
    );
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-bottom: 100px;
    padding-top: 60px; /* Pushes content down from under the fixed banner */
}


footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    z-index: 1000;
    color: white;
}

footer a {
    color: #21bdd1;
    text-decoration: underline;
}

footer a:hover {
    color: #ffffff;
}

body::after {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 35vh;
    background: linear-gradient(to top, #2d1e60 90%, transparent 100%);
    clip-path: polygon(
        0% 100%, 15% 80%, 20% 85%, 30% 70%, 40% 80%, 
        50% 60%, 60% 75%, 70% 65%, 80% 80%, 90% 70%, 100% 100%
    );
    z-index: 2;
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 35vh;
    background: linear-gradient(to top, #2d1383 90%, transparent 100%);
    clip-path: polygon(
        0% 100%, 15% 80%, 20% 85%, 30% 70%, 40% 80%, 
        50% 60%, 60% 75%, 70% 65%, 80% 80%, 90% 70%, 100% 100%
    );
    z-index: 1;
    pointer-events: none;
    transform: translateX(15px);
}


para {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-align: left;
    margin-top: 20px;
    max-width: 600px;
    width: 600px;
    background-color: rgba(45, 30, 96, 0.9); /* Deep Cosmic Purple */
    padding: 20px;
    white-space: pre-line;
    border-radius: 3px;
    overflow-wrap: break-word;
}

.coming-soon-container {
    text-align: center;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.coming-soon-text {
    font-size: 1.2rem;
}

.banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    color: #2421d1;
    text-align: center;
    padding: 1px 0;
    font-family: "Courier New", Courier, monospace;
    font-size: 15px;
    border-bottom: 2px solid #21bdd1;
    z-index: 1000;
    box-shadow: #ffffff 0px 10px 20px;
    text-shadow: #21bdd1 0px 0px 20px;
    padding-top: 20px;
}