/**
 * ============================================
 * TÜRKER HOCAM - GÖRSEL SINAV STİLLERİ
 * Trafik işaretleri, animasyonlar, gösterge paneli
 * ============================================
 */

/* ==================== BASE ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #f3f4f6;
    color: #111827;
    min-height: 100vh;
}

/* ==================== VISUAL CONTAINER ==================== */
.visual-container {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.visual-container svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* ==================== TRAFFIC SIGNS (SVG) ==================== */

/* --- Yasaklayıcı İşaretler (Kırmızı Daire) --- */
.sign-prohibit {
    width: 160px; height: 160px;
}

/* --- Uyarı İşaretleri (Üçgen) --- */
.sign-warning {
    width: 160px; height: 160px;
}

/* --- Bilgi İşaretleri (Mavi) --- */
.sign-info {
    width: 160px; height: 160px;
}

/* ==================== TRAFFIC LIGHT ==================== */
.traffic-light-box {
    width: 80px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.traffic-light-box .light {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 3px solid #333;
    transition: all 0.5s;
}

.traffic-light-box .light.red { background: #3a0000; }
.traffic-light-box .light.red.active { background: #ff0000; box-shadow: 0 0 20px #ff0000, 0 0 40px rgba(255,0,0,0.4); }

.traffic-light-box .light.yellow { background: #3a3a00; }
.traffic-light-box .light.yellow.active { background: #ffcc00; box-shadow: 0 0 20px #ffcc00, 0 0 40px rgba(255,204,0,0.4); }

.traffic-light-box .light.green { background: #003a00; }
.traffic-light-box .light.green.active { background: #00cc00; box-shadow: 0 0 20px #00cc00, 0 0 40px rgba(0,204,0,0.4); }

/* Yanıp sönen animasyon */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}
.traffic-light-box .light.blink { animation: blink 1s ease-in-out infinite; }

/* Yeşil ok görseli */
.traffic-light-with-arrow {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.green-arrow {
    width: 50px; height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.green-arrow.active svg { fill: #00cc00; filter: drop-shadow(0 0 8px #00cc00); }
.green-arrow svg { fill: #004400; width: 28px; height: 28px; transition: all 0.5s; }

/* Yaya ışığı */
.pedestrian-light-box {
    width: 70px;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.pedestrian-light-box .ped-light {
    width: 44px; height: 56px;
    border-radius: 8px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pedestrian-light-box .ped-light svg { width: 30px; height: 40px; }
.pedestrian-light-box .ped-light.red { background: #2a0000; }
.pedestrian-light-box .ped-light.red.active { background: #660000; }
.pedestrian-light-box .ped-light.red.active svg { fill: #ff2222; filter: drop-shadow(0 0 6px #ff0000); }
.pedestrian-light-box .ped-light.red svg { fill: #440000; }
.pedestrian-light-box .ped-light.green { background: #002a00; }
.pedestrian-light-box .ped-light.green.active { background: #003300; }
.pedestrian-light-box .ped-light.green.active svg { fill: #00dd00; filter: drop-shadow(0 0 6px #00cc00); }
.pedestrian-light-box .ped-light.green svg { fill: #004400; }

/* ==================== ROAD MARKINGS ==================== */
.road-marking-visual {
    width: 240px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.road-surface {
    background: #444;
    padding: 20px;
    position: relative;
    min-height: 140px;
}

/* Kesikli orta çizgi */
.marking-dashed {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 50px 0;
}
.marking-dashed .dash {
    width: 30px; height: 4px;
    background: #fff;
    border-radius: 2px;
}

/* Sürekli orta çizgi */
.marking-solid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.marking-solid .line {
    width: 100%; height: 4px;
    background: #fff;
    border-radius: 2px;
}

/* Çift sürekli */
.marking-double-solid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 50px 20px;
}
.marking-double-solid .line {
    width: 100%; height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Yaya geçidi zebra */
.marking-zebra {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 30px 40px;
    align-items: center;
}
.marking-zebra .stripe {
    width: 80px; height: 8px;
    background: #fff;
    border-radius: 1px;
}

/* Şerit oku */
.marking-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.marking-arrow svg { fill: #fff; width: 50px; height: 80px; }

/* Dur çizgisi */
.marking-stop-line {
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.marking-stop-line .stop-line {
    width: 100%; height: 6px;
    background: #fff;
    border-radius: 2px;
}
.marking-stop-line .dash-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.marking-stop-line .dash-row .dash {
    width: 24px; height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Sarı çizgiler */
.marking-yellow-dashed {
    position: relative;
    padding: 20px;
    min-height: 100px;
}
.marking-yellow-dashed .curb {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 16px;
    background: #888;
}
.marking-yellow-dashed .yellow-marks {
    position: absolute;
    bottom: 16px; left: 0; right: 0;
    display: flex;
    gap: 8px;
    padding: 0 10px;
    justify-content: center;
}
.marking-yellow-dashed .yellow-marks .ydash {
    width: 24px; height: 4px;
    background: #ffcc00;
    border-radius: 2px;
}

.marking-yellow-solid {
    position: relative;
    padding: 20px;
    min-height: 100px;
}
.marking-yellow-solid .curb {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 16px;
    background: #888;
}
.marking-yellow-solid .yellow-line {
    position: absolute;
    bottom: 16px; left: 10px; right: 10px;
    height: 4px;
    background: #ffcc00;
    border-radius: 2px;
}

/* ==================== DASHBOARD INDICATORS ==================== */
.dashboard-visual {
    width: 120px; height: 120px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3), inset 0 2px 6px rgba(0,0,0,0.5);
    position: relative;
}

.dashboard-visual svg {
    width: 60px; height: 60px;
}

.dashboard-visual.warning-red svg { fill: #ff3333; filter: drop-shadow(0 0 10px rgba(255,0,0,0.5)); }
.dashboard-visual.warning-yellow svg { fill: #ffcc00; filter: drop-shadow(0 0 10px rgba(255,204,0,0.5)); }
.dashboard-visual.warning-blue svg { fill: #3399ff; filter: drop-shadow(0 0 10px rgba(51,153,255,0.5)); }
.dashboard-visual.warning-green svg { fill: #33cc33; filter: drop-shadow(0 0 10px rgba(51,204,51,0.5)); }

@keyframes dashboard-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.dashboard-visual.pulse { animation: dashboard-pulse 2s ease-in-out infinite; }

/* ==================== INTERSECTION ANIMATION ==================== */
.intersection-visual {
    width: 260px; height: 260px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.intersection-visual svg {
    width: 100%; height: 100%;
}

/* Araba animasyonları */
@keyframes car-from-right {
    0% { transform: translateX(120px); }
    40% { transform: translateX(20px); }
    60% { transform: translateX(20px); }
    100% { transform: translateX(-120px); }
}

@keyframes car-from-bottom {
    0% { transform: translateY(120px); }
    30% { transform: translateY(20px); }
    70% { transform: translateY(20px); }
    100% { transform: translateY(-120px); }
}

@keyframes car-from-left {
    0% { transform: translateX(-120px); }
    35% { transform: translateX(-20px); }
    65% { transform: translateX(-20px); }
    100% { transform: translateX(120px); }
}

@keyframes car-wait-then-go {
    0% { transform: translateY(30px); }
    60% { transform: translateY(30px); }
    100% { transform: translateY(-120px); }
}

.intersection-car {
    position: absolute;
    transition: all 0.3s;
}

.intersection-car.animate-right { animation: car-from-right 4s ease-in-out infinite; }
.intersection-car.animate-bottom { animation: car-from-bottom 4s ease-in-out infinite; }
.intersection-car.animate-left { animation: car-from-left 4s ease-in-out infinite; }
.intersection-car.animate-wait { animation: car-wait-then-go 4s ease-in-out infinite; }

/* Dönel kavşak animasyonu */
@keyframes rotate-around {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.roundabout-car { animation: rotate-around 4s linear infinite; }

/* Ambulans animasyonu */
@keyframes ambulance-flash {
    0%, 100% { fill: #ff0000; }
    50% { fill: #0000ff; }
}
.ambulance-light { animation: ambulance-flash 0.5s ease-in-out infinite; }

/* ==================== QUIZ LAYOUT ==================== */
.gorsel-quiz-app {
    max-width: 640px;
    margin: 0 auto;
    padding: 16px;
    min-height: calc(100vh - 120px);
}

/* Start Screen */
.gorsel-start-screen {
    text-align: center;
    padding: 40px 20px;
}

.gorsel-start-screen .start-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.gorsel-start-screen h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.gorsel-start-screen .subtitle {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.gorsel-start-screen .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.gorsel-start-screen .stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 8px;
}

.gorsel-start-screen .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #caa746;
}

.gorsel-start-screen .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
}

.gorsel-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.gorsel-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #caa746, #b08f2e);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(202,167,70,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(202,167,70,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #caa746;
    color: #b08f2e;
}

/* Question Card */
.gorsel-question-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 16px;
}

.gorsel-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f9fafb;
    border-bottom: 1px solid #f0f0f0;
}

.gorsel-question-counter {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
}

.gorsel-question-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    background: #e5e7eb;
    padding: 3px 10px;
    border-radius: 20px;
}

.gorsel-question-visual {
    padding: 24px 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.gorsel-question-text {
    padding: 0 20px 16px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #111827;
}

.gorsel-options {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gorsel-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.gorsel-option:hover {
    border-color: #caa746;
    background: #fefcf3;
}

.gorsel-option.selected {
    border-color: #caa746;
    background: #fef9e7;
}

.gorsel-option.correct {
    border-color: #22c55e;
    background: #f0fdf4;
}

.gorsel-option.wrong {
    border-color: #ef4444;
    background: #fef2f2;
}

.gorsel-option-letter {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s;
}

.gorsel-option.selected .gorsel-option-letter {
    background: #caa746;
    color: #fff;
}

.gorsel-option.correct .gorsel-option-letter {
    background: #22c55e;
    color: #fff;
}

.gorsel-option.wrong .gorsel-option-letter {
    background: #ef4444;
    color: #fff;
}

.gorsel-option-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

/* Explanation */
.gorsel-explanation {
    margin: 0 16px 16px;
    padding: 14px 16px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #1e3a5f;
}

.gorsel-explanation.correct-explain { background: #f0fdf4; border-left-color: #22c55e; color: #166534; }
.gorsel-explanation.wrong-explain { background: #fef2f2; border-left-color: #ef4444; color: #991b1b; }

/* Navigation */
.gorsel-nav {
    display: flex;
    gap: 10px;
    padding: 0 16px 20px;
    justify-content: center;
}

.gorsel-nav button {
    flex: 1;
    max-width: 200px;
}

/* Progress Bar */
.gorsel-progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 0 16px 16px;
    overflow: hidden;
}

.gorsel-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #caa746, #e6d48f);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Timer */
.gorsel-timer {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gorsel-timer.warning { color: #f59e0b; }
.gorsel-timer.danger { color: #ef4444; animation: dashboard-pulse 1s ease-in-out infinite; }

/* Results */
.gorsel-results {
    text-align: center;
    padding: 30px 20px;
}

.gorsel-results .result-icon {
    font-size: 64px;
    margin-bottom: 12px;
}

.gorsel-results h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.gorsel-results .result-score {
    font-size: 3rem;
    font-weight: 800;
    margin: 12px 0;
}

.gorsel-results .result-score.pass { color: #22c55e; }
.gorsel-results .result-score.fail { color: #ef4444; }

.gorsel-results .result-detail {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gorsel-results .result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.gorsel-results .result-stat {
    background: #f9fafb;
    border-radius: 12px;
    padding: 14px 8px;
    border: 1px solid #e5e7eb;
}

.gorsel-results .result-stat .stat-num {
    font-size: 1.5rem;
    font-weight: 800;
}

.gorsel-results .result-stat .stat-num.green { color: #22c55e; }
.gorsel-results .result-stat .stat-num.red { color: #ef4444; }
.gorsel-results .result-stat .stat-num.gray { color: #9ca3af; }

.gorsel-results .result-stat .stat-lbl {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.result-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Category filter buttons */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.category-filter-btn:hover { border-color: #caa746; }
.category-filter-btn.active {
    background: #caa746;
    color: #fff;
    border-color: #caa746;
}

/* Responsive */
@media (max-width: 480px) {
    .gorsel-start-screen .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .gorsel-start-screen h1 { font-size: 1.4rem; }
    .gorsel-results .result-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .visual-container { max-width: 220px; }
    .intersection-visual { width: 220px; height: 220px; }
}

/* ==================== PAGE HEADER/FOOTER ==================== */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 20px;
    text-align: center;
}
.page-header img { height: 50px; width: auto; }
.page-header nav { margin-top: 12px; }
.page-header nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 16px;
    transition: color 0.3s;
}
.page-header nav a:hover { color: #caa746; }
.page-header nav a.active { color: #caa746; font-weight: 600; }
.page-footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 24px 20px;
    font-size: 0.85rem;
}
.page-footer a { color: #caa746; text-decoration: none; }

/* ==================== SIGN IMAGE DISPLAY ==================== */
.sign-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sign-quiz-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: #fff;
    padding: 8px;
    border: 2px solid #e5e7eb;
    transition: transform 0.2s;
}

.sign-quiz-image:hover {
    transform: scale(1.05);
}

.sign-code-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

/* Multi-image (comparison questions) */
.multi-image-container {
    max-width: 360px;
}

.multi-image-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.multi-image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.multi-image-item .sign-quiz-image {
    max-width: 140px;
    max-height: 140px;
}

.multi-image-vs {
    font-size: 0.8rem;
    font-weight: 800;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* ==================== QUESTION DOTS ==================== */
.question-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 12px 16px 20px;
}

.q-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.q-dot:hover {
    background: #d1d5db;
    transform: scale(1.2);
}

.q-dot.current {
    background: #caa746;
    transform: scale(1.3);
    border-color: #b08f2e;
}

.q-dot.answered {
    background: #93c5fd;
}

.q-dot.answered.current {
    background: #caa746;
}

/* ==================== CATEGORY RESULTS ==================== */
.cat-results {
    text-align: left;
    margin: 0 auto 20px;
    max-width: 400px;
}

.cat-results h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #374151;
    text-align: center;
}

.cat-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
}

.cat-result-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
}

.cat-result-score {
    font-size: 0.85rem;
    font-weight: 700;
}

.cat-result-score.pass { color: #22c55e; }
.cat-result-score.fail { color: #ef4444; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
    .sign-quiz-image {
        max-width: 160px;
        max-height: 160px;
    }
    .multi-image-item .sign-quiz-image {
        max-width: 110px;
        max-height: 110px;
    }
    .multi-image-row { gap: 8px; }
    .question-dots { gap: 4px; }
    .q-dot { width: 8px; height: 8px; }
}
