.video-hero {
    background: 
        linear-gradient(135deg, 
            rgba(15, 10, 31, 0.85) 0%, 
            rgba(45, 27, 78, 0.8) 25%, 
            rgba(30, 15, 58, 0.82) 50%, 
            rgba(15, 10, 31, 0.85) 100%),
        url('/static/images/video/kv_bg.png') center/cover no-repeat;
    background-size: cover, cover;
    position: relative;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 30%, rgba(168,85,247,0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(236,72,153,0.38) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(99,102,241,0.32) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 60%, rgba(139,92,246,0.25) 0%, transparent 40%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.video-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(168,85,247,0.08) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(168,85,247,0.04) 2px,
            rgba(168,85,247,0.04) 4px
        );
    pointer-events: none;
    animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.video-hero .hero-badge {
    background: linear-gradient(135deg, rgba(168,85,247,0.35), rgba(236,72,153,0.3));
    border: 1px solid rgba(168,85,247,0.6);
    color: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-weight: 700;
    padding: 10px 24px;
    box-shadow: 0 6px 30px rgba(168,85,247,0.4), 0 0 40px rgba(168,85,247,0.2);
    font-size: 0.9375rem;
    text-shadow: 0 0 20px rgba(168,85,247,0.5), 0 2px 4px rgba(0,0,0,0.3);
}

.video-hero .hero-badge i {
    color: #f5d0fe;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(168,85,247,0.8));
}

.video-hero .hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #fae8ff 25%, #f0abfc 50%, #e879f9 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(168,85,247,0.7)) drop-shadow(0 0 80px rgba(236,72,153,0.4)) drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
}

.video-hero .hero-desc {
    color: #fff;
    font-size: 1.25rem;
    line-height: 2;
    text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 0 60px rgba(168,85,247,0.4);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.video-hero .hero-actions p {
    color: #fff !important;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-size: 0.875rem;
}

.video-hero .hero-content {
    position: relative;
    z-index: 10;
}

.video-hero .hero-visual {
    position: relative;
    z-index: 10;
}

.video-feature-icon {
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(236,72,153,0.15));
}

.video-format-tag {
    display: inline-block;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #d8b4fe;
    margin: 4px;
    transition: all 0.3s;
}

.video-format-tag:hover {
    background: rgba(168,85,247,0.2);
    transform: translateY(-2px);
}

.video-cta {
    background: linear-gradient(135deg, #581c87, #7e22ce);
}

.video-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(168,85,247,0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(168,85,247,0.5);
}

.video-play-btn i {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 4px;
}

[data-theme="video"] .hero-cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(168,85,247,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(236,72,153,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.08) 0%, transparent 60%);
    pointer-events: none;
}

[data-theme="video"] .hero-cinematic-strip {
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(168,85,247,0.3) 20%, 
        rgba(236,72,153,0.4) 50%, 
        rgba(168,85,247,0.3) 80%, 
        transparent 100%);
    pointer-events: none;
}

[data-theme="video"] .hero-strip-left {
    left: 5%;
    animation: stripPulse 4s ease-in-out infinite;
}

[data-theme="video"] .hero-strip-right {
    right: 5%;
    animation: stripPulse 4s ease-in-out infinite 2s;
}

@keyframes stripPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

[data-theme="video"] .hero-cinematic-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(168,85,247,0.3),
        0 10px 40px rgba(0,0,0,0.4),
        inset 0 0 0 1px rgba(255,255,255,0.1);
}

[data-theme="video"] .hero-cinematic-player::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(168,85,247,0.1),
        transparent,
        rgba(236,72,153,0.1),
        transparent
    );
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

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

[data-theme="video"] .cinematic-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168,85,247,0.9), rgba(236,72,153,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 40px rgba(168,85,247,0.5),
        0 0 80px rgba(236,72,153,0.3);
    z-index: 10;
}

[data-theme="video"] .cinematic-play-btn i {
    color: #fff;
    font-size: 2rem;
    margin-left: 4px;
}

[data-theme="video"] .cinematic-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
        0 0 60px rgba(168,85,247,0.7),
        0 0 100px rgba(236,72,153,0.5);
}

[data-theme="video"] .section-dark {
    background: linear-gradient(180deg, 
        rgba(26,10,46,0.03) 0%, 
        rgba(45,27,78,0.05) 50%, 
        rgba(26,10,46,0.03) 100%);
}

[data-theme="video"] .feature-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(168,85,247,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="video"] .feature-card:hover {
    border-color: rgba(168,85,247,0.3);
    box-shadow: 
        0 20px 40px rgba(168,85,247,0.15),
        0 0 0 1px rgba(168,85,247,0.1);
}

[data-theme="video"] .feature-card h3 {
    color: #1e1b4b;
}

[data-theme="video"] .feature-card p {
    color: #4c1d95;
    opacity: 0.8;
}

[data-theme="video"] .showcase-text h3 {
    color: #1e1b4b;
}

[data-theme="video"] .showcase-text p {
    color: #4c1d95;
}

[data-theme="video"] .showcase-text ul li {
    color: #5b21b6;
}

[data-theme="video"] .showcase-text ul li i {
    color: #a855f7;
}

[data-theme="video"] .advantage-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,245,255,0.95));
    border: 1px solid rgba(168,85,247,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="video"] .advantage-card:hover {
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(168,85,247,0.2),
        0 0 0 1px rgba(168,85,247,0.1);
}

[data-theme="video"] .advantage-icon {
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.1));
    color: #a855f7;
}

[data-theme="video"] .advantage-card h3 {
    color: #1e1b4b;
}

[data-theme="video"] .advantage-card p {
    color: #6b21a8;
    opacity: 0.85;
}

[data-theme="video"] .step-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,245,255,0.95));
    border: 1px solid rgba(168,85,247,0.12);
}

[data-theme="video"] .step-card:hover {
    border-color: rgba(168,85,247,0.3);
    box-shadow: 0 20px 40px rgba(168,85,247,0.15);
}

[data-theme="video"] .step-number {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
}

[data-theme="video"] .step-icon {
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(236,72,153,0.08));
    color: #a855f7;
}

[data-theme="video"] .step-card h3 {
    color: #1e1b4b;
}

[data-theme="video"] .step-card p {
    color: #6b21a8;
    opacity: 0.8;
}

[data-theme="video"] .step-connector i {
    color: #a855f7;
    opacity: 0.5;
}

[data-theme="video"] .review-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,245,255,0.95));
    border: 1px solid rgba(168,85,247,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="video"] .review-card:hover {
    border-color: rgba(168,85,247,0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168,85,247,0.12);
}

[data-theme="video"] .review-stars i {
    color: #fbbf24;
}

[data-theme="video"] .review-text {
    color: #4c1d95;
}

[data-theme="video"] .review-name {
    color: #1e1b4b;
}

[data-theme="video"] .review-role {
    color: #7c3aed;
}

[data-theme="video"] .review-avatar {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
}

[data-theme="video"] .faq-item {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(168,85,247,0.1);
    transition: all 0.3s ease;
}

[data-theme="video"] .faq-item:hover {
    border-color: rgba(168,85,247,0.25);
    box-shadow: 0 10px 30px rgba(168,85,247,0.1);
}

[data-theme="video"] .faq-question h3 {
    color: #1e1b4b;
}

[data-theme="video"] .faq-toggle i {
    color: #a855f7;
}

[data-theme="video"] .faq-answer-inner {
    color: #5b21b6;
}

[data-theme="video"] .download-box {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1e0f3a 100%);
    border: 1px solid rgba(168,85,247,0.3);
    position: relative;
    overflow: hidden;
}

[data-theme="video"] .download-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(168,85,247,0.15) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

[data-theme="video"] .download-box h3 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(168,85,247,0.5);
    position: relative;
    z-index: 1;
}

[data-theme="video"] .download-box p {
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
}

[data-theme="video"] .download-info-item {
    color: rgba(255,255,255,0.75);
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="video"] .download-info-item i {
    color: #c084fc;
}

[data-theme="video"] .stats-section {
    background: linear-gradient(135deg, #581c87 0%, #7e22ce 50%, #6b21a8 100%);
    position: relative;
}

[data-theme="video"] .stats-section::before {
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

[data-theme="video"] .stat-number {
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

[data-theme="video"] .stat-label {
    color: rgba(255,255,255,0.9);
}

[data-theme="video"] .section-badge {
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.2);
    color: #a855f7;
}

[data-theme="video"] .section-title {
    color: #1e1b4b;
}

[data-theme="video"] .section-subtitle {
    color: #6b21a8;
}

[data-theme="video"] .feature-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

[data-theme="video"] .feature-tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.15);
    color: #7c3aed;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="video"] .feature-tab-btn:hover {
    background: rgba(168,85,247,0.15);
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-2px);
}

[data-theme="video"] .feature-tab-btn.active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(168,85,247,0.35);
}

[data-theme="video"] .feature-tab-btn i {
    font-size: 1rem;
}

[data-theme="video"] .feature-tab-panels {
    position: relative;
}

[data-theme="video"] .feature-tab-panel {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,245,255,0.95));
    border-radius: 20px;
    border: 1px solid rgba(168,85,247,0.12);
    animation: fadeIn 0.4s ease;
}

[data-theme="video"] .feature-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-theme="video"] .feature-tab-panel h3 {
    color: #1e1b4b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

[data-theme="video"] .feature-tab-panel p {
    color: #5b21b6;
    font-size: 1.0625rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

[data-theme="video"] .tab-panel-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #a855f7;
}

[data-theme="video"] .showcase-img {
    border: 1px solid rgba(168,85,247,0.15);
    box-shadow: 
        0 20px 50px rgba(168,85,247,0.15),
        0 0 0 1px rgba(168,85,247,0.05);
    transition: all 0.4s ease;
}

[data-theme="video"] .showcase-img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 25px 60px rgba(168,85,247,0.2),
        0 0 0 1px rgba(168,85,247,0.1);
}

[data-theme="video"] .btn-hero-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 8px 30px rgba(168,85,247,0.5), 0 0 50px rgba(168,85,247,0.3);
    padding: 16px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
}

[data-theme="video"] .btn-hero-primary:hover {
    box-shadow: 0 12px 45px rgba(168,85,247,0.65), 0 0 70px rgba(168,85,247,0.4);
    transform: translateY(-3px);
}

[data-theme="video"] .btn-hero-secondary {
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(236,72,153,0.15));
    border: 1px solid rgba(168,85,247,0.4);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168,85,247,0.4), 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 0 30px rgba(168,85,247,0.2);
}

[data-theme="video"] .btn-hero-secondary:hover {
    background: linear-gradient(135deg, rgba(168,85,247,0.35), rgba(236,72,153,0.25));
    border-color: rgba(168,85,247,0.6);
    color: #fff;
    box-shadow: 0 0 45px rgba(168,85,247,0.35);
}

.video-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23a855f7' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.video-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.video-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(236,72,153,0.08));
    animation: floatShape 20s ease-in-out infinite;
}

.video-floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.video-floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: -5s;
}

.video-floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

@media (max-width: 991.98px) {
    [data-theme="video"] .feature-tabs {
        gap: 8px;
    }
    
    [data-theme="video"] .feature-tab-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    [data-theme="video"] .feature-tab-panel {
        padding: 24px;
    }
    
    .video-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .video-hero .hero-desc {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    [data-theme="video"] .feature-tab-btn {
        padding: 8px 12px;
        font-size: 0.8125rem;
    }
    
    [data-theme="video"] .download-info {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    [data-theme="video"] .download-info-item {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
