/* Modal Overlay - Hidden by default */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark transparent background */
    z-index: 10000; /* Sit on top of everything */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Blurs the website behind it */
}

/* Modal Box */
.modal-content {
    background: #1a1a1a;
    border: 1px solid #ff3333; /* Red border for warning */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
    font-family: 'Courier New', monospace; /* Hacker font vibe */
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.modal-content h2 {
    margin: 0 0 10px 0;
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-content p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 14px;
}

.modal-content .sub-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
}

/* Button */
.modal-content button {
    background: #ff3333;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.modal-content button:hover {
    background: #cc0000;
}
