/* Dark Theme with Retro Styling */

/* Body styling with dark background */
body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dark table styling */
table {
    border-collapse: collapse;
    border: 1px solid #444444;
}

td, th {
    border: 1px solid #444444;
    padding: 8px;
}

/* Dark button styling */
input[type="button"], input[type="submit"] {
    background-color: #333333;
    color: #e0e0e0;
    border: 1px solid #555555;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

input[type="button"]:hover, input[type="submit"]:hover {
    background-color: #444444;
}

/* Dark text input styling */
input[type="text"] {
    border: 1px solid #555555;
    padding: 4px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-family: inherit;
}

/* Simple link styling */
a:hover {
    text-decoration: underline;
}

/* Dark header styling */
h1, h2, h3 {
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
    padding: 0;
    color: #e0e0e0;
}

/* Dark marquee styling */
.marquee {
    background-color: #2a2a2a;
    color: #999999;
    padding: 5px;
    border: 1px solid #444444;
}

/* Remove all animations and effects */
.pulse, .neon, .three-d, .animated-bg, .starfield, .construction, .hit-counter, .loading, .flash {
    /* No special effects */
}

/* Dark footer styling */
footer {
    border-top: 1px solid #444444;
    margin-top: 20px;
    padding-top: 10px;
}

/* Remove retro filters */
.retro-filter {
    filter: none;
}

/* Remove mobile warning */
@media (max-width: 800px) {
    body::before {
        display: none;
    }
}
