body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.cinzel {
    font-family: 'Cinzel Decorative', serif;
}

.quiz-container {
    background: linear-gradient(145deg, #2a2c50, #141428);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 2px solid #5a5a8a;
}

.button {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.start-button {
    background-image: linear-gradient(to right, #4c5a96, #8e6c87);
    color: #fff;
}

.start-button:hover {
    border-color: #a879a0;
}

.choice-button {
    background-color: #2e305e;
    color: #fff;
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
    border: 1px solid #4a4d7c;
}

.choice-button:hover {
    background-color: #3f4273;
    border-color: #6a6e9a;
}

.progress-bar {
    height: 10px;
    background-color: #4a4d7c;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress {
    height: 100%;
    background-color: #8e6c87;
    transition: width 0.5s ease;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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