/* ═══════════════════════════════════════════════════════════════════════════════
   CONJUGATOR PRACTICE - Scanner HUD Terminal Aesthetic
   Green/Emerald theme matching Vocab mode color
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   CSS VARIABLES - Emerald/Green theme (Vocab mode color)
   ═══════════════════════════════════════════════════════════════════════════════ */
.conjugator-practice-modal {
    --cp-primary: #10B981;           /* Emerald-500 (vocab color) */
    --cp-primary-light: #34D399;     /* Emerald-400 */
    --cp-primary-dark: #059669;      /* Emerald-600 */
    --cp-primary-glow: rgba(16, 185, 129, 0.3);
    --cp-accent: #6EE7B7;            /* Emerald-300 for accents */
    --cp-accent-glow: rgba(110, 231, 183, 0.2);
    --cp-success: #22c55e;
    --cp-success-glow: rgba(34, 197, 94, 0.4);
    --cp-warning: #f59e0b;
    --cp-danger: #ef4444;
    --cp-danger-glow: rgba(239, 68, 68, 0.3);
    --cp-bg-deep: #0a100e;
    --cp-bg-panel: #0f1512;
    --cp-bg-card: #151f1a;
    --cp-border: rgba(16, 185, 129, 0.25);
    --cp-border-subtle: rgba(16, 185, 129, 0.12);
    --cp-text: #e2e8f0;
    --cp-text-muted: #94a3b8;
    --cp-text-dim: #64748b;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MODAL CONTAINER
   ═══════════════════════════════════════════════════════════════════════════════ */
.conjugator-practice-modal {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 5, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cp-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--cp-border);
    background: linear-gradient(135deg, var(--cp-bg-deep) 0%, var(--cp-bg-panel) 50%, var(--cp-bg-deep) 100%);
    box-shadow: 
        0 0 60px var(--cp-primary-glow),
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SCANLINES OVERLAY
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(16, 185, 129, 0.015) 2px,
        rgba(16, 185, 129, 0.015) 4px
    );
    animation: cp-scanline-drift 8s linear infinite;
}

@keyframes cp-scanline-drift {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cp-border);
    background: linear-gradient(90deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        transparent 50%, 
        rgba(16, 185, 129, 0.08) 100%
    );
}

.cp-header-left {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.cp-logo-glyph {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cp-primary);
    text-shadow: 0 0 20px var(--cp-primary-glow);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
}

.cp-header-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cp-text);
    letter-spacing: 0.05em;
}

.cp-header-subtitle {
    font-size: 0.7rem;
    color: var(--cp-primary);
    opacity: 0.8;
    font-family: monospace;
    letter-spacing: 0.03em;
}

.cp-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cp-close-btn {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    border: 1px solid var(--cp-border);
    background: transparent;
    color: var(--cp-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cp-close-btn:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--cp-text);
    border-color: var(--cp-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTENT AREA
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(92vh - 80px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SETUP SCREEN
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-setup-section {
    margin-bottom: 1.5rem;
}

.cp-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cp-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cp-section-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--cp-primary);
    border-radius: 2px;
}

/* Mode Selection Cards */
.cp-mode-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.cp-mode-card {
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--cp-border-subtle);
    background: var(--cp-bg-card);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.cp-mode-card:hover {
    border-color: var(--cp-border);
    background: rgba(16, 185, 129, 0.05);
}

.cp-mode-card.selected {
    border-color: var(--cp-primary);
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px var(--cp-primary-glow);
}

.cp-mode-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.cp-mode-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cp-text);
    margin-bottom: 0.25rem;
}

.cp-mode-card-name-jp {
    font-size: 0.75rem;
    color: var(--cp-text-muted);
    font-family: "Noto Sans JP", sans-serif;
}

.cp-mode-card-count {
    font-size: 0.7rem;
    color: var(--cp-primary);
    font-family: monospace;
    margin-top: 0.5rem;
}

/* Form Selection Grid */
.cp-forms-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Form Groups */
.cp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cp-form-group-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cp-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-left: 0.25rem;
}

.cp-form-group-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cp-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--cp-border-subtle);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cp-form-checkbox:hover {
    background: rgba(16, 185, 129, 0.05);
}

.cp-form-checkbox.checked {
    border-color: var(--cp-primary);
    background: rgba(16, 185, 129, 0.1);
}

.cp-form-checkbox input {
    accent-color: var(--cp-primary);
}

.cp-form-checkbox-label {
    font-size: 0.8rem;
    color: var(--cp-text);
}

/* Pool Selection */
.cp-pool-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cp-pool-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--cp-border-subtle);
    background: transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cp-pool-option:hover {
    background: rgba(16, 185, 129, 0.05);
}

.cp-pool-option.selected {
    border-color: var(--cp-primary);
    background: rgba(16, 185, 129, 0.1);
}

.cp-pool-option-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cp-pool-option-left input {
    accent-color: var(--cp-primary);
}

.cp-pool-option-label {
    font-size: 0.875rem;
    color: var(--cp-text);
}

.cp-pool-option-desc {
    font-size: 0.7rem;
    color: var(--cp-text-dim);
}

.cp-pool-option-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cp-primary);
    font-family: monospace;
}

/* Answer Mode Toggle */
.cp-answer-toggle {
    display: flex;
    gap: 0.5rem;
}

.cp-answer-toggle-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--cp-border-subtle);
    background: transparent;
    color: var(--cp-text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cp-answer-toggle-btn:hover {
    border-color: var(--cp-border);
    color: var(--cp-text);
}

.cp-answer-toggle-btn.selected {
    border-color: var(--cp-primary);
    background: rgba(16, 185, 129, 0.15);
    color: var(--cp-primary-light);
}

/* Start Button */
.cp-start-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 0;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--cp-primary);
    background: linear-gradient(135deg, var(--cp-primary-dark) 0%, var(--cp-primary) 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cp-start-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--cp-primary) 0%, var(--cp-primary-light) 100%);
    box-shadow: 0 0 30px var(--cp-primary-glow);
    transform: translateY(-2px);
}

.cp-start-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cp-start-btn-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Stats Bar */
.cp-stats-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cp-border-subtle);
}

.cp-stat {
    text-align: center;
}

.cp-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cp-primary);
    font-family: monospace;
}

.cp-stat-label {
    font-size: 0.7rem;
    color: var(--cp-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRACTICE SCREEN
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-practice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cp-progress-text {
    font-size: 0.875rem;
    color: var(--cp-text-muted);
    font-family: monospace;
}

.cp-progress-bar {
    flex: 1;
    max-width: 200px;
    height: 4px;
    background: var(--cp-bg-card);
    border-radius: 2px;
    margin-left: 1rem;
    overflow: hidden;
}

.cp-progress-fill {
    height: 100%;
    background: var(--cp-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Question Display */
.cp-question {
    text-align: center;
    margin-bottom: 2rem;
}

.cp-question-prompt {
    font-size: 0.9rem;
    color: var(--cp-text-muted);
    margin-bottom: 0.5rem;
}

.cp-question-form {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cp-primary);
    margin-bottom: 1.5rem;
}

.cp-question-word {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cp-text);
    margin-bottom: 0.5rem;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.cp-question-meaning {
    font-size: 1rem;
    color: var(--cp-text-muted);
}

.cp-question-info {
    font-size: 0.75rem;
    color: var(--cp-text-dim);
    margin-top: 0.5rem;
    font-family: monospace;
}

/* Multiple Choice Options */
.cp-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.cp-option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
    color: var(--cp-text);
    font-size: 1.25rem;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.02),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Subtle accent line on left edge (matches main review) */
.cp-option-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--cp-primary) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cp-option-btn:hover::before {
    opacity: 0.6;
}

/* Hover state - blue accent like main review */
.cp-option-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* Selected state - shows user's current choice */
.cp-option-btn.selected:not(.correct):not(.incorrect) {
    border-color: var(--cp-primary);
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 20px var(--cp-primary-glow);
}

/* Correct answer - always highlighted after first selection */
.cp-option-btn.correct {
    border-color: var(--cp-success);
    background: rgba(34, 197, 94, 0.15);
    box-shadow: 
        0 0 25px rgba(34, 197, 94, 0.25),
        inset 0 0 15px rgba(34, 197, 94, 0.08);
    cursor: pointer; /* Still clickable for re-selection */
}

.cp-option-btn.correct:not(.selected) {
    color: var(--cp-success);
}

/* Selected correct answer - white text on green */
.cp-option-btn.correct.selected {
    background: rgba(34, 197, 94, 0.25);
    color: #fff;
}

/* Incorrect answer styling (only when selected) */
.cp-option-btn.incorrect {
    cursor: pointer; /* Still clickable for re-selection */
}

.cp-option-btn.incorrect.selected {
    border-color: var(--cp-danger);
    background: rgba(239, 68, 68, 0.2);
    color: #fff;
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.2),
        inset 0 0 15px rgba(239, 68, 68, 0.08);
}

.cp-option-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--cp-primary);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: ui-monospace, 'SF Mono', Monaco, monospace;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
    transition: all 0.2s ease;
}

/* Hover state number badge */
.cp-option-btn:hover .cp-option-number {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3b82f6;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* Correct answer number badge */
.cp-option-btn.correct .cp-option-number {
    background: var(--cp-success);
    border-color: var(--cp-success);
    color: #fff;
    text-shadow: none;
}

/* Incorrect selected number badge */
.cp-option-btn.incorrect.selected .cp-option-number {
    background: var(--cp-danger);
    border-color: var(--cp-danger);
    color: #fff;
    text-shadow: none;
}

/* Typing Input */
.cp-typing-area {
    max-width: 500px;
    margin: 0 auto;
}

.cp-typing-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--cp-border);
    background: var(--cp-bg-card);
    color: var(--cp-text);
    font-size: 1.5rem;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
    text-align: center;
    outline: none;
    transition: all 0.15s ease;
}

.cp-typing-input:focus {
    border-color: var(--cp-primary);
    box-shadow: 0 0 20px var(--cp-primary-glow);
}

.cp-typing-input::placeholder {
    color: var(--cp-text-dim);
}

.cp-typing-submit {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem;
    border-radius: 10px;
    border: 1px solid var(--cp-primary);
    background: var(--cp-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cp-typing-submit:hover {
    background: var(--cp-primary-light);
}

/* Feedback - polished pill-based layout matching main review */
.cp-feedback {
    margin-top: 1.5rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
}

.cp-feedback.correct {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.cp-feedback.incorrect {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cp-feedback-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cp-feedback-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.cp-feedback.correct .cp-feedback-status {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--cp-success);
}

.cp-feedback.incorrect .cp-feedback-status {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--cp-danger);
}

.cp-feedback-icon {
    font-size: 1rem;
}

.cp-feedback-text {
    font-weight: 600;
}

.cp-feedback-timing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--cp-border);
}

.cp-feedback-time {
    font-size: 0.875rem;
    font-weight: 700;
    font-family: ui-monospace, 'SF Mono', Monaco, monospace;
    color: var(--cp-primary-light);
}

.cp-feedback-speed {
    font-size: 0.75rem;
    color: var(--cp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cp-feedback-answer {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--cp-text-muted);
}

.cp-answer-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cp-text);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
    margin-left: 0.25rem;
}

/* Pitch Accent Container */
.cp-pitch-container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.cp-pitch-container .review-pitch-container {
    transform: scale(0.9);
    transform-origin: center;
}

/* Continue Button - matches main review advance style */
.cp-continue-btn {
    display: block;
    margin: 1.25rem auto 0;
    padding: 0.75rem 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--cp-primary);
    background: rgba(16, 185, 129, 0.12);
    color: var(--cp-primary-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.cp-continue-btn:hover {
    background: var(--cp-primary);
    color: white;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
}

.cp-continue-btn:active {
    transform: translateY(0);
}

/* Hint Text */
.cp-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--cp-text-dim);
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESULTS SCREEN
   ═══════════════════════════════════════════════════════════════════════════════ */
.cp-results {
    text-align: center;
    padding: 2rem 1rem;
}

.cp-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cp-text);
    margin-bottom: 0.5rem;
}

.cp-results-subtitle {
    font-size: 1rem;
    color: var(--cp-text-muted);
    margin-bottom: 2rem;
}

.cp-results-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cp-primary);
    text-shadow: 0 0 40px var(--cp-primary-glow);
    margin-bottom: 0.5rem;
}

.cp-results-score-label {
    font-size: 0.875rem;
    color: var(--cp-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cp-results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cp-results-btn {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cp-results-btn-primary {
    border: 1px solid var(--cp-primary);
    background: var(--cp-primary);
    color: white;
}

.cp-results-btn-primary:hover {
    background: var(--cp-primary-light);
}

.cp-results-btn-secondary {
    border: 1px solid var(--cp-border);
    background: transparent;
    color: var(--cp-text-muted);
}

.cp-results-btn-secondary:hover {
    border-color: var(--cp-primary);
    color: var(--cp-text);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cp-mode-cards {
        grid-template-columns: 1fr;
    }

    .cp-form-group-items {
        flex-direction: column;
    }

    .cp-form-checkbox {
        width: 100%;
    }

    .cp-question-word {
        font-size: 2.5rem;
    }

    .cp-stats-bar {
        gap: 1rem;
    }
}

