/* Full-Page Black Background Overlay */
.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.9;
    z-index: 9997;
    display: none; /* Initially hidden */
}

/* Loader Animation Styles */
.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #2c003e, #1e0029);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

/* Loader Animation Text */
.loader-animation h1 {
    font-size: 36px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

/* Dot Loader */
.dot-loader {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    animation: dot-blink 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.4s;
}

.dot:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes dot-blink {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Success Message Container */
.success-message-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #090520, #180c2f);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: white;
    z-index: 9998;
    width: 90%;
    max-width: 500px;
}

/* Incognito Frame */
.incognito-frame {
    width: 80px;
    height: 80px;
    background-color: purple;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.incognito-frame img {
    width: 60px;
    height: 60px;
}

/* Checkmark and Secured Text */
.checkmark-secured {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.checkmark-frame {
    width: 30px;
    height: 30px;
    background-color: blue;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkmark {
    width: 8px;
    height: 16px;
    border: 4px solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    animation: drawCheckmark 1s ease-in-out;
}

@keyframes drawCheckmark {
    from {
        transform: rotate(45deg) scale(0);
    }
    to {
        transform: rotate(45deg) scale(1);
    }
}

.secured-text {
    font-size: 30px;
    font-weight: bold;
    color: blue;
    margin-top: 18px;
}

/* No Breaches Text */
.no-breaches-text {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
}

/* Subtext */
.subtext {
    font-size: 14px;
    color: lightgray;
    margin-top: 10px;
    line-height: 1.4;
}

/* Minimize Button */
.minimize-button {
    margin-top: 15px;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.minimize-button:hover {
    background-color: #c82333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .loader-animation h1 {
        font-size: 28px;
    }

    .success-message-container {
        padding: 15px;
    }

    .no-breaches-text {
        font-size: 18px;
    }

    .secured-text {
        font-size: 25px;
    }

    .checkmark-frame {
        width: 25px;
        height: 25px;
    }

    .checkmark {
        width: 6px;
        height: 12px;
        border-width: 0 3px 3px 0;
    }
}/* Gears Animation Styles */
.gears-animation h1 {
    font-size: 28px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.gear-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.gear {
    width: 50px;
    height: 50px;
    border: 6px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spinGear 1s linear infinite;
}

.gear1 {
    border-top: 6px solid white;
    border-right: 6px solid white;
}

.gear2 {
    border-bottom: 6px solid white;
    border-left: 6px solid white;
    animation-direction: reverse;
}

.gear3 {
    border-top: 6px solid white;
    border-left: 6px solid white;
    animation-duration: 1.2s;
}

@keyframes spinGear {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Full-Page Pure Black Background Overlay */
.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* Pure black color */
    z-index: 9997;
     background-color: black;
    display: block; /* Visible by default when added */
}

