/* 场景演示样式 - Miro风格 */

.scenarios {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
}

.scenarios .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.scenario-item {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scenario-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #10b981);
    border-radius: 20px 20px 0 0;
}

.scenario-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.scenario-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.scenario-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(79, 70, 229, 0.1);
}

.scenario-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.scenario-desc {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.scenario-example {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(79, 70, 229, 0.05);
}

.user-input {
    background: var(--primary-color);
    color: white;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    font-weight: 500;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    font-size: 14px;
}

.ai-response {
    background: white;
    padding: 16px;
    border-radius: 4px 16px 16px 16px;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-response p {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .scenarios {
        padding: 60px 0;
    }
    
    .scenarios .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .scenario-item {
        padding: 24px;
    }
    
    .scenario-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .scenario-content h3 {
        font-size: 20px;
    }
    
    .scenario-desc {
        font-size: 14px;
    }
    
    .scenario-example {
        padding: 16px;
    }
    
    .user-input {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .ai-response p {
        font-size: 13px;
    }
}