  
    :root {
            --primary-color: #e50914;
            --secondary-color: #221f1f;
            --text-color: #f5f5f1;
            --dark-bg: #141414;
            --card-bg: #181818;
            --hover-bg: #333333;
            
            
            

            --neon-glow: rgba(0, 255, 255, 0.7);
            --neon-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --text-color: #e0e0e0;
            --progress-color: rgba(0, 255, 255, 0.8);
        }
    
 
 
      @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

 .dplayer {
    box-shadow: var(--neon-shadow);

    transition: background-color 0.3s ease;
    border-width: 2px;
    border-color: #434343;
    word-break: break-all;
    border-radius: 0.25rem;
    border-top-left-radius: 250px 10px;
    border-top-right-radius: 15px 204px;
    border-bottom-left-radius: 15px 257px;
    border-bottom-right-radius: 230px 15px;
    border: 2px solid #4d4343;
}
 
        .dplayer:hover {
            transform: scale(1.01);
            box-shadow: 0 0 15px var(--neon-glow), 0 0 30px rgba(0, 255, 255, 0.3);
        }
 
 
 
   .gk-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 0px;
        }
 
 
    /* 分类导航 */
        .categories {
            padding: 10px 0;
        }
        
        .category-title {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .category-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 5px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .category-tab {
            padding: 10px 20px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            transition: background-color 0.3s ease;
            background-color: #f1f3fa;
            border-radius: 20px;
        }
        
        .category-tab a{
         color: #000;
        }
        
        .category-tab.active {
            background-color: #165dff;
            background: linear-gradient(to right,rgba(0 0 0),transparent)!important;
            color: #ffffff;
        }
        
        .category-tab.active a{
            color: #ffffff;
        }
        
        .category-tab:hover {
            background-color: var(--hover-bg);
        }
        
        /* 电影网格 */
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 10px;
            margin-top: 1px;
        }
        
        .movie-card {
            background-color: #ffffff;
            border-radius: 6px;
            overflow: hidden;

            cursor: pointer;
            border: 2px solid #e4e4e4;
        }
        
        .movie-card:hover {
            transform: scale(1.05);
        }
        
        .movie-poster {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .movie-info {
            padding: 5px;
            top:5px;
        }
        
        .movie-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            
             white-space: nowrap; /* 防止文字换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
        }
        
        .movie-title a{
         color: #000;
        }
        
        .movie-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #aaa;
        }
        
        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .rating i {
            color: #ffc107;
        }
        
        /* 更多内容区域 */
        .more-content {
            padding: 50px 0;
        }
        
        .content-row {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .content-card {
            flex: 1;
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .content-card-header {
            padding: 20px;
            border-bottom: 1px solid #333;
        }
        
        .content-card-header h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .content-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .trending-item {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .trending-poster {
            width: 80px;
            height: 120px;
            border-radius: 4px;
            object-fit: cover;
        }
        
        .trending-info {
            flex: 1;
        }
        
        .trending-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .trending-desc {
            font-size: 14px;
            color: #aaa;
            line-height: 1.4;
        }
        
        .coming-soon {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 15px;
        }
        
        .coming-soon-item {
            min-width: 180px;
            text-align: center;
        }
        
        .coming-soon-poster {
            width: 140px;
            height: 200px;
            border-radius: 4px;
            object-fit: cover;
            margin-bottom: 10px;
        }
        
        .coming-soon-title {
            font-size: 14px;
            font-weight: 600;
        }
        
        .coming-soon-date {
            font-size: 12px;
            color: #aaa;
        }
        
        /* 页脚 */
        footer {
            background-color: var(--secondary-color);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: var(--text-color);
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .nav-links {
                display: none;
            }
            
            .content-row {
                flex-direction: column;
            }
            
            .movie-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 3fr));
            }
        }
 
  