    .coming-soon-wrapper {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f7fa;
        padding: 20px;
        text-align: center;
    }

    .center-box {
        max-width: 700px;
        width: 100%;
        padding: 40px 20px;
    }

    .glitch {
        font-size: 3.5rem;
        font-weight: 800;
        color: #1E60AA;   /* AMTZ blue */
        position: relative;
        margin-bottom: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* Small screen adjustments */
    @media (max-width: 768px) {
        .glitch {
            font-size: 2.5rem;
        }
       
    }

    @media (max-width: 480px) {
        .glitch {
            font-size: 2rem;
        }
    
    }
