/* ------------------- Verification System Styles ------------------- */

/* Main Container for the verification overlay */
.content-locker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Semi-transparent black overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it appears above all other elements */
    display: none; /* Hidden by default */
}

/* Message container inside the overlay */
.content-locker .message {
    background: #141414; /* Dark gray background for the message box */
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* Soft shadow for depth */
    width: 90%;
    max-width: 500px;
}

/* Header of the message */
.content-locker .message h2 {
    color: #E50914; /* Red accent color for the header */
    margin-bottom: 20px;
}

/* Verify button styles */
.content-locker .message button {
    padding: 14px 35px;
    background: linear-gradient(135deg, #E50914, #B20710); /* Gradient red button */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    position: relative;
    overflow: hidden;
}

/* Hover effect for the button */
.content-locker .message button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
    background: linear-gradient(135deg, #FF0A16, #C30812); /* Slightly darker gradient on hover */
}

/* Active state for the button */
.content-locker .message button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
}

/* Ripple effect animation */
.content-locker .message button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.content-locker .message button:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0, 0); opacity: 0.5; }
    100% { transform: scale(20, 20); opacity: 0; }
}

/* Loading spinner */
.btn-loading {
    color: transparent;
    position: relative;
}

.btn-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Shake animation for error states */
.btn-shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Adblock warning message */
.adblock-warning {
    color: #ff6b6b;
    margin-top: 15px;
    display: none;
    font-size: 14px;
}