* {
    min-width: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 14px;
    line-height: 1.6;
    background: #0a0a0a;
    color: #00ff41;
}

a {
    color: #00ff41;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th {
    text-align: left;
    color: #666;
    font-weight: normal;
    padding: 0.25rem 1rem 0.25rem 0;
    border-bottom: 1px solid #333;
}

td {
    padding: 0.5rem 1rem 0.5rem 0;
    border-bottom: 1px solid #1a1a1a;
}

tr:hover td {
    background: #111;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    background: #111;
    color: #00ff41;
    border: 1px solid #333;
    padding: 0.5em 0.75em;
    outline: none;
}

input:focus, textarea:focus, select:focus {
    border-color: #00ff41;
}

button, .btn {
    font-family: inherit;
    font-size: inherit;
    background: transparent;
    color: #00ff41;
    border: 1px solid #00ff41;
    padding: 0.5em 1em;
    cursor: pointer;
}

button:hover, .btn:hover {
    background: #00ff41;
    color: #0a0a0a;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.blink {
    animation: blink 1.5s ease-in-out infinite;
}
