@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 20px;
    background: #0a0a0a;
    color: #00ff41;
    font-family: 'Fira Code', 'Courier New', monospace;
    min-height: 100vh;
}

a { color: #00ff41; }

.container {
    max-width: 640px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 22px;
    text-shadow: 0 0 8px #00ff41;
    margin: 0 0 8px;
}

.subtitle {
    color: #888;
    font-size: 13px;
}

.card {
    border: 1px solid #00ff41;
    box-shadow: 0 0 10px rgba(0,255,65,0.15);
    background: #0f0f0f;
    padding: 20px;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 16px;
    margin-top: 0;
    border-bottom: 1px solid #00ff41;
    padding-bottom: 8px;
}

label {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
}

input[type="text"], input[type="url"], input[type="password"], select {
    width: 100%;
    background: #000;
    border: 1px solid #00ff41;
    color: #00ff41;
    font-family: inherit;
    font-size: 13px;
    padding: 8px;
    margin-top: 4px;
}

.btn {
    background: #000;
    border: 2px solid #00ff41;
    color: #00ff41;
    font-family: inherit;
    font-size: 13px;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover { background: #00ff41; color: #000; }

.btn.danger { border-color: #ff0033; color: #ff0033; }
.btn.danger:hover { background: #ff0033; color: #000; }

.result {
    margin-top: 16px;
    padding: 12px;
    border: 1px dashed #00ff41;
    background: #000;
    word-break: break-all;
}

.error {
    color: #ff0033;
    border-color: #ff0033;
}

.success { color: #00ff41; }

.small { font-size: 11px; color: #888; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

th, td {
    border: 1px solid #1a1a1a;
    padding: 6px;
    text-align: left;
}

th { background: #001100; }

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    flex: 1;
    border: 1px solid #00ff41;
    padding: 12px;
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
}

.denied {
    text-align: center;
    margin-top: 60px;
}

.denied h1 {
    color: #ff0033;
    text-shadow: 0 0 10px rgba(255,0,51,0.5);
}
