:root {
            --primary: #e74c3c;
            --primary-color: #ff4b2b;
            --secondary: #3498db;
            --secondary-color: #3498db;
            --dark: #2c3e50;
            --light: #ecf0f1;
            --accent: #f39c12;
            --success: #27ae60;
            --text: #333;
            --text-color: #e0e0ff;
            --bg-color: #0f0c29;
            --card-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --border-radius: 8px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            --highlight-color: #ffcc00;
        }
        
     
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
            background-size: cover;
            background-attachment: fixed;
            padding-bottom: 40px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
         /* 头部样式 */
        header {
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .logo-icon {
            margin-right: 10px;
            color: var(--accent);
            font-size: 1.5rem;
        }
        
        .niche-badge {
            background: var(--accent);
            color: white;
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 10px;
            vertical-align: middle;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .nav-item {
            margin: 5px 10px;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .nav-link i {
            margin-right: 8px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 10px 20px;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 12px 20px;
            border-radius: 30px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s;
        }
        
        .search-box:focus {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
        }
        
        .search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .search-btn:hover {
            background: #c0392b;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }
            
            .logo {
                margin-bottom: 10px;
            }
            
            .search-container {
                width: 100%;
                margin: 10px 0 15px;
            }
            
            .nav-menu {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .nav-item {
                margin: 3px;
            }
            
            .nav-link {
                padding: 6px 10px;
                font-size: 0.9rem;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .movie-header {
            display: flex;
            margin: 40px 0 30px;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .movie-poster {
            flex: 0 0 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }
        
        .movie-poster img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .movie-poster:hover img {
            transform: scale(1.05);
        }
        
        .movie-poster::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            z-index: 1;
        }
        
        .movie-info {
            flex: 1;
            min-width: 300px;
            background: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .movie-info::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 30%);
            pointer-events: none;
        }
        
        .movie-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            position: relative;
            z-index: 2;
        }
        
        .movie-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            min-width: 45%;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 5px;
        }
        
        .meta-label {
            font-weight: bold;
            margin-right: 5px;
            color: var(--highlight-color);
        }
        
        .content-section {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .play-section {
            flex: 0 0 35%;
            min-width: 99%;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        
        .play-desc {
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .movie-meta-small {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .meta-item-small {
            display: flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.2);
            padding: 6px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .movie-description {
            flex: 1;
            min-width: 300px;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 2;
        }
        
        .movie-description h3 {
            margin-bottom: 15px;
            color: var(--highlight-color);
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .movie-description p {
            margin-bottom: 15px;
            text-align: justify;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .read-more {
            text-align: center;
            margin-top: 15px;
        }
        
        .read-more a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more a:hover {
            color: var(--primary-color);
        }
        
        .keyword-anchor {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dashed var(--secondary-color);
            transition: all 0.2s;
        }
        
        .keyword-anchor:hover {
            color: var(--primary-color);
            border-bottom-style: solid;
        }
        
        .full-content {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 2;
        }
        
        .full-content h3 {
            margin-bottom: 20px;
            color: var(--highlight-color);
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .full-content p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }
        
        .share-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .share-btn i {
            margin-right: 8px;
        }
        
        .share-btn.wechat {
            background: #2aae67;
            color: white;
        }
        
        .share-btn.weibo {
            background: #e6162d;
            color: white;
        }
        
        .share-btn.qq {
            background: #12b7f5;
            color: white;
        }
        
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
            justify-content: center;
        }
        
        .tag {
            background: rgba(255, 255, 255, 0.1);
            color: var(--secondary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background: var(--secondary-color);
            color: white;
            cursor: pointer;
        }
        
        .related-movies {
            margin: 50px 0;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .movie-card {
            display: block;
            text-decoration: none;
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: var(--box-shadow);
            position: relative;
        }
        
        .movie-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.6);
        }
        
        .movie-cover {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .movie-card:hover .movie-cover {
            transform: scale(1.05);
        }
        
        .movie-card-content {
            padding: 15px;
        }
        
        .movie-card-title {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: white;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            height: 3.2em;
        }
        
        .movie-card-meta {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 播放器模态框样式 */
        .player-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            backdrop-filter: blur(10px);
        }
        
        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 1000px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 75, 43, 0.3);
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            background: rgba(255, 75, 43, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
            transition: all 0.3s;
        }
        
        .close-btn:hover {
            background: #ff416c;
            transform: rotate(90deg);
        }
        
        #videoPlayer {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            position: relative;
            background: #000;
        }
        
        #videoPlayer video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            outline: none;
        }
        
        .player-controls {
            display: flex;
            justify-content: center;
            padding: 15px;
            background: #111;
            gap: 15px;
        }
        
        .player-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .player-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        @media (max-width: 768px) {
            .movie-header {
                flex-direction: column;
            }
            
            .content-section {
                flex-direction: column;
            }
            
            .movie-poster {
                flex: 0 0 auto;
                margin: 0 auto 20px;
                width: 100%;
            }
            
            .movie-title {
                font-size: 1.8rem;
            }
            
            .meta-item {
                min-width: 100%;
            }
            
            .movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
            
            .modal-content {
                width: 95%;
            }
            
            .play-btn {
                padding: 12px 20px;
                font-size: 1.1rem;
                width: 100%;
            }
            
            .movie-meta-small {
                grid-template-columns: 1fr;
            }
        }