
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: #0f1120;
            color: #e0e0e0;
            line-height: 1.6;
            padding-top: 70px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            background: #1a1c2d;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .stui-header__top {
            background: #1a1c2d;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        .stui-header__hd {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 15px;
            flex-wrap: wrap;
        }
        
        .stui-header__logo {
            flex: 0 0 auto;
        }
        
        .stui-header__logo .logo {
            display: block;
            width: 150px;
            height: 42px;
            border-radius: 8px;
            text-indent: -9999px;
        }
        
        .stui-header__search {
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
            position: relative;
        }
        
        .stui-header__search .form-control {
            width: 100%;
            padding: 12px 50px 12px 18px;
            border: 1px solid #2a2d45;
            border-radius: 30px;
            font-size: 14px;
            transition: all 0.3s;
            background: #252841;
            color: #e0e0e0;
        }
        
        .stui-header__search .form-control:focus {
            outline: none;
            border-color: #6a11cb;
            box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.3);
        }
        
        .stui-header__search .submit {
            position: absolute;
            right: 5px;
            top: 5px;
            width: 34px;
            height: 34px;
            border: none;
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .stui-header__search .submit:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(106, 17, 203, 0.5);
        }
        
        .stui-header__user {
            display: flex;
            list-style: none;
        }
        
        .stui-header__user li {
            margin-left: 15px;
        }
        
        .stui-header__user a {
            display: block;
            width: 34px;
            height: 34px;
            background: #252841;
            border-radius: 50%;
            text-align: center;
            line-height: 34px;
            color: #a0a0c0;
            transition: all 0.3s;
        }
        
        .stui-header__user a:hover {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            transform: translateY(-2px);
        }
        
        .stui-pannel {
			margin-top: 15px;
        }
        
        .stui-screen__list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2d45;
            padding: 15px;
        }
        
        .stui-screen__list li {
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .stui-screen__list li a {
            display: block;
            padding: 6px 16px;
            background: #252841;
            border-radius: 18px;
            color: #a0a0c0;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #2a2d45;
        }
        
        .stui-screen__list li a:hover,
        .stui-screen__list li a.active {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border-color: transparent;
        }
        
        .stui-screen__ft {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .screen-open {
            display: inline-block;
            padding: 10px 24px;
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border-radius: 24px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .screen-open:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(106, 17, 203, 0.4);
        }
        
        .stui-vodlist {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            list-style: none;
            margin-bottom: 30px;
        }
        
        .stui-vodlist__item {
            background: #252841;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
            position: relative;
        }
        
        .stui-vodlist__item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.3);
        }
        
        .stui-vodlist__thumb {
            display: block;
            position: relative;
            padding-top: 150%;
            background: #2a2d45;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .stui-vodlist__thumb:before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.7);
            border-radius: 50%;
            z-index: 1;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .stui-vodlist__thumb:after {
            content: "▶";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-40%, -50%);
            color: white;
            font-size: 16px;
            z-index: 2;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .stui-vodlist__item:hover .stui-vodlist__thumb:before,
        .stui-vodlist__item:hover .stui-vodlist__thumb:after {
            opacity: 1;
        }
        
        .stui-vodlist__title {
            padding: 15px;
            font-size: 15px;
            text-align: center;
            font-weight: 500;
        }
        
        .stui-vodlist__title a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .stui-vodlist__title a:hover {
            color: #6a11cb;
        }
        
        .rating-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            z-index: 3;
        }
        
        .stui-page {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 30px 0;
			flex-wrap: wrap; 
			align-items: flex-end;
        }
        
        .stui-page li {
            margin: 0 5px;
        }
        
        .stui-page li a,
        .stui-page li .num {
            display: block;
            padding: 10px 16px;
            border: 1px solid #2a2d45;
            border-radius: 8px;
            color: #a0a0c0;
            text-decoration: none;
            transition: all 0.3s;
            background: #252841;
        }
        
        .stui-page li a:hover,
        .stui-page li.active a,
        .stui-page li.active .num {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border-color: transparent;
        }
        
        .stui-foot {
            text-align: center;
            padding: 25px;
            color: #a0a0c0;
            background: #1a1c2d;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            margin-top: 0px;
        }
        
        .stui-foot p {
            margin-bottom: 15px;
        }
        
        .stui-foot a {
            color: #a0a0c0;
            text-decoration: none;
            transition: color 0.3s;
            margin: 0 10px;
        }
        
        .stui-foot a:hover {
            color: #6a11cb;
        }
        
		.chapter-foot {
            text-align: center;
            padding: 5px;
            color: #a0a0c0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            margin-top: 0px;
        }
        
        .chapter-foot p {
            margin-bottom: 15px;
        }
        
        .chapter-foot a {
            color: #a0a0c0;
            text-decoration: none;
            transition: color 0.3s;
            margin: 0 10px;
        }
        
        .chapter-foot a:hover {
            color: #6a11cb;
        }
		
        @media (max-width: 992px) {
            .stui-vodlist {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
                overflow-x: hidden;
            }
            
            .stui-header__hd {
                padding: 10px 15px;
            }
            
            .stui-header__search {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
                width: 100%;
            }
            
            .stui-vodlist {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .stui-screen__list li {
                margin-right: 10px;
            }
            
            .stui-screen__list li a {
                padding: 5px 12px;
                font-size: 14px;
            }
			
			.stui-page li.active.visible-xs {
			display: inline-block; 
			margin-top: 10px; 
			font-size: 14px; 
			padding: 0 10px; 
			}
        }
        
        @media (max-width: 480px) {
            .stui-vodlist {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stui-page li a,
            .stui-page li .num {
                padding: 8px 12px;
                font-size: 14px;
            }
            
            .stui-header__logo .logo {
                width: 120px;
            }
        }
        
        .thumb-error {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #2a2d45;
            color: #a0a0c0;
            font-size: 12px;
            text-align: center;
        }

    .theme-btn {
        width: 42px;
        height: 42px;
        background: #252841;
        border-radius: 50%;
        text-align: center;
        line-height: 34px;
        color: #a0a0c0;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        padding: 0;
    }
    
    .theme-btn:hover {
        background: linear-gradient(90deg, #6a11cb, #2575fc);
        color: white;
        transform: translateY(-2px);
    }
    
    body.light-mode {
        background: #f5f5f7;
        color: #333;
    }
    
    body.light-mode .row,
    body.light-mode .stui-header__top,
    body.light-mode .stui-foot {
        background: #ffffff;
    }
    
    body.light-mode .stui-vodlist__item,
    body.light-mode .stui-header__search .form-control,
    body.light-mode .stui-header__user a,
    body.light-mode .stui-screen__list li a,
    body.light-mode .stui-page li a,
    body.light-mode .stui-page li .num {
        background: #b8e6f1;
        color: #333;
        border-color: #e0e0e0;
    }
    
    body.light-mode .stui-vodlist__title a {
        color: #333;
    }
    
    body.light-mode .stui-vodlist__title a:hover,
    body.light-mode .stui-foot a:hover {
        color: #6a11cb;
    }
    
    body.light-mode .stui-screen__list li a:hover,
    body.light-mode .stui-screen__list li a.active,
    body.light-mode .stui-page li a:hover,
    body.light-mode .stui-page li.active a,
    body.light-mode .stui-page li.active .num {
        color: #ff0000;
    }
        
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .back-btn {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
        }
        
        .refresh-btn {
            background: linear-gradient(90deg, #ff7e5f, #feb47b);
        }
        
        .action-btn i {
            font-size: 1.1rem;
        }

.movie-detail-container {
    overflow: hidden; 
    margin: 20px 0; 
}

.movie-detail-container .thumb-wrap {
    float: left;
    margin-right: 20px;
    max-width: 200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box; 
}

.movie-detail-container #movie_thumb {
    width: 100%;
    height: auto; 
    max-width: 200px; 
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: block;
}

@media (max-width: 768px) {
    .movie-detail-container .thumb-wrap {
        float: none;
        margin: 0 auto 20px;
        max-width: 200px; 
        width: 50%; 
    }
}

.movie-detail-container .info-wrap {
    overflow: hidden;
    color: #a0a0c0;
    line-height: 1.8;
    font-size: 14px;
    padding: 20px 0; 
}

.movie-detail-container .info-wrap p {
    margin: 0 0 10px 0;
}

.movie-detail-container .info-wrap p:last-child {
    margin-bottom: 0;
}

.movie-detail-container .info-wrap label {
    color: #009bc0;
    font-weight: 500;
    margin-right: 8px; 
}

.movie-detail-container .link-douban {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s;
}

.movie-detail-container .link-douban:hover {
    color: #1a5bc9;
    text-decoration: underline; 
}

.movie-detail-container .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .movie-detail-container .thumb-wrap {
        float: none; 
        margin: 0 auto 20px; 
        max-width: 100%; 
    }
}

.info-wrap {

}

.info-wrap.low {

}

.info-wrap p {
    margin: 0.5em 0; 
}

.info-wrap font {
    vertical-align: inherit;
}

.info-wrap label {
    font-weight: bold; 
    margin-right: 0.5em;
}

.name {}
.tags {}
.director {}
.Author {}
.performer {}
.Status {}
.language {}
.imdb {}	
		
		
	    .stui-screen {
            padding: 10px;
            box-sizing: border-box;
        }
        .stui-screen__list {
            max-height: 300px; 
            overflow-y: auto;  
            padding-right: 8px; 
            margin: 0;
            display: flex;
            flex-wrap: wrap; 
            gap: 8px; 
            list-style: none;
        }
        .stui-screen__list li {
            flex: 0 0 auto; 
        }
        .stui-screen__list .btnplay {
            display: inline-block;
            padding: 4px 12px;
            white-space: nowrap; 
        }

        .stui-screen__list::-webkit-scrollbar {
            width: 6px;
        }
        .stui-screen__list::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }
        .stui-screen__list::-webkit-scrollbar-track {
            background-color: #f5f5f5;
        }