/* Protection Styles */
.protected-content-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f4f7f6;
    color: #333;
    z-index: 999999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}

.protected-content-message h1 {
    font-size: 3rem;
    color: #004a99;
    margin-bottom: 20px;
}

.protected-content-message p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
}

.protected-content-message .notice-badge {
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

body.content-locked .protected-content-message {
    display: flex;
}

body.content-locked>*:not(.protected-content-message) {
    display: none !important;
}

/* Disable text selection */
body.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    pointer-events: none;
}