/* 作品详情页面增强样式 */

/* 注意：基本导航栏样式已移至header.css */

/* 导航链接样式已移至header.css */

/* 作品详情页面主体样式增强 */
.work-detail {
    padding-top: 40px;
}

.work-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 10%;
    background: linear-gradient(135deg, #121212, #1a1a2e);
    color: #fff;
    border-radius: 20px;
    margin: 0 5% 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.2), transparent 60%);
    z-index: 0;
}

.work-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.work-main-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.work-main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.work-main-image img:hover {
    transform: scale(1.03);
}

.work-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.work-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.work-meta p {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
}

.work-description {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 15px;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 30px;
}

.work-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 1rem;
    color: #fff !important;
}

/* 剧照画廊样式增强 */
.work-gallery {
    padding: 0 5% 60px;
}

.work-gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* 相关作品样式 */
.related-works {
    padding: 0 5% 60px;
    text-align: center;
}

.related-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.related-works h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.works-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.work-card {
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--dark-color);
    background-color: white;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.work-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.1);
}

.work-card h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.work-gallery h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 创作团队样式增强 */
.work-credits {
    padding: 0 5% 60px;
    background-color: #f8f9fa;
    border-radius: 20px;
    margin: 0 5% 60px;
}

.work-credits h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 40px;
    position: relative;
    padding-bottom: 15px;
}

.work-credits h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.credits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
}

.credit-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.credit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.credit-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.credit-item p {
    color: var(--dark-color);
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .work-hero {
        flex-direction: column;
        padding: 40px 5%;
    }
    
    .work-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .credits-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}