.coming-soon-container {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #0B67B2, #033E72);
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.content h1 {
    font-size: 55px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Add a subtle glowing animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
