/* Story Scenes CSS for zyqw_advantages.html */

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.scene-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.scene {
    padding: 32px;
}

.scene-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    border-left: 4px solid #2563eb;
    padding-left: 16px;
}

.scene-content {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

.scene-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.scene-number {
    background: #2563eb;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.scene-features {
    list-style: none;
    margin: 16px 0;
}

.scene-features li {
    padding: 8px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scene-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
}

.scene-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid #f59e0b;
}

.scene-quote {
    font-style: italic;
    color: #6b7280;
    border-left: 3px solid #d1d5db;
    padding-left: 16px;
    margin: 16px 0;
}

.scene-stats {
    display: flex;
    gap: 24px;
    margin: 16px 0;
}

.scene-stat {
    text-align: center;
    flex: 1;
}

.scene-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.scene-stat-label {
    font-size: 14px;
    color: #64748b;
}

/* Responsive design */
@media (max-width: 768px) {
    .scenes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .scene {
        padding: 24px;
    }
    
    .scene-title {
        font-size: 20px;
    }
    
    .scene-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scene-card {
    animation: fadeInUp 0.6s ease forwards;
}

.scene-card:nth-child(1) { animation-delay: 0.1s; }
.scene-card:nth-child(2) { animation-delay: 0.2s; }
.scene-card:nth-child(3) { animation-delay: 0.3s; }
.scene-card:nth-child(4) { animation-delay: 0.4s; }