.quiz-game { --gap: 10px; --radius: 10px; margin-bottom: 10px; }
.quiz-game * { box-sizing: border-box; }

.quiz-game .area{
    position: relative;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 16px;
}

.question-text {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #e7e7e7;
    display: flex;
    height: 150px;
    justify-content: center;
    align-items: center;
}

.question-text b{
    padding: 0px 5px;
}

.options-container { display: flex; gap: 20px;  }

.option {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    color: #1f2937;
}

.option:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    border-color: #667eea;
    background: #f9fafb;
}

.option.selected { background: #667eea; color:#fff; border-color:#667eea; }
.option.disabled { cursor:not-allowed; opacity:.6; }

.option-label { display:block; font-size:16px; color:#999; margin-bottom:10px; font-weight:700; }
.option.selected .option-label { color: rgba(255,255,255,0.8); }

/* Bilgi kutusu (alttan çıkan) */
.quiz-info-box{
    position: fixed;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,.3);
    z-index: 2000;
    transition: bottom .5s cubic-bezier(.68,-.55,.265,1.55);
}
.quiz-info-box.show{ bottom: 0; }
.quiz-info-content{ text-align:center; font-size:18px; font-weight:600; }

@media (max-width: 768px){
    .question-text{ font-size:20px; padding:20px; }
    .options-container{ flex-direction: column; gap: 15px; }
    .option{ padding: 30px 15px; font-size: 18px; }
}
