* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #005C97 0%, #0279d5 100%);
    color: #333;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Pattern (CSS Only) */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

/* Main Container */
.container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 4rem 2rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 550px;
    width: 90%;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden; /* For the sun silhouette positioning */
}

/* Rising Sun Silhouette */
.sun-silhouette {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    opacity: 0.08;
    z-index: -1;
    fill: #0279d5;
}

/* Logo Area */
.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg {
    width: 160px;
    height: 160px;
    display: block;
}

/* Typography */
.coming-soon-label {
    display: inline-block;
    color: #0279d5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

h1 {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.tagline {
    color: #5b6b85;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Divider */
.divider {
    height: 2px;
    width: 60px;
    background: #0279d5;
    margin: 0 auto 2rem;
    border-radius: 2px;
    opacity: 0.3;
}

/* Footer */
.footer {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo-svg {
        width: 130px;
        height: 130px;
    }

    .sun-silhouette {
        width: 200px;
    }
}
