/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 容器样式 */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* 主区域样式 */
.movie-explanation-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(30, 35, 50, 0.95), rgba(20, 25, 40, 0.98));
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}



.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin: 2rem auto 0;
    padding: 0 1rem;
    max-width: 1300px;
}

.testimonial-card {
    background: linear-gradient(135deg, 
        rgba(40, 45, 60, 0.95), 
        rgba(35, 40, 55, 0.92));
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.25);
}

.testimonial-content {
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
    padding-left: 2.2rem;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: rgba(46, 204, 113, 0.25);
    position: absolute;
    left: 0;
    top: -0.8rem;
    font-weight: 700;
    opacity: 0.7;
}

.testimonial-author {
    text-align: right;
    color: #cccccc;
    font-size: 0.9rem;
    position: relative;
    padding-top: 1rem;
    line-height: 1.4;
}

.testimonial-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: #aaaaaa;
    font-size: 0.85rem;
}

/* 用户头像占位符 */
.testimonial-card .avatar-placeholder {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ecc71, #3498db);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.25);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .testimonial-content {
        padding-left: 1.8rem;
        font-size: 0.9rem;
    }
    
    .testimonial-content::before {
        font-size: 2.5rem;
        top: -0.5rem;
    }
}


/* 用户见证区域样式 */
.testimonials-section {
    margin: 4rem auto;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.9), rgba(15, 20, 35, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

