body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    background-color: #111;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    border: 1px solid #333;
    max-width: 500px;
    width: 90%;
}

.logo {
    font-family: 'Creepster', cursive;
    font-size: 6rem;
    margin: 0 0 1rem 0;
    letter-spacing: 10px;
}

/* Die originalen ??? Farben: Weiß, Rot, Blau */
.q1 { color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
.q2 { color: #ff0000; text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
.q3 { color: #0088ff; text-shadow: 0 0 10px rgba(0, 136, 255, 0.5); }

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.riddle-box {
    background-color: #222;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0088ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.riddle-box p {
    margin-top: 0;
}

.riddle-box p:last-child {
    margin-bottom: 0;
}

input[type="text"] {
    width: 80%;
    padding: 15px;
    font-size: 1.2rem;
    background-color: #222;
    border: 2px solid #555;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: #ff0000;
}

button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.1s;
}

button:hover {
    background-color: #cc0000;
}

button:active {
    transform: scale(0.95);
}

.hidden {
    display: none !important;
}

#error-message {
    color: #ff5555;
    margin-top: 1rem;
    font-style: italic;
}

#success-content {
    animation: fadeIn 1s ease-in;
}

#success-content h2 {
    color: #0088ff;
    font-size: 2rem;
}

.gift-box {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #222, #111);
    border: 2px dashed #ff0000;
    border-radius: 10px;
    font-size: 1.5rem;
    line-height: 1.5;
}

.download-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #333;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.download-link:hover {
    background-color: #555;
    color: #0088ff;
}

.signature {
    margin-top: 2rem;
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #aaa;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
