* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body, html {
    height: 100%;
}

.coming-soon {
    position: relative;
    height: 100vh;
    background: radial-gradient(
            circle at 70% 20%,   /* glow position — top-right */
            #ffffff55 0%,        /* soft white center */
            #003a78 80%          /* deep blue edges */
        ),
        #003a78;  /* fallback base */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}


/* Overlay is optional — keeping it fully transparent */
.overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.content {
    position: relative;
    text-align: center;
    color: #003a78;
    max-width: 600px;
    padding: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #fff;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
