body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: sans-serif;
    background-image: url('https://c.pxhere.com/photos/c7/a8/evening_landscape_castle_ruins_lights_romanticism-633297.jpg!d'); /* Dark and awesome fantasy castle image */
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

h1, h2 {
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="number"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #f0f0f0;
    border-radius: 4px;
}

.cliche-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cliche-group input[type="text"] {
    flex-grow: 1;
}

button {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}