/* --- THEME COLORS & BODY --- */
body {
    background-color: #000500;
    color: #00ff41;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    text-shadow: 0 0 5px #00ff41, 0 0 10px rgba(0, 255, 65, 0.5);
}

.container { 
    max-width: 800px; 
    margin: auto; 
    position: relative;
    z-index: 1;
}

/* --- THE WHITE RABBIT (Bottom Left) --- */
.white-rabbit {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 10002;
    font-size: 10px;
    line-height: 1;
    opacity: 0.4; /* Subtle so it's an "Easter Egg" */
    transition: opacity 0.3s, transform 0.3s;
}

.white-rabbit:hover {
    opacity: 1;
    transform: scale(1.1);
}

.white-rabbit a {
    color: #fff; /* It's a WHITE rabbit! */
    text-decoration: none;
    border: none;
}

/* --- HIT COUNTER STYLING --- */
.counter-box {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #00ff41;
    padding-top: 10px;
}

.counter-img {
    filter: hue-rotate(90deg) brightness(1.5); /* Forces external counters to look green */
    border: 1px solid #00ff41;
}

/* --- PREVIOUS STYLES (Scanlines & Glow) --- */
section {
    border: 2px solid #00ff41;
    padding: 15px;
    margin-bottom: 25px;
    background: rgba(0, 20, 0, 0.9);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

a { color: #00ff41; text-decoration: none; border-bottom: 2px solid #00ff41; font-weight: bold; }
a:hover { background: #00ff41; color: #000; box-shadow: 0 0 20px #00ff41; }

@keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
.scanline-bar {
    position: fixed; top: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(0deg, rgba(0, 255, 65, 0) 0%, rgba(0, 255, 65, 0.05) 50%, rgba(0, 255, 65, 0) 100%);
    z-index: 10001; pointer-events: none; animation: scanline 8s linear infinite;
}