        /* Base Styles */
        :root {
            --primary: #1a936f;
            --secondary: #147c5c;
            --accent: #38b08f;
            --dark: #0a1110;
            --light-text: #e6f0ed;
            --mid-gray: #1d2b29;
            --dark-gray: #131f1d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--light-text);
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            padding: 0 20px;
            margin: 0 auto;
        }

        /* Navigation Bar */
        .navbar {
            background-color: var(--dark-gray);
            border-bottom: 2px solid var(--primary);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 32px;
            width: auto;
        }

        .logo-text {
            color: var(--light-text);
            font-size: 18px;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-link {
            color: var(--light-text);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .nav-link:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Main Content */
        .main-content {
            padding: 40px 0;
        }

        /* Drama Info Section */
        .drama-info {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .drama-title {
            color: white;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .drama-meta {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tag {
            background-color: var(--mid-gray);
            color: var(--light-text);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
        }

        .drama-description {
            color: var(--light-text);
            max-width: 700px;
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 16px;
        }

        .poster-container {
            border: 3px solid var(--primary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .drama-poster {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Countdown Card */
        .countdown-card {
            background-color: var(--mid-gray);
            border-radius: 12px;
            padding: 15px;
            max-width: 700px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .countdown-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 20px;
            gap: 10px;
        }

        .countdown-title {
            color: var(--light-text);
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .countdown-time {
            color: var(--primary);
            font-size: 16px;
            font-weight: bold;
        }

        .countdown-message {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            color: var(--light-text);
            font-size: 16px;
        }

        .countdown-actions {
            display: flex;
            gap: 15px;
            justify-content: flex-start;
        }

        .btn-volume {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: blink 1.5s infinite;
        }

        .btn-volume:hover {
            background-color: var(--primary);
            color: white;
        }

        /* 添加闪烁动画 */
        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        .btn-primary {
            font-size: 18px;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
            color: white;
        }

        /* Episode List Section */
        .section-title {
            color: white;
            font-size: 29px;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        .drama-info-section {
            margin-bottom: 80px;
        }

        /* Episode List Section */
        .episode-section {
            margin-bottom: 50px;
        }

        .episode-container {
            border: 2px solid var(--primary);
            border-radius: 12px;
            overflow: hidden;
            background-color: var(--dark-gray);
        }

        .episode-header {
            background-color: var(--mid-gray);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--dark);
        }

        .episode-list-title {
            color: white;
            font-size: 20px;
            font-weight: bold;
        }

        .episode-count {
            background-color: var(--dark);
            color: var(--light-text);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
        }

        .episode-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            /* Desktop: list on left, player on right */
        }

        .episode-list {
            background-color: var(--dark-gray);
            max-height: 450px;
            overflow-y: auto;
            border-right: 1px solid var(--dark);
        }

        .episode-item {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid var(--mid-gray);
        }

        .episode-item:last-child {
            border-bottom: none;
        }

        .episode-item:hover {
            background-color: var(--mid-gray);
        }

        .episode-item.active {
            background-color: var(--primary);
        }

        .episode-thumbnail-container {
            width: 80px;
            height: 45px;
            border-radius: 5px;
            overflow: hidden;
            background-color: #000;
            flex-shrink: 0;
        }

        .episode-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .episode-list-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            cursor: pointer;
        }


        .episode-info {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-grow: 1;
        }

        .episode-info p {
            color: var(--light-text);
            font-weight: 500;
            font-size: 15px;
            margin: 0;
        }

        .episode-duration {
            color: #aaa;
            font-size: 15px;
            font-weight: 500;
        }

        .episode-item.active .episode-info p,
        .episode-item.active .episode-duration {
            color: white;
        }

        .episode-player {
            background-color: var(--dark);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            min-height: 450px;
        }

        .video-player-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            /* Maintain 16:9 aspect ratio */
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--mid-gray);
        }

        .video-player-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .player-message {
            color: var(--light-text);
            font-size: 16px;
        }

        .app-prompt {
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 15px;
            font-weight: bold;
            font-size: 16px;
        }

        .app-button-container {
            background-color: var(--mid-gray);
            padding: 20px;
            text-align: center;
        }

        .episode-list::-webkit-scrollbar {
            width: 8px;
            /* 滚动条的宽度 */
        }

        .episode-list::-webkit-scrollbar-track {
            background: var(--dark-gray);
            /* 滚动条轨道的背景色 */
            border-radius: 10px;
        }

        .episode-list::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            /* 滚动条滑块的颜色 */
            border-radius: 10px;
            /* 滑块的圆角 */
            border: 2px solid var(--dark-gray);
            /* 创建一个“边框”效果，使其看起来更细 */
        }

        .episode-list::-webkit-scrollbar-thumb:hover {
            background-color: var(--accent);
            /* 鼠标悬停时滑块的颜色 */
        }

        /* Responsive Design for Episode Section */
        @media (max-width: 768px) {
            .episode-content {
                grid-template-columns: 1fr;
                /* Mobile: stack list and player vertically */
            }

            .episode-list {
                max-height: 280px;
                /* Adjust height for mobile */
                border-right: none;
                border-bottom: 1px solid var(--dark);
            }

            .episode-player {
                padding: 20px 15px;
                min-height: auto;
            }

            .countdown-message {
                justify-content: center;
            }
        }

        /* 移动端样式 */
        @media (max-width: 768px) {
            .video-player-wrapper {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .video-player-wrapper {
                height: 200px;
            }
        }

        .player-message {
            color: var(--light-text);
            margin-bottom: 30px;
            max-width: 400px;
            font-size: 16px;
        }

        .app-prompt {
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 15px;
            font-weight: bold;
            font-size: 16px;
        }

        .app-button-container {
            background-color: var(--mid-gray);
            padding: 20px;
            text-align: center;
            display: flex;
            justify-content: center;
        }

        /* Comments Section */
        .comments-section {
            margin-bottom: 80px;
        }

        .comments-container {
            display: grid;
            gap: 20px;
        }

        .comment-card {
            background-color: #1a2025;
            border: 1px solid #2d373c;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .user-avatar img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            color: white;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .comment-date {
            color: var(--light-text);
            font-size: 12px;
            margin-bottom: 5px;
        }

        .rating i {
            color: var(--primary);
            font-size: 14px;
        }

        .comment-text {
            color: var(--light-text);
            font-size: 14px;
            line-height: 1.6;
            margin-top: 10px;
        }

        /* App Promotion Section */
        .app-promotion {
            background-color: var(--mid-gray);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 50px;
            display: grid;
            align-items: center;
            grid-template-columns: 1fr 3fr;
            gap: 30px;
        }

        .promo-poster {
            border: 2px solid var(--primary);
            border-radius: 8px;
            overflow: hidden;
        }

        .promo-details {}

        .promo-title {
            color: white;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .promo-countdown {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .promo-message {
            color: var(--light-text);
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 16px;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column {}

        .footer-heading {
            color: white;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .footer-text {
            color: var(--light-text);
            line-height: 1.7;
            font-size: 16px;
        }

        .social-links {
            display: flex;
            justify-content: flex-start;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            text-decoration: none;
        }

        .fab {
            font-size: 22px;
        }

        .social-link {
            color: var(--light-text);
            background-color: var(--dark-gray);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-link {
            color: var(--light-text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .footer-link:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .copyright {
            color: var(--light-text);
            text-align: center;
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .drama-info {
                grid-template-columns: 1fr;
            }

            .poster-container {
                max-width: 400px;
                margin: 0 auto;
            }

            .app-promotion {
                grid-template-columns: 1fr;
            }

            .promo-poster {
                max-width: 200px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .drama-title {
                font-size: 26px;
            }

            .countdown-actions {
                justify-content: center;
            }

            .drama-details {
                text-align: center;
            }

            @media (min-width: 769px) {

                .drama-details,
                .tags,
                .comments-container {
                    text-align: left;
                    justify-content: flex-start;
                    margin-left: 0;
                }
            }

            .tags {
                justify-content: center;
            }

            .drama-description {
                margin: 0 auto 30px;
            }

            .comments-container {
                margin: 0 auto;
            }

            .episode-content {
                grid-template-columns: 1fr;
            }

            .episode-player {
                padding: 30px 20px;
                min-height: 250px;
            }

            .app-promotion {
                align-items: center;
            }

            .promo-details {
                text-align: center;
            }

            .footer-column {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            /* 移动端板块1：让图片在前，内容区域在后 */
            .drama-info {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }

            .poster-container {
                order: -1;
                max-width: 60%;
            }
        }

        @media (max-width: 576px) {
            .countdown-header {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }