body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.quiz-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.4;
}

p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.choices-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

button {
    background-color: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.start-btn {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.start-btn:hover {
    background-color: #218838;
    border-color: #218838;
}

.reveal-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #222;
    animation: fadeIn 0.5s ease;
}

.final-city {
    font-size: 2rem;
    color: #dc3545;
    margin-top: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hidden {
    display: none !important;
}