 /* Efecto de restricción */
 .restriction-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.restriction-message {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(203, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}
.message {
    text-align: center;
    margin-top: 20px;
    color: #a0aec0;
    max-width: 600px;
}