/**
 * 极简杂志风电影详情样式
 * 高级文化杂志版面设计，大量留白、强排版感、极少装饰
 * 黑白为主色调，搭配轻微灰阶辅助线
 */

/* 电影详情容器 - 极简留白设计 */
.douban-movie-detail {
    background: #ffffff;
    margin: 20px 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.6;
}

/* 电影头部区域 - 杂志封面式布局 */
.douban-movie-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    align-items: flex-start;
}

/* 电影海报 - 大面积展示 */
.douban-movie-poster {
    width: 100%;
    height: auto;
    max-height: 650px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}

.douban-movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.douban-movie-poster:hover img {
    filter: grayscale(0%);
}

/* 电影信息区域 - 杂志式分栏 */
.douban-movie-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 标题区域 - 大字号杂志标题 */
.douban-title-rating-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 15px;
    margin-left: 0;
}

.douban-movie-title {
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.douban-movie-original-title {
    font-size: 24px;
    color: #666666;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* 极简评分区域 - 大号数字配小号说明 */
.douban-movie-rating-inline {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 12px;
}

.douban-rating-score {
    background: none;
    color: #000000;
    font-size: 36px;
    font-weight: 300;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: auto;
    text-align: left;
    line-height: 1;
}

.douban-rating-count {
    background: none;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    padding: 0;
    border-radius: 0;
    border: none;
    white-space: nowrap;
}

/* 电影元信息 - 杂志式信息分栏 */
.douban-movie-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
}

.douban-movie-meta li {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    padding: 0;
    margin: 0;
    border-left: 1px solid #e0e0e0;
    padding-left: 16px;
}

.douban-movie-meta strong {
    color: #000000;
    font-weight: 500;
    margin-right: 2px;
    display: inline-block;
    min-width: 45px;
}

/* 主演信息样式调整 */
.douban-actor-item {
    display: block;
}

.douban-actor-list {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.8;
    max-height: 3.6em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.douban-actor-list:hover {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
}

/* 标签区域 - 极简线条标签 */
.douban-movie-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.douban-movie-tag {
    display: inline-block;
    background: none;
    color: #666666;
    padding: 4px 0;
    border-radius: 0;
    font-size: 13px;
    margin-right: 24px;
    margin-bottom: 0;
    position: relative;
}

.douban-movie-tag::after {
    content: "/";
    position: absolute;
    right: -16px;
    color: #e0e0e0;
}

.douban-movie-tag:last-child::after {
    display: none;
}

/* 标题样式 - 统一风格 */
.douban-movie-summary-title,
.douban-movie-hot-comments-title,
.douban-movie-download-title {
    margin: 40px 0 24px 0;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* 剧情简介 - 杂志式排版 */
.douban-movie-summary {
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    max-width: 100%;
}

.douban-movie-summary p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    text-indent: 2em;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* 影视热评  */
.douban-movie-hot-comments {
    padding: 0;
    background: none;
    border-radius: 0;
    max-width: 100%;
}

.douban-hot-comments-list {
    display: flex;
    flex-direction: column;
}

.douban-hot-comment-item {
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
    min-height: 80px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.douban-hot-comment-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 16px;
    text-indent: 0;
    font-weight: 300;
    flex: 1;
}

.douban-hot-comment-author {
    font-size: 13px;
    color: #666666;
    text-align: right;
    font-style: normal;
    font-weight: 300;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 16px;
    display: inline-block;
    margin-left: auto;
    align-self: flex-end;
}

/* 响应式设计 - 保持极简美学 */
@media (max-width: 1200px) {
    .douban-movie-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .douban-movie-poster {
        max-height: 500px;
    }

    .douban-movie-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .douban-movie-detail {
        margin: 40px 0;
    }

    .douban-movie-header {
        gap: 20px;
        margin-bottom: 30px;
    }

    .douban-movie-title {
        font-size: 36px;
    }

    .douban-movie-original-title {
        font-size: 18px;
    }

    .douban-rating-score {
        font-size: 28px;
    }

    .douban-movie-meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .douban-movie-meta li {
        border-left: none;
        padding-left: 0;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
    }

    .douban-movie-summary,
    .douban-movie-hot-comments {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .douban-movie-title {
        font-size: 28px;
    }

    .douban-movie-original-title {
        font-size: 16px;
    }

    .douban-rating-score {
        font-size: 24px;
    }

    .douban-movie-summary p {
        font-size: 15px;
    }

    .douban-hot-comment-content {
        font-size: 15px;
    }
}

/* 下载地址区域 - 只保留标题样式 */
.douban-movie-download {
    margin-top: 24px;
    padding: 0;
    background: none;
    border-radius: 0;
    max-width: 100%;
}

@media (max-width: 768px) {
    .douban-movie-download {
        margin-top: 30px;
    }
}