body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.container {
    width: 500px;
    max-width: 95%;
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
}

h1 {
    text-align: center;
}

input {
    width: 100%;
    margin: 15px 0;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2563eb;
    color: white;
    cursor: pointer;
    border-radius: 8px;
}

button:hover {
    background: #1d4ed8;
}

#status {
    margin-top: 15px;
}

#result {
    margin-top: 15px;
    word-break: break-all;
}

a {
    color: #60a5fa;
}
