.mobile-only-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    font-family: "Cinzel", Sans-serif;
}

.mobile-only-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid var(--e-global-color-text, #7c9fca);
}

.mobile-only-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.mobile-only-content h1 {
    color: var(--e-global-color-text, #7c9fca);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-only-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mobile-only-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-only-details h3 {
    font-family: "Aerotis", "Cinzel", serif;
    color: var(--e-global-color-accent, #d4af37);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.mobile-only-details p {
    color: var(--e-global-color-text, #7c9fca);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hide main content on non-mobile devices */
@media (min-width: 769px) {
    body:not(.mobile-only-override) .elementor {
        display: none !important;
    }
    
    body:not(.mobile-only-override) header {
        display: none !important;
    }
}

/* Responsive adjustments for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-only-content {
        padding: 35px;
    }
    
    .mobile-only-content h1 {
        font-size: 24px;
    }
}

/* Very large screens */
@media (min-width: 1200px) {
    .mobile-only-content {
        padding: 50px;
        max-width: 600px;
    }
    
    .mobile-only-icon {
        font-size: 80px;
    }
    
    .mobile-only-content h1 {
        font-size: 32px;
    }
    
    .mobile-only-content p {
        font-size: 18px;
    }
}
