
.orientation-msg-container{
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.orientation-msg-text{
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-family: "Arial", sans-serif;
    color: #fff;
    text-align: center;
    width: 80%;
    max-width: 600px;
    padding: clamp(1rem, 3vw, 2rem);
    line-height: 1.5;
}

/* Ajustes específicos para mobile */
@media (max-width: 767px) {
    .orientation-msg-text{    
        font-size: clamp(1.25rem, 4vw, 1.875rem);
        width: 90%;
    }
}

@media (max-width: 500px) {
    .orientation-msg-text{    
        font-size: clamp(1.125rem, 3.5vw, 1.5rem);
        width: 95%;
        padding: clamp(0.75rem, 2vw, 1.5rem);
    }
}