body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    text-align: center;
    padding-top: 50px;
    cursor: url('https://search.jachu.xyz/images/cursor.cur'), auto;
}

.container {
    width: 90%;
    max-width: 400px;
    margin: auto;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ff00;
}

button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background: black;
    color: #00ff00;
    border: 1px solid #00ff00;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #00ff00;
    color: black;
}

input {
    width: 90%;
    padding: 10px;
    margin-top: 10px;
    background: black;
    color: #00ff00;
    border: 1px solid #00ff00;
}

.loading {
    display: none;
    margin-top: 20px;
    font-size: 20px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: black;
    border: 1px solid #00ff00;
    margin-top: 10px;
    position: relative;
}

.progress {
    width: 0%;
    height: 100%;
    background: #00ff00;
    position: absolute;
}

h2 {
    color: red;
}
