/* =============================================================
   1997.gpo.ca — April Fools Campaign Stylesheet
   Combines layout styles + Win95 retro overrides
   ============================================================= */

/* --- 1. THE HACKER LOADER --- */
#hacker-loader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000; color: #00FF00; z-index: 100000000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    font-family: 'Courier New', monospace;
}
.progress-box { width: 300px; border: 1px solid #00FF00; padding: 3px; margin: 20px; }
#bar { width: 0%; height: 10px; background: #00FF00; transition: width 0.3s; }

/* --- 2. THE 1997 HIJACK LAYOUT --- */
#gpo-97-hijack {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #004d26;
    background-image: radial-gradient(#002d16 2px, transparent 2px);
    background-size: 25px 25px;
    z-index: 99999999; overflow-y: auto; font-family: "Times New Roman", Times, serif;
}

.disclaimer-alert {
    background: #FF0000; color: #fff; padding: 10px; text-align: center;
    font-family: Arial, sans-serif; font-weight: bold; border-bottom: 3px solid #000;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { background: #FF0000; } 50% { background: #aa0000; } 100% { background: #FF0000; } }

.main-table {
    width: 95%; max-width: 900px; background: #c0c0c0;
    border: 4px outset #fff; margin: 20px auto;
    box-shadow: 15px 15px 0px rgba(0,0,0,0.5);
}

.sidebar {
    width: 220px;
    background: #00A651;
    border-right: 4px outset #88d4ac;
    padding: 15px;
    vertical-align: top;
    color: #000;
}

.nav-btn {
    display: block;
    background: #c0c0c0;
    border: 2px outset #fff;
    padding: 8px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #000;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    box-shadow: 2px 2px 0px #003d1e;
}
.nav-btn:active { border: 2px inset #fff; }

.error-header {
    font-family: "Arial Black";
    font-size: 45px;
    color: #FF0000;
    text-shadow: 3px 3px 0px #000;
    text-align: center;
    margin: 10px 0;
}

.action-btn {
    display: block;
    background: #00A651;
    color: #fff !important;
    padding: 20px;
    border: 5px outset #88d4ac;
    text-decoration: none !important;
    font-weight: bold;
    font-family: Arial;
    font-size: 22px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 5px 5px 0px #000;
}
.action-btn:active {
    border: 5px inset #88d4ac;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

/* THE RED FLASH TRAP */
.flash-red #gpo-97-hijack { background-color: #FF0000 !important; background-image: none !important; }


/* --- 3. GLOBAL '97 RESET --- */
body.is-1997-mode {
    background-color: #008080 !important;
    font-family: "Times New Roman", Times, serif !important;
    color: #000 !important;
    margin: 0;
    padding: 0;
}

/* --- 4. RETRO BUTTONS (Win95 Style) --- */
.btn-donate, button {
    background: #c0c0c0 !important;
    border-top: 2px solid #ffffff !important;
    border-left: 2px solid #ffffff !important;
    border-right: 2px solid #808080 !important;
    border-bottom: 2px solid #808080 !important;
    border-radius: 0px !important;
    box-shadow: 1px 1px 0px #000000 !important;
    padding: 10px 20px !important;
    color: #000 !important;
    font-weight: bold !important;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-donate:active, button:active {
    border-top: 2px solid #808080 !important;
    border-left: 2px solid #808080 !important;
    border-right: 2px solid #ffffff !important;
    border-bottom: 2px solid #ffffff !important;
    box-shadow: none !important;
}

/* THE TRAP HIGHLIGHT */
#the-only-way-out:focus {
    outline: 5px solid #FFFF00 !important;
    box-shadow: 0 0 20px #FFFF00 !important;
}

/* --- 5. VISITOR COUNTER --- */
.visitor-counter-box {
    display: inline-block;
    background-color: #000;
    border: 2px inset #ffffff;
    padding: 5px 10px;
    font-family: 'Courier New', Courier, monospace;
}

.counter-digits {
    color: #00ff00;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* --- 6. ANIMATIONS --- */
@keyframes retro-blink {
    50% { opacity: 0; }
}

.blink { animation: retro-blink 1s step-start infinite; }

/* 1997 Link Colors */
a { color: #0000FF; text-decoration: underline; }
a:visited { color: #551A8B; }
