/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('images/mybackground.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden; /* Prevent scrolling */
    cursor: none; /* Disable cursor */
}

/* Full-Screen Warning Container */
#warning-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.popup {
    background: white;
    width: 600px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 15px red;
    text-align: center;
}

/* Windows Defender Header */
.popup-header {
    background: #0078d7;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.popup-header img {
    height: 30px; /* Shrink the size */
    width: 30px; /* Shrink the size */
    margin-right: 10px;
}

/* Close Button */
.close-btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Virus Warning Content */
.popup-body {
    padding: 15px;
}

.popup-body img {
    width: 80px;
    height: auto;
}

.popup-body h2 {
    color: red;
    font-size: 22px;
    margin: 10px 0;
}

.popup-body p {
    font-size: 16px;
    margin-bottom: 10px;
}

.popup-body .support-number {
    font-size: 20px;
    font-weight: bold;
    color: #0078d7;
}

/* Fake Scan Results */
.scan-results {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
}

/* Fake Scanning Bar */
.scan-bar {
    height: 10px;
    background: red;
    width: 100%;
    margin-top: 5px;
    border-radius: 5px;
    animation: scanLoad 3s infinite;
}

/* Fake Scan Bar Animation */
@keyframes scanLoad {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Contact Support Button */
.contact-support {
    background: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
}

.contact-support:hover {
    background: darkred;
}

.blinking-popup {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 6cm;
    height: 8cm;
    background-color: rgba(64, 64, 64, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.blinking-popup img {
    width: 30px; /* Shrink the size */
    height: 30px; /* Shrink the size */
}

.blinking-popup .warning-mark {
    font-size: 2em;
    color: red;
}

.second-popup {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 6cm;
    height: 8cm;
    background-color: rgba(64, 64, 64, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.third-popup {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: none;
}

.third-popup img {
    width: 56.25%; /* Reduce the size by 25% */
    height: auto;
}

.popup-logo {
    width: 30px; /* Adjust width */
    height: auto;
    vertical-align: middle;
    margin-right: 8px; /* Adds spacing */
}

/* Styles for defender-logo.png */
.popup-header .popup-logo {
    width: 50px; /* Adjust width as needed */
    height: auto;
    vertical-align: middle;
    margin-right: 10px; /* Adds spacing */
}