/* === TACTICAL QUIZ BLOCK === */

.testing-block {
    margin-top: 80px; /* Відступ від попереднього блоку */
}

/* --- Quiz Interface Card --- */
.quiz-interface {
    background: #111827; /* Very dark blue/gray */
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 20px;
    max-width: 400px; /* Mobile width mimic */
    margin: 0 auto;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

/* Top Progress */
.quiz-top-bar {
    display: flex; justify-content: space-between; margin-bottom: 8px;
    font-size: 0.7rem; color: #9ca3af; font-weight: 700;
}
.quiz-progress-track {
    height: 6px; background: #374151; border-radius: 3px; overflow: hidden; margin-bottom: 20px;
}
.quiz-progress-fill {
    height: 100%; background: #ef4444; border-radius: 3px;
}

/* --- CSS Tactical Field --- */
.tactical-scene {
    position: relative;
    height: 200px;
    background: #4ade80; /* Grass Green */
    background: linear-gradient(180deg, #65a30d 0%, #4d7c0f 100%); /* Texture imitation */
    border-radius: 8px;
    border: 2px solid #3f6212;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

/* Field Markings */
.field-center-line {
    position: absolute; top: 0; bottom: 0; left: 50%; border-left: 1px solid rgba(255,255,255,0.4);
}
.field-center-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%;
}
.field-box {
    position: absolute; top: 20%; bottom: 20%; width: 15%; border: 1px solid rgba(255,255,255,0.4);
}
.field-box.left { left: 0; border-left: none; }
.field-box.right { right: 0; border-right: none; }

/* Vision Cone (Yellow Sector) */
.vision-cone {
    position: absolute;
    top: 50%; left: 45%; /* Starts from hero player */
    width: 200px; height: 140px;
    background: rgba(250, 204, 21, 0.4); /* Yellow Transparent */
    transform: translateY(-50%);
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
    z-index: 1;
    pointer-events: none;
}

/* Players Dots */
.t-player {
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: bold; color: white;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-p { background: #22c55e; border: 2px solid #fff; z-index: 3; } /* Green Hero */
.blue-p { background: #3b82f6; } /* Teammates */
.red-p { background: #ef4444; } /* Opponents */

.t-ball {
    position: absolute; width: 8px; height: 8px; background: #fff; border-radius: 50%; border: 1px solid #000; z-index: 3;
}

/* Ready Button overlay */
.ready-btn {
    position: absolute; bottom: 10px; right: 10px;
    background: #3b82f6; color: white;
    font-size: 0.7rem; font-weight: 700;
    padding: 6px 12px; border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 4;
}

/* --- Question & Answers --- */
.quiz-question-area {
    background: #1f2937;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #374151;
    margin-bottom: 15px;
}
.quiz-question-area p {
    font-size: 0.8rem; color: #9ca3af; margin: 0 0 5px 0;
}
.quiz-question-area strong {
    font-size: 0.9rem; color: #fff; display: block;
}

.quiz-answers {
    display: flex; flex-direction: column; gap: 10px;
}

.ans-btn {
    background: #374151;
    color: #d1d5db;
    border: 1px solid #4b5563;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.ans-btn:hover {
    background: #4b5563;
    color: #fff;
    border-color: #6b7280;
}