/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: white;
}

/* Pop-up Warning Styling */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background-color: #333;
    padding: 20px;
    border: 1px solid #666;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

#accept-btn {
    background-color: #444;
    color: #ddd;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#accept-btn:hover {
    background-color: #666;
}

/* Background with Glitch Effect */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    background-color: black;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: glitch 3s infinite;
}

/* Glitch Animation */
@keyframes glitch {
    0% { transform: none; }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: none; }
}

/* Hidden Link Styling */
#hidden-link {
    display: none;
}
