body {
    margin: 0;
    background: radial-gradient(circle at top, #111, #050505);
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #00ff88;
}

.card {
    width: 380px;
    padding: 25px;
    border-radius: 16px;
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.2);
    box-shadow: 0 0 40px rgba(0,255,136,0.1);
    backdrop-filter: blur(12px);
}

.title h1 {
    margin: 0;
    font-size: 18px;
}

.title p {
    margin: 5px 0 15px;
    font-size: 12px;
    opacity: 0.6;
}

input {
    width: 100%;
    padding: 12px;
    margin: 6px 0;
    border-radius: 8px;
    border: 1px solid rgba(0,255,136,0.3);
    background: rgba(0,0,0,0.6);
    color: #00ff88;
    outline: none;
}

input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0,255,136,0.3);
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: none;
    background: #00ff88;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #00ff88;
}

#status {
    margin-top: 10px;
    font-size: 12px;
}

pre {
    margin-top: 10px;
    font-size: 11px;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 8px;
    overflow: auto;
}