body {
    font-family: Arial, sans-serif;
    background: #faf7f2;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
}

.topbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

select,
button {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

button {
    background: #c89f65;
    color: white;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

#hintBox {
    margin-top: 40px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-height: 120px;
    line-height: 1.6;
    font-size: 18px;
}

.hidden {
    display: none;
}

#actions {
    margin-top: 20px;
}

#actions button {
    margin: 0 5px;
}

.support-note {
    margin-top: 50px;
    color: #777;
    font-size: 14px;
}

footer {
    margin-top: 30px;
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
}