/**
 * 黑料视频 - Modern 流媒体站样式
 * Domain: ghpwz.cn
 * CSS类名前缀: ghpwz-cn
 * 风格: Glassmorphism + 响应式网格 + 平滑过渡动画
 */

/* ===== CSS Variables ===== */
:root {
    --ghpwz-cn-primary: #667eea;
    --ghpwz-cn-secondary: #764ba2;
    --ghpwz-cn-accent: #f093fb;
    --ghpwz-cn-bg-dark: #0f0f23;
    --ghpwz-cn-bg-card: rgba(255, 255, 255, 0.05);
    --ghpwz-cn-glass-bg: rgba(255, 255, 255, 0.08);
    --ghpwz-cn-glass-border: rgba(255, 255, 255, 0.12);
    --ghpwz-cn-text-primary: #ffffff;
    --ghpwz-cn-text-secondary: rgba(255, 255, 255, 0.7);
    --ghpwz-cn-text-muted: rgba(255, 255, 255, 0.5);
    --ghpwz-cn-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --ghpwz-cn-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --ghpwz-cn-radius: 16px;
    --ghpwz-cn-radius-sm: 8px;
    --ghpwz-cn-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ghpwz-cn-container: 1280px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

.ghpwz-cn-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--ghpwz-cn-bg-dark);
    color: var(--ghpwz-cn-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
}

/* ===== Container ===== */
.ghpwz-cn-container {
    max-width: var(--ghpwz-cn-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header - Glassmorphism Nav ===== */
.ghpwz-cn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ghpwz-cn-glass-border);
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.ghpwz-cn-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ghpwz-cn-logo h1 {
    font-size: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.ghpwz-cn-logo-svg {
    height: 40px;
    width: auto;
}

/* ===== Navigation ===== */
.ghpwz-cn-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.ghpwz-cn-nav::-webkit-scrollbar {
    display: none;
}

.ghpwz-cn-nav-link {
    color: var(--ghpwz-cn-text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--ghpwz-cn-transition);
    position: relative;
}

.ghpwz-cn-nav-link:hover {
    color: var(--ghpwz-cn-text-primary);
    background: var(--ghpwz-cn-glass-bg);
}

.ghpwz-cn-nav-link.active {
    color: var(--ghpwz-cn-text-primary);
    background: var(--ghpwz-cn-gradient);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* ===== Search Box ===== */
.ghpwz-cn-search-box {
    display: flex;
    align-items: center;
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: 25px;
    padding: 4px 4px 4px 16px;
    transition: var(--ghpwz-cn-transition);
    flex-shrink: 0;
}

.ghpwz-cn-search-box:focus-within {
    border-color: var(--ghpwz-cn-primary);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.ghpwz-cn-search-input {
    background: none;
    border: none;
    outline: none;
    color: var(--ghpwz-cn-text-primary);
    font-size: 14px;
    width: 160px;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-search-input::placeholder {
    color: var(--ghpwz-cn-text-muted);
}

.ghpwz-cn-search-input:focus {
    width: 200px;
}

.ghpwz-cn-search-btn {
    background: var(--ghpwz-cn-gradient);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

/* ===== Mobile Menu Button ===== */
.ghpwz-cn-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.ghpwz-cn-mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--ghpwz-cn-text-primary);
    border-radius: 2px;
    transition: var(--ghpwz-cn-transition);
}

/* ===== Main Content ===== */
.ghpwz-cn-main {
    padding-top: 90px;
    min-height: 60vh;
}

/* ===== Breadcrumb ===== */
.ghpwz-cn-breadcrumb {
    padding: 16px 0;
    font-size: 14px;
    color: var(--ghpwz-cn-text-muted);
}

.ghpwz-cn-breadcrumb-link {
    color: var(--ghpwz-cn-text-secondary);
    text-decoration: none;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-breadcrumb-link:hover {
    color: var(--ghpwz-cn-primary);
}

.ghpwz-cn-breadcrumb-sep {
    margin: 0 8px;
    color: var(--ghpwz-cn-text-muted);
}

.ghpwz-cn-breadcrumb-current {
    color: var(--ghpwz-cn-text-primary);
}

/* ===== Hero Section ===== */
.ghpwz-cn-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ghpwz-cn-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent, rgba(118, 75, 162, 0.1), transparent);
    animation: ghpwz-cn-rotate 20s linear infinite;
}

@keyframes ghpwz-cn-rotate {
    100% { transform: rotate(360deg); }
}

.ghpwz-cn-hero-content {
    position: relative;
    z-index: 1;
}

.ghpwz-cn-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--ghpwz-cn-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ghpwz-cn-hero-subtitle {
    font-size: 1.1rem;
    color: var(--ghpwz-cn-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Section Titles ===== */
.ghpwz-cn-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid;
    border-image: var(--ghpwz-cn-gradient) 1;
    color: var(--ghpwz-cn-text-primary);
}

/* ===== Video Grid ===== */
.ghpwz-cn-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* ===== Video Card - Glassmorphism ===== */
.ghpwz-cn-video-card {
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    overflow: hidden;
    transition: var(--ghpwz-cn-transition);
    backdrop-filter: blur(10px);
}

.ghpwz-cn-video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ghpwz-cn-shadow);
    border-color: rgba(102, 126, 234, 0.3);
}

.ghpwz-cn-video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ghpwz-cn-video-thumb {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.ghpwz-cn-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ghpwz-cn-video-card:hover .ghpwz-cn-video-img {
    transform: scale(1.08);
}

.ghpwz-cn-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-video-card:hover .ghpwz-cn-video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.ghpwz-cn-play-icon {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-video-card:hover .ghpwz-cn-play-icon {
    opacity: 1;
    transform: scale(1);
}

.ghpwz-cn-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.ghpwz-cn-video-info {
    padding: 16px;
}

.ghpwz-cn-video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--ghpwz-cn-text-primary);
}

.ghpwz-cn-video-desc {
    font-size: 13px;
    color: var(--ghpwz-cn-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ghpwz-cn-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--ghpwz-cn-text-muted);
}

.ghpwz-cn-video-channel-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    background: var(--ghpwz-cn-gradient);
    border-radius: 12px;
    font-size: 11px;
    color: white;
    font-weight: 500;
}

/* ===== Channel Header ===== */
.ghpwz-cn-channel-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 32px;
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    backdrop-filter: blur(10px);
}

.ghpwz-cn-channel-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--ghpwz-cn-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.ghpwz-cn-channel-description {
    color: var(--ghpwz-cn-text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Channels Overview Grid ===== */
.ghpwz-cn-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.ghpwz-cn-channel-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--ghpwz-cn-transition);
    backdrop-filter: blur(10px);
}

.ghpwz-cn-channel-entry:hover {
    transform: translateY(-4px);
    border-color: var(--ghpwz-cn-primary);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.ghpwz-cn-channel-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ghpwz-cn-gradient);
    border-radius: 16px;
    margin-bottom: 16px;
    color: white;
}

.ghpwz-cn-channel-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ghpwz-cn-text-primary);
}

.ghpwz-cn-channel-desc {
    font-size: 13px;
    color: var(--ghpwz-cn-text-muted);
    line-height: 1.5;
}

/* ===== Reviews Section ===== */
.ghpwz-cn-reviews {
    padding: 48px 0;
}

.ghpwz-cn-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.ghpwz-cn-review-card {
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-review-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.ghpwz-cn-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ghpwz-cn-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ghpwz-cn-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.ghpwz-cn-review-name {
    font-weight: 600;
    font-size: 14px;
}

.ghpwz-cn-review-stars {
    color: #fbbf24;
    font-size: 12px;
}

.ghpwz-cn-review-content {
    font-size: 14px;
    color: var(--ghpwz-cn-text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.ghpwz-cn-review-date {
    font-size: 12px;
    color: var(--ghpwz-cn-text-muted);
}

/* ===== Contact Section ===== */
.ghpwz-cn-contact {
    padding: 48px 0;
}

.ghpwz-cn-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ghpwz-cn-contact-card {
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius);
    padding: 32px;
    backdrop-filter: blur(10px);
}

.ghpwz-cn-contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    background: var(--ghpwz-cn-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghpwz-cn-contact-card p {
    font-size: 14px;
    color: var(--ghpwz-cn-text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.ghpwz-cn-contact-card strong {
    color: var(--ghpwz-cn-text-primary);
}

/* ===== Share Section ===== */
.ghpwz-cn-share {
    padding: 24px 0;
    border-top: 1px solid var(--ghpwz-cn-glass-border);
    border-bottom: 1px solid var(--ghpwz-cn-glass-border);
}

.ghpwz-cn-share .ghpwz-cn-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ghpwz-cn-share-label {
    font-size: 14px;
    color: var(--ghpwz-cn-text-secondary);
    font-weight: 500;
}

.ghpwz-cn-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    color: var(--ghpwz-cn-text-secondary);
    text-decoration: none;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-share-btn:hover {
    background: var(--ghpwz-cn-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

/* ===== FAQ Section ===== */
.ghpwz-cn-faq {
    padding: 48px 0;
}

.ghpwz-cn-faq-item {
    background: var(--ghpwz-cn-glass-bg);
    border: 1px solid var(--ghpwz-cn-glass-border);
    border-radius: var(--ghpwz-cn-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-faq-item[open] {
    border-color: rgba(102, 126, 234, 0.3);
}

.ghpwz-cn-faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ghpwz-cn-text-primary);
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-faq-question::-webkit-details-marker {
    display: none;
}

.ghpwz-cn-faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--ghpwz-cn-primary);
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-faq-item[open] .ghpwz-cn-faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.ghpwz-cn-faq-question:hover {
    color: var(--ghpwz-cn-primary);
}

.ghpwz-cn-faq-answer {
    padding: 0 24px 20px;
    animation: ghpwz-cn-fadeIn 0.3s ease;
}

.ghpwz-cn-faq-answer p {
    font-size: 14px;
    color: var(--ghpwz-cn-text-secondary);
    line-height: 1.7;
}

@keyframes ghpwz-cn-fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Footer ===== */
.ghpwz-cn-footer {
    padding: 48px 0 32px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--ghpwz-cn-glass-border);
    margin-top: 48px;
}

.ghpwz-cn-footer-content {
    text-align: center;
}

.ghpwz-cn-footer-desc {
    font-size: 14px;
    color: var(--ghpwz-cn-text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.ghpwz-cn-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.ghpwz-cn-footer-links a {
    color: var(--ghpwz-cn-text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--ghpwz-cn-transition);
}

.ghpwz-cn-footer-links a:hover {
    color: var(--ghpwz-cn-text-primary);
    background: var(--ghpwz-cn-glass-bg);
}

.ghpwz-cn-footer-meta {
    font-size: 13px;
    color: var(--ghpwz-cn-text-muted);
}

.ghpwz-cn-footer-meta p {
    margin-bottom: 6px;
}

/* ===== Featured Section ===== */
.ghpwz-cn-featured {
    margin-bottom: 48px;
}

/* ===== Channels Overview ===== */
.ghpwz-cn-channels-overview {
    margin-bottom: 48px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .ghpwz-cn-nav {
        display: none;
    }
    
    .ghpwz-cn-mobile-menu-btn {
        display: flex;
    }
    
    .ghpwz-cn-search-input {
        width: 120px;
    }
    
    .ghpwz-cn-search-input:focus {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .ghpwz-cn-header-inner {
        height: 60px;
    }
    
    .ghpwz-cn-hero {
        padding: 40px 16px;
    }
    
    .ghpwz-cn-hero-title {
        font-size: 1.8rem;
    }
    
    .ghpwz-cn-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .ghpwz-cn-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .ghpwz-cn-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .ghpwz-cn-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ghpwz-cn-channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ghpwz-cn-channel-entry {
        padding: 20px 12px;
    }
    
    .ghpwz-cn-section-title {
        font-size: 1.25rem;
    }
    
    .ghpwz-cn-channel-title {
        font-size: 1.5rem;
    }
    
    .ghpwz-cn-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .ghpwz-cn-video-grid {
        grid-template-columns: 1fr;
    }
    
    .ghpwz-cn-channels-grid {
        grid-template-columns: 1fr;
    }
    
    .ghpwz-cn-search-box {
        display: none;
    }
    
    .ghpwz-cn-hero-title {
        font-size: 1.5rem;
    }
    
    .ghpwz-cn-share .ghpwz-cn-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== Mobile Navigation Overlay ===== */
.ghpwz-cn-nav.mobile-open {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    animation: ghpwz-cn-fadeIn 0.3s ease;
}

.ghpwz-cn-nav.mobile-open .ghpwz-cn-nav-link {
    font-size: 18px;
    padding: 12px 32px;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ghpwz-cn-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

/* ===== Loading Animation ===== */
.ghpwz-cn-video-img {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: ghpwz-cn-shimmer 1.5s infinite;
}

.ghpwz-cn-video-img[src] {
    animation: none;
    background: none;
}

@keyframes ghpwz-cn-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
