/* Content Protection Styles */

/* Disable text selection */
.teleworld-content-protected,
.teleworld-content-protected * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Disable image dragging */
.teleworld-content-protected img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* Image protection overlay */
.image-protection-overlay {
    position: relative;
    display: inline-block;
}

.image-protection-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* Protection message styles */
.protection-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Disable highlighting */
.teleworld-content-protected ::selection {
    background: transparent !important;
}

.teleworld-content-protected ::-moz-selection {
    background: transparent !important;
}

/* Disable focus outlines */
.teleworld-content-protected *:focus {
    outline: none !important;
}

/* Disable image context menu */
.teleworld-content-protected img {
    -webkit-context-menu: none !important;
    -moz-context-menu: none !important;
    context-menu: none !important;
}
