/* 青青草影院样式 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 系统状态栏样式 */
.system-status {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-left {
    display: flex;
    gap: 25px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-dot.processing {
    background: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.keyword-brand {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite alternate;
}

.status-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
}

.time-label {
    opacity: 0.7;
}

#free-viewers {
    color: #00ff88;
    font-weight: 600;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 2em;
    animation: rotate 8s linear infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8em;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95em;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    width: 180px;
    font-size: 0.9em;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #22c55e;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.nav-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
    transform: scale(1.1);
}

.free-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.free-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

/* 英雄轮播区域样式 */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 106px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.movie-info {
    max-width: 600px;
    color: white;
}

.movie-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.movie-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.movie-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.movie-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.3) !important;
}

.movie-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.movie-actions {
    display: flex;
    gap: 20px;
}

.play-btn,
.trailer-btn,
.download-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.trailer-btn,
.download-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-btn:hover,
.trailer-btn:hover,
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #22c55e;
    transform: scale(1.2);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

/* 区域标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 电影专区样式 */
.movies-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.content-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: translateY(-2px);
}

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

.movie-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.movie-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.movie-card.featured {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.movie-poster {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.05);
}

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-overlay {
    opacity: 1;
}

.movie-overlay .play-btn {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.movie-overlay .play-btn:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.movie-quality {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.movie-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.movie-info {
    padding: 25px;
}

.movie-title {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.movie-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

.movie-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.movie-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

/* 电视剧专区样式 */
.series-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.series-showcase {
    margin-top: 60px;
}

.featured-series {
    margin-bottom: 60px;
}

.series-banner {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.series-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}

.series-info {
    max-width: 600px;
    color: white;
}

.series-badge {
    display: inline-block;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.series-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.series-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1em;
}

.series-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.series-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.series-actions {
    display: flex;
    gap: 15px;
}

.episodes-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episodes-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.series-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.series-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.series-poster {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.series-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.series-card:hover .series-overlay {
    opacity: 1;
}

.series-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text {
    color: white;
    font-size: 0.75em;
    text-align: center;
}

.series-card .series-info {
    padding: 20px;
}

.series-card .series-title {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.series-card .series-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

.series-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

/* 综艺节目样式 */
.variety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.variety-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 60px;
}

.variety-card.featured {
    grid-row: span 2;
}

.variety-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.variety-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.variety-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.variety-card.featured .variety-thumbnail {
    height: 350px;
}

.variety-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variety-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.variety-card:hover .variety-overlay {
    opacity: 1;
}

.variety-live {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.variety-viewers {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.variety-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.variety-info {
    padding: 25px;
}

.variety-title {
    font-size: 1.3em;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.variety-card:not(.featured) .variety-title {
    font-size: 1.1em;
}

.variety-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.variety-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
}

.variety-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.variety-hosts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.host-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.host-item img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.host-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

.variety-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

/* 动漫专区样式 */
.anime-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.anime-showcase {
    margin-top: 60px;
}

.anime-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    transform: translateY(-2px);
}

.anime-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-panel.active {
    display: block;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.anime-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.anime-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.anime-poster {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.anime-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anime-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.anime-card:hover .anime-overlay {
    opacity: 1;
}

.anime-episode {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.anime-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 255, 136, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
}

.anime-info {
    padding: 20px;
}

.anime-title {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.anime-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

.anime-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.anime-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

/* 最新更新样式 */
.latest-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.latest-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.latest-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.item-poster {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.latest-item:hover .item-overlay {
    opacity: 1;
}

.item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7em;
    font-weight: 600;
}

.item-info {
    padding: 15px;
}

.item-title {
    font-size: 0.9em;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.item-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.7);
}

.item-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
}

.item-stats {
    display: flex;
    gap: 10px;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.7);
}

/* 用户评价样式 */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.reviews-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.reviews-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: fit-content;
}

.stats-overview {
    text-align: center;
    margin-bottom: 40px;
}

.overall-rating {
    margin-bottom: 30px;
}

.rating-score {
    font-size: 4em;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.5em;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    min-width: 30px;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bar-percent {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8em;
    min-width: 35px;
    text-align: right;
}

.feature-ratings {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.feature-ratings h4 {
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-rating:last-child {
    border-bottom: none;
}

.feature-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.feature-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-stars {
    color: #ffd700;
    font-size: 0.9em;
}

.score-number {
    color: white;
    font-weight: 600;
    font-size: 0.9em;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-card.featured {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #22c55e;
}

.reviewer-name {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.reviewer-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-bottom: 8px;
}

.reviewer-stats {
    display: flex;
    gap: 15px;
}

.stat {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75em;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.review-meta {
    text-align: right;
}

.review-rating {
    color: #ffd700;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85em;
}

.review-content {
    margin-bottom: 25px;
}

.review-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05em;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.review-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

/* 页脚样式 */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #000 100%);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: 700;
}

.footer-brand .brand-icon {
    font-size: 1.2em;
}

.footer-brand .brand-name {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1em;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.2em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #22c55e;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.link-list a:hover {
    color: #22c55e;
    padding-left: 5px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95em;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 20px;
    outline: none;
    font-size: 0.9em;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.newsletter-note {
    display: flex;
    align-items: center;
    gap: 8px;
}

.note-icon {
    color: #22c55e;
}

.note-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #22c55e;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.6);
}

/* 浮动播放器样式 */
.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mini-player {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.mini-video {
    position: relative;
    width: 80px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8em;
    cursor: pointer;
}

.mini-info {
    flex: 1;
}

.mini-title {
    color: white;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
}

.mini-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 2px;
}

.mini-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7em;
    font-family: 'Courier New', monospace;
}

.mini-controls {
    display: flex;
    gap: 8px;
}

.mini-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    transition: all 0.3s ease;
}

.mini-btn:hover {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .variety-grid {
        grid-template-columns: 1fr;
    }
    
    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-box {
        width: 150px;
    }
    
    .search-input {
        width: 100px;
    }
    
    .movie-title {
        font-size: 2.5em;
    }
    
    .slide-content {
        padding: 0 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .movies-grid {
        grid-template-columns: 1fr;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .anime-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .series-overlay {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .floating-player {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .movie-title {
        font-size: 2em;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .latest-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .floating-player {
        width: 280px;
        bottom: 10px;
        right: 10px;
    }
}