/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
}

.coming-soon h1 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeIn 2s ease-in-out;
}

.coming-soon p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.85;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Add a subtle glow */
.coming-soon h1 {
    text-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(255,255,255,0.4);
}