/* Choice Modal */
.choice-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.choice-overlay.active { display: flex; }

.choice-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--accent);
    max-width: 700px;
    width: 100%;
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}
.choice-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}
.choice-image-placeholder {
    width: 100%;
    height: 120px;
    background: #1a1a2e;
    border: 1px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.choice-panel h2 { color: var(--accent); font-size: 1.4rem; margin-bottom: 0.8rem; }
.choice-desc { color: #aaa; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.9rem; }

.choice-option {
    display: block;
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid #333;
    padding: 1rem 1.2rem;
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: var(--font-main);
    color: var(--text-primary);
}
.choice-option:hover {
    border-color: var(--accent);
    background: rgba(255, 68, 68, 0.05);
    transform: translateX(4px);
}
.choice-option-label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}
.choice-option-desc {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}
