    /* Global Protection Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        cursor: default;
    }

    body {
        background-color: #f8f9fa;
        font-family: Arial, sans-serif;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        overflow-x: hidden;
    }

    .container {
        padding: 30px 15px;
        position: relative;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    /* Protected Image Container */
    .protected-img-container {
        position: relative;

        border-radius: 8px;
        overflow: hidden;

        border: 2px solid white;
        transition: all 0.3s ease;
    }

    .protected-img-container:hover {
        transform: scale(1.03);

    }

    /* Actual Image with Protection */
    .protected-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 6px;
        display: block;
        pointer-events: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        -webkit-touch-callout: none;
    }

    /* Protection Overlay */
    .protection-overlay {
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        background: transparent;
        z-index: 10;
        border-radius: 6px;
    }

    /* Watermark */
    .watermark {
        position: absolute;
        bottom: 25px;
        right: 25px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        background: rgba(0, 0, 0, 0.6);
        padding: 3px 10px;
        border-radius: 4px;
        z-index: 2;
        pointer-events: none;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Protection Alert */
    .protection-alert {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.95);
        color: white;
        padding: 25px 35px;
        border-radius: 12px;
        z-index: 9999;
        text-align: center;
        font-size: 15px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
        border: 2px solid #ff4444;
        max-width: 450px;
        width: 90%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            border-color: #ff4444;
        }

        50% {
            border-color: #ff8888;
        }

        100% {
            border-color: #ff4444;
        }
    }

    .protection-alert h4 {
        color: #ff6b6b;
        margin-bottom: 12px;
        font-size: 18px;
    }

    .protection-alert p {
        margin: 8px 0;
    }

    /* Loading Blur Effect */
    .loading-blur {
        filter: blur(5px);
        transition: filter 0.5s ease;
    }

    .loading-blur.loaded {
        filter: blur(0);
    }

    /* Responsive Columns */
    .col-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }

    @media (max-width: 768px) {
        .col-md-4 {
            width: 50%;
        }

        .col-lg-3 {
            width: 50%;
        }

        .protected-img {
            height: 200px;
        }
    }

    @media (max-width: 576px) {

        .col-6,
        .col-md-4,
        .col-lg-3 {
            width: 100%;
        }

        .protected-img {
            height: 250px;
        }
    }