/* style.css */
:root {
    --neon: #39FF14;
    --dark: #050505;
    --panel: #111;
    --text: #00ff41;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding-bottom: 50px;
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.card {
    background: rgba(0, 20, 0, 0.8);
    border: 1px solid var(--neon);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

/* --- Typography & Elements --- */
h1, h2, h3 { text-transform: uppercase; border-bottom: 1px solid var(--neon); padding-bottom: 10px; }
a { color: cyan; text-decoration: none; }
button {
    background: var(--neon);
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}
button:hover { box-shadow: 0 0 15px var(--neon); }

input, select, textarea {
    background: #000;
    border: 1px solid var(--neon);
    color: var(--neon);
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    margin-bottom: 10px;
}

/* --- Tables (Responsive) --- */
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { border: 1px solid #333; padding: 10px; text-align: left; }
th { color: var(--neon); }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .container { padding: 10px; }
    table, thead, tbody, th, td, tr { display: block; }
    thead tr { position: absolute; top: -9999px; left: -9999px; }
    tr { margin-bottom: 15px; border: 1px solid var(--neon); }
    td { border: none; position: relative; padding-left: 50%; }
    td:before { 
        position: absolute; left: 10px; width: 45%; 
        white-space: nowrap; content: attr(data-label); font-weight: bold; 
    }
}