* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: #0b0b0b;
color: #ffffff;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}

/* Using brown theme */

.quiz-container {
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid #8B4513;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 8px 32px 0 rgba(139, 69, 19, 0.2);
    backdrop-filter: blur(8px);
    text-align: center;
}

/* Screens and utilities */
.screen {
    display: flex;
    flex-direction: column;
    gap:20px
}
.hide{
    display: none !important;
}

h1, h2 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 10px;
}
.quiz-header {
    font-size:1.2rem;
    font-weight: bold;
    color: #8B4513;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

/* Buttons */
.btn {
    background-color: #8B4513;
    color:white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}
.btn:hover {
    background-color: #A0522D;
    box-shadow: 0 0 15px #8B4513;
    transform: translateY(-2px);
}

/* Answer options */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.option-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #444444;
    padding: 14px;
    text-align: left;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s, background-color 0.2s;
}
.option-btn:hover {
    border-color: #8B4513;
    background-color: #3E2723;
}

/* Correction states (js) */
.option-btn.correct {
    background-color: #1b4322 !important;
    border-color: #2ecc71 !important;
    color:#2ecc71
}
.option-btn.wrong {
    background-color: #4a1515 !important;
    border-color: #e74c3c !important;
    color: #e74c3c;
}