:root {
    --primary: #00f2fe;
    --gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --bg: #dce1ec;
    --card-bg: rgba(30, 41, 59, 0.9);
    --text: #0e5bc1;
}

.scene-section {
    padding: var(--section-spacing) var(--content-padding);
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f9 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    margin-top: 50px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-spacing) 0;
}

.scene-card {
    background: white;
    border-radius: 15px;
    padding: clamp(25px, 4vw, 35px);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scene-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, rgba(0,123,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.scene-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scene-icon i {
    font-size: clamp(24px, 3vw, 28px);
    color: #007bff;
}

.scene-title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.scene-desc {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .scene-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .scene-card {
        padding: 25px;
    }
    
    .card-glow {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .scene-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (min-width: 1025px) {
    .scene-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 手机端 */
@media (max-width: 576px) {
  .box { width: 100%; }
}

/* 平板 */
@media (min-width: 577px) and (max-width: 992px) {
  .box { width: 50%; }
}

/* 桌面端 */
@media (min-width: 993px) {
  .box { width: 25%; }
}