/* Non-Mobile Device Warning Modal Styles */
.non-mobile-warning-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2050; /* Above RitimPlayer modal but can be adjusted */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Darker overlay */
    justify-content: center;
    align-items: center;
}

.non-mobile-warning-modal.active {
    display: flex;
}

.non-mobile-warning-content {
    background-color: var(--surface-color);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 450px; /* Max width for the modal */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.non-mobile-warning-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.non-mobile-warning-content p {
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-color);
}

.close-non-mobile-warning-btn {
    background-color: var(--secondary-color);
    color: var(--button-text-color);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close-non-mobile-warning-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}