.skill-question-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-question-modal.show {
    opacity: 1;
}

.skill-question-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.skill-question-header {
    text-align: center;
    margin-bottom: 30px;
}

.skill-question-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.skill-question-subtitle {
    color: #999;
    font-size: 16px;
}

.skill-question-text {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.skill-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.skill-option {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 16px;
}

.skill-option:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateX(5px);
}

.skill-option.selected {
    background: rgba(255, 107, 53, 0.3);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.option-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #FFD700);
    border-radius: 50%;
    font-weight: bold;
    color: #000;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-text {
    flex: 1;
}

.skill-question-footer {
    display: flex;
    gap: 15px;
}

.skill-cancel-btn,
.skill-submit-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.skill-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.skill-cancel-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
    color: #fff;
}

.skill-submit-btn {
    background: linear-gradient(135deg, #ff6b35, #FFD700);
    color: #000;
}

.skill-submit-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.skill-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .skill-question-content {
        padding: 20px;
    }
    
    .skill-question-title {
        font-size: 24px;
    }
    
    .skill-question-text {
        font-size: 18px;
    }
    
    .option-letter {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .skill-option {
        font-size: 14px;
        padding: 12px 15px;
    }
}