/* Basic reset and body styling */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #0d0d0d;
    color: #33ff33;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

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

h1 {
    color: #00ff00;
    font-size: 1.5em;
    line-height: 1.2;
    white-space: pre;
}

.input-section {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"], select, button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

input[type="text"] {
    width: calc(100% - 22px);
    background-color: #333;
    color: #0f0;
    border: 1px solid #0f0;
}

select {
    background-color: #333;
    color: #0f0;
    border: 1px solid #0f0;
}

button {
    background-color: #00ff00;
    color: #000;
    cursor: pointer;
    border: 1px solid #0f0;
}

button:hover {
    background-color: #00cc00;
}

.dork-list {
    margin-top: 20px;
}

.dork-list h2 {
    color: #00ff00;
    text-align: center;
    font-size: 2em;
}

.dork-list ul {
    list-style: none;
    padding: 0;
}

.dork-list li {
    background-color: #333;
    color: #0f0;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    transition: background-color 0.3s, transform 0.3s;
}

.dork-list li:hover {
    background-color: #444;
    transform: scale(1.02);
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
