
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #eaffd0;  /* 主背景色 淡绿 */
    color: #2d3e50;
    line-height: 1.5;
}

/* 全宽导航栏，柔和四色混合 */
.navbar-full {
    width: 100%;
    background: linear-gradient(135deg, #95e1d3 0%, #eaffd0 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #fce38a;
}
.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo h1 {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(120deg, #f38181, #fce38a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo span {
    font-size: 0.65rem;
    color: #3a5e6b;
    font-weight: 500;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #2f5e6b;
    transition: 0.2s;
    padding-bottom: 4px;
}
.nav-links a.active, .nav-links a:hover {
    color: #f38181;
    border-bottom: 2px solid #f38181;
}
.search-icon {
    background: #fff9ef;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #f38181;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}
.search-icon:hover {
    background: #fce38a;
}

/* 内容容器 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* 通用标题样式 (四色点缀) */
.section-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 48px 0 28px 0;
    color: #3c6e71;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title i {
    color: #f38181;
    font-size: 1.7rem;
}
.section-title:after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #fce38a, #95e1d3);
    margin-left: 18px;
    border-radius: 6px;
}

/* 最近更新网格 (图片小比例 高160px) */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.movie-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(149, 225, 211, 0.4);
    cursor: pointer;
}
.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 28px -12px rgba(243, 129, 129, 0.3);
    border-color: #fce38a;
}
.card-img {
    height: 170px;
    overflow: hidden;
    background: #d2efdf;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.movie-card:hover .card-img img {
    transform: scale(1.03);
}
.card-info {
    padding: 16px 18px 20px;
}
.card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.rating-badge {
    background: #fce38a;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #8b5a2b;
}
.meta {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 0.7rem;
    color: #6f8f8c;
}
.watch-btn {
    background: #95e1d3;
    border: none;
    width: 100%;
    padding: 9px 0;
    border-radius: 60px;
    font-weight: 700;
    color: #2f5e6b;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.watch-btn:hover {
    background: #f38181;
    color: white;
}

/* 明星区域 粉黄卡片 */
.stars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin: 20px 0 30px;
}
.star-item {
    background: #ffffffdb;
    backdrop-filter: blur(2px);
    border-radius: 36px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.2s;
    border: 1px solid #fce38a;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.02);
}
.star-item:hover {
    background: white;
    border-color: #f38181;
    transform: scale(1.01);
}
.star-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid #95e1d3;
    overflow: hidden;
}
.star-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.star-name {
    font-size: 1.4rem;
    font-weight: 700;
}
.star-role {
    color: #f38181;
    font-weight: 600;
    margin-bottom: 12px;
}
.star-desc {
    font-size: 0.85rem;
    color: #476b6f;
}

/* 焦点电影专区 (白色大卡片，四色点缀) */
.featured-card {
    background: white;
    border-radius: 40px;
    margin: 40px 0 40px;
    padding: 32px 36px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
    border-left: 10px solid #fce38a;
    border-right: 1px solid #95e1d3;
}
.flex-movie {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.poster-area {
    flex: 0 0 210px;
}
.poster-area img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 25px -12px rgba(0, 0, 0, 0.15);
}
.detail-area {
    flex: 1;
}
.movie-big-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(120deg, #f38181, #95e1d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.meta-bar {
    background: #eaffd0;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 20px 0;
    font-size: 0.85rem;
}
.info-block h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px 0;
    padding-left: 14px;
    border-left: 5px solid #fce38a;
    color: #3c6e71;
}
.comment-area {
    margin-top: 36px;
    background: #fef9e8;
    border-radius: 32px;
    padding: 24px 28px;
}
.single-comment {
    background: white;
    border-radius: 24px;
    padding: 16px 20px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.btn-watch-large {
    background: #95e1d3;
    border: none;
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #2d4a55;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-watch-large:hover {
    background: #f38181;
    color: white;
}

/* 热播剧集网格 (图片同样小比例) */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.tv-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid #fce38a;
}
.tv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 22px -12px rgba(243, 129, 129, 0.2);
}
.tv-img {
    height: 170px;
    overflow: hidden;
}
.tv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tv-info {
    padding: 14px 16px 20px;
}
.tv-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
}
.tv-meta {
    font-size: 0.7rem;
    color: #6f8f8c;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}
.hotness {
    color: #f38181;
    font-weight: 600;
}

/* ========= 底部导航 全宽设计 ========= */
.footer-full {
    width: 100%;
    background: #95e1d3;   /* 主色调青色 */
    border-top: 3px solid #fce38a;
    margin-top: 40px;
    padding: 32px 0 28px;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    color: #2e5e66;
}
.footer-container p {
    margin: 6px 0;
    font-size: 0.85rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #2f5e6b;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.footer-links a:hover {
    color: #f38181;
}

@media (max-width: 760px) {
    .navbar-container {
        flex-wrap: wrap;
        height: auto;
        gap: 12px;
        padding: 12px 20px;
    }
    .card-img, .tv-img {
        height: 150px;
    }
    .featured-card {
        padding: 20px;
    }
    .flex-movie {
        flex-direction: column;
        align-items: center;
    }
    .poster-area {
        max-width: 200px;
    }
    .footer-links {
        gap: 18px;
    }
}
button {
    cursor: pointer;
    font-family: inherit;
}
a {
    text-decoration: none;
}
