@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* tc-scoped:tc-wp-tool-root */

.tc-wp-tool-root{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}.wpc-scope-64 .tc-wp-tool-root img, .wpc-scope-64 .tc-wp-tool-root video, .wpc-scope-64 .tc-wp-tool-root svg, .wpc-scope-64 .tc-wp-tool-root iframe{
  max-width: 100%;
  height: auto;
}.wpc-scope-64 .tc-wp-tool-root{
        
        --primary: #2563eb;
        --secondary: #0ea5e9;
        --accent: #8b5cf6;
        --tertiary: #ec4899;
        --quaternary: #f97316;
        --success: #10b981;
        --warning: #f59e0b;
        --danger: #ef4444;
        --info: #06b6d4;

        
        --bg-gradient-1: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e3a8a 75%, #4f46e5 100%);
        --bg-gradient-2: linear-gradient(135deg, #1e293b 0%, #334155 25%, #1e3a8a 50%, #4f46e5 75%, #7e22ce 100%);
        --bg-gradient-3: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #4f46e5 50%, #7e22ce 75%, #a855f7 100%);
        
        
        --card-bg: rgba(30, 41, 59, 0.8);
        --card-accent: rgba(30, 58, 138, 0.6);
        --card-purple: rgba(79, 70, 229, 0.6);
        --card-pink: rgba(236, 72, 153, 0.6);
        
        
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-accent: #a5b4fc;
        --text-purple: #c4b5fd;
        --text-pink: #f9a8d4;
        --text-blue: #93c5fd;
        
        
        --border-light: rgba(255, 255, 255, 0.1);
        --border-medium: rgba(255, 255, 255, 0.2);
        --border-accent: rgba(139, 92, 246, 0.4);
        
        
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
        --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.5);
        --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.3);
        --shadow-purple: 0 8px 24px rgba(139, 92, 246, 0.3);
        --shadow-pink: 0 8px 24px rgba(236, 72, 153, 0.3);
        
        
        --glow-blue: 0 0 20px rgba(37, 99, 235, 0.5);
        --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
        --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
        
        
        --transition-fast: 0.2s;
        --transition-medium: 0.4s;
        --transition-slow: 0.6s;
    }.wpc-scope-64 .tc-wp-tool-root *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }.wpc-scope-64 .tc-wp-tool-root .tiktok_body{
        font-family: 'Inter', sans-serif;
        background: var(--bg-gradient-1);
        background-size: 400% 400%;
        animation: gradientShift 20s ease infinite;
        color: var(--text-primary);
        
        overflow-x: hidden;
        position: relative;
    }.wpc-scope-64 .tc-wp-tool-root .tiktok_body::before{
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
        pointer-events: none;
        z-index: -1;
        animation: backgroundFloat 15s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .container_tiktok{
        max-width: 1200px;
        margin: 0 auto;
        padding:100px 20px;
        position: relative;
        z-index: 1;
    }.wpc-scope-64 .tc-wp-tool-root .header{
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeInDown 1s ease-out;
    }.wpc-scope-64 .tc-wp-tool-root .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .logo-icon{
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--accent), var(--tertiary));
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        box-shadow: var(--shadow-xl), var(--glow-purple);
        animation: logoFloat 4s ease-in-out infinite;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--border-light);
        flex-shrink: 0;
    }.wpc-scope-64 .tc-wp-tool-root .logo-icon::before{
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: logoShine 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .logo-text{
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--tertiary));
        background-size: 300% 300%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -1px;
        animation: textGradient 4s ease infinite;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        text-align: center;
    }.wpc-scope-64 .tc-wp-tool-root .subtitle{
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        color: var(--text-secondary);
        font-weight: 500;
        margin-top: 0.5rem;
        animation: subtitleGlow 3s ease-in-out infinite;
        text-align: center;
        padding: 0 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .search-section{
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-medium);
        border-radius: 24px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-xl), var(--shadow-purple);
        animation: fadeInUp 1s ease-out 0.2s both;
        position: relative;
        overflow: hidden;
    }.wpc-scope-64 .tc-wp-tool-root .search-section::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--primary),
                var(--accent),
                var(--tertiary),
                transparent);
        animation: borderFlow 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .input-group{
        position: relative;
        margin-bottom: 1.5rem;
        z-index: 2;
    }.wpc-scope-64 .tc-wp-tool-root .input-field{
        width: 100% !important;
        padding: 1.2rem 1.8rem !important;
        background: rgba(30, 41, 59, 0.9) !important;
        border: 2px solid rgba(139, 92, 246, 0.3) !important;
        border-radius: 20px !important;
        color: var(--text-primary) !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1) !important;
        outline: none !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: var(--shadow-md), inset 0 2px 10px rgba(0, 0, 0, 0.2) !important;
        position: relative !important;
    }.wpc-scope-64 .tc-wp-tool-root .input-field::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
                rgba(139, 92, 246, 0.1) 0%,
                rgba(236, 72, 153, 0.1) 100%);
        border-radius: 20px;
        opacity: 0;
        transition: opacity var(--transition-medium) ease;
        pointer-events: none;
    }.wpc-scope-64 .tc-wp-tool-root .input-field:focus{
        border-color: var(--accent);
        box-shadow:
            0 0 0 4px rgba(139, 92, 246, 0.2),
            var(--glow-purple),
            inset 0 2px 10px rgba(0, 0, 0, 0.3);
        background: rgba(30, 41, 59, 0.95);
        transform: translateY(-3px) scale(1.01);
        animation: inputFocusGlow 2s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .input-field:focus::before{
        opacity: 1;
    }.wpc-scope-64 .tc-wp-tool-root .input-field::placeholder{
        color: var(--text-secondary);
        transition: all var(--transition-fast) ease;
        font-weight: 400;
    }.wpc-scope-64 .tc-wp-tool-root .input-field:focus::placeholder{
        color: var(--text-accent);
        transform: translateY(-2px);
        opacity: 0.8;
    }.wpc-scope-64 .tc-wp-tool-root .input-actions{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
        z-index: 2;
        position: relative;
        flex-wrap: wrap;
        gap: 0.5rem;
    }.wpc-scope-64 .tc-wp-tool-root .paste-btn{
        background: linear-gradient(135deg, var(--info), var(--secondary));
        border: none;
        color: white;
        cursor: pointer;
        padding: 0.7rem 1.4rem;
        border-radius: 16px;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        box-shadow: var(--shadow-md), var(--shadow-blue);
        font-size: 0.9rem;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(14, 165, 233, 0.3);
        min-height: 44px;
    }.wpc-scope-64 .tc-wp-tool-root .paste-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .paste-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .paste-btn:active::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .paste-btn:hover, .wpc-scope-64 .tc-wp-tool-root .paste-btn:active{
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-lg), var(--glow-blue);
        background: linear-gradient(135deg, var(--secondary), var(--primary));
    }.wpc-scope-64 .tc-wp-tool-root .action-buttons{
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
        z-index: 2;
        position: relative;
    }.wpc-scope-64 .tc-wp-tool-root .search-btn{
        background: linear-gradient(135deg, var(--primary), var(--accent), var(--tertiary));
        background-size: 200% 200%;
        color: white;
        border: none;
        padding: 1.2rem 2.5rem;
        border-radius: 20px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-lg), var(--shadow-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        min-height: 56px;
        animation: buttonPulse 4s ease-in-out infinite;
        border: 2px solid rgba(139, 92, 246, 0.3);
        width: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .search-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .search-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .search-btn:active:not(:disabled)::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .search-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .search-btn:active:not(:disabled){
        transform: translateY(-4px) scale(1.02);
        box-shadow: var(--shadow-xl), var(--glow-purple);
        background-position: 100% 100%;
        animation: buttonHoverGlow 1s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .search-btn:disabled{
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        animation: none;
    }.wpc-scope-64 .tc-wp-tool-root .search-another-btn{
        background: linear-gradient(135deg, var(--accent), var(--primary));
        color: white;
        border: none;
        padding: 1rem 1.8rem;
        border-radius: 18px;
        cursor: pointer;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px;
        width: 100%;
        font-weight: 600;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        font-size: 1rem;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(139, 92, 246, 0.3);
    }.wpc-scope-64 .tc-wp-tool-root .search-another-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .search-another-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:active::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .search-another-btn:hover, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:active{
        transform: translateY(-3px) scale(1.05);
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .loading{
        display: none;
        text-align: center;
        padding: 3rem 2rem;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-medium);
        border-radius: 24px;
        margin: 2rem 0;
        box-shadow: var(--shadow-xl), var(--shadow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .loading::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--primary),
                var(--accent),
                transparent);
        border-radius: 24px 24px 0 0;
    }.wpc-scope-64 .tc-wp-tool-root .loading-spinner{
        width: 80px;
        height: 80px;
        margin: 0 auto 2rem;
        position: relative;
    }.wpc-scope-64 .tc-wp-tool-root .spinner-ring{
        position: absolute;
        border: 4px solid transparent;
        border-radius: 50%;
        animation: spin 2s linear infinite;
    }.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(1){
        width: 100%;
        height: 100%;
        border-top-color: var(--primary);
        border-right-color: var(--primary);
        animation-duration: 2s;
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(2){
        width: 75%;
        height: 75%;
        top: 12.5%;
        left: 12.5%;
        border-bottom-color: var(--accent);
        border-left-color: var(--accent);
        animation-duration: 1.5s;
        animation-direction: reverse;
        box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(3){
        width: 50%;
        height: 50%;
        top: 25%;
        left: 25%;
        border-top-color: var(--tertiary);
        animation-duration: 1s;
        box-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .loading-text{
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, var(--primary), var(--accent), var(--tertiary));
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textGradient 3s ease infinite;
    }.wpc-scope-64 .tc-wp-tool-root .loading-subtext{
        color: var(--text-secondary);
        font-size: 1rem;
        animation: textFade 2s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .video-section{
        display: none;
        animation: fadeInUp 0.8s ease-out;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-medium);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: var(--shadow-xl), var(--shadow-purple);
        position: relative;
        overflow: hidden;
    }.wpc-scope-64 .tc-wp-tool-root .video-section::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--primary),
                var(--accent),
                var(--tertiary),
                transparent);
        animation: borderFlow 4s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .author-section{
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg,
                rgba(139, 92, 246, 0.15) 0%,
                rgba(236, 72, 153, 0.15) 50%,
                rgba(37, 99, 235, 0.15) 100%);
        border-radius: 20px;
        border: 1px solid rgba(139, 92, 246, 0.3);
        width: 100%;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        transition: all var(--transition-medium) ease;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }.wpc-scope-64 .tc-wp-tool-root .author-section:hover, .wpc-scope-64 .tc-wp-tool-root .author-section:active{
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .author-avatar{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid transparent;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        padding: 2px;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        animation: avatarPulse 4s ease-in-out infinite;
        flex-shrink: 0;
    }.wpc-scope-64 .tc-wp-tool-root .author-details{
        flex: 1;
        min-width: 0;
    }.wpc-scope-64 .tc-wp-tool-root .author-details h3{
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        word-break: break-word;
    }.wpc-scope-64 .tc-wp-tool-root .author-username{
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 500;
        word-break: break-word;
    }.wpc-scope-64 .tc-wp-tool-root .video-title{
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        color: var(--text-primary);
        width: 100%;
        text-align: center;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        word-break: break-word;
        padding: 0 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .video-stats{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }.wpc-scope-64 .tc-wp-tool-root .stat-item{
        background: var(--card-bg);
        padding: 1.2rem;
        border-radius: 18px;
        text-align: center;
        border: 1px solid var(--border-light);
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(10px);
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }.wpc-scope-64 .tc-wp-tool-root .stat-item::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item:hover::before, .wpc-scope-64 .tc-wp-tool-root .stat-item:active::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .stat-item:hover, .wpc-scope-64 .tc-wp-tool-root .stat-item:active{
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item.views{
        border-color: rgba(37, 99, 235, 0.4);
        background: linear-gradient(135deg,
                rgba(37, 99, 235, 0.1) 0%,
                var(--card-bg) 100%);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item.likes{
        border-color: rgba(139, 92, 246, 0.4);
        background: linear-gradient(135deg,
                rgba(139, 92, 246, 0.1) 0%,
                var(--card-bg) 100%);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item.comments{
        border-color: rgba(236, 72, 153, 0.4);
        background: linear-gradient(135deg,
                rgba(236, 72, 153, 0.1) 0%,
                var(--card-bg) 100%);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item.shares{
        border-color: rgba(249, 115, 22, 0.4);
        background: linear-gradient(135deg,
                rgba(249, 115, 22, 0.1) 0%,
                var(--card-bg) 100%);
    }.wpc-scope-64 .tc-wp-tool-root .stat-item.duration{
        border-color: rgba(16, 185, 129, 0.4);
        background: linear-gradient(135deg,
                rgba(16, 185, 129, 0.1) 0%,
                var(--card-bg) 100%);
    }.wpc-scope-64 .tc-wp-tool-root .stat-value{
        font-size: 1.6rem;
        font-weight: 900;
        display: block;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: valueGlow 4s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .stat-label{
        font-size: 0.8rem;
        color: var(--text-secondary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }.wpc-scope-64 .tc-wp-tool-root .video-streaming-area{
        background: linear-gradient(135deg,
                rgba(37, 99, 235, 0.08) 0%,
                rgba(139, 92, 246, 0.08) 50%,
                rgba(236, 72, 153, 0.08) 100%);
        border: 2px solid rgba(37, 99, 235, 0.3);
        border-radius: 24px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-lg), var(--shadow-purple);
        backdrop-filter: blur(10px);
    }.wpc-scope-64 .tc-wp-tool-root .video-streaming-area::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.6;
        pointer-events: none;
        z-index: 1;
        animation: gridMove 12s linear infinite;
    }.wpc-scope-64 .tc-wp-tool-root .video-streaming-area::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--primary),
                var(--accent),
                var(--tertiary),
                transparent);
        z-index: 2;
        animation: borderFlow 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .streaming-header{
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 3;
    }.wpc-scope-64 .tc-wp-tool-root .streaming-title{
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: titlePulse 4s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .streaming-subtitle{
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 500;
    }.wpc-scope-64 .tc-wp-tool-root .video-player-wrapper{
        position: relative;
        width: 100%;
        max-width: min(380px, 90vw);
        margin: 0 auto;
        aspect-ratio: 9/16;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-xl), var(--shadow-purple);
        background: #000;
        z-index: 3;
        border: 2px solid rgba(37, 99, 235, 0.3);
    }.wpc-scope-64 .tc-wp-tool-root .video-thumbnail{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 4;
        cursor: pointer;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
    }.wpc-scope-64 .tc-wp-tool-root .video-thumbnail:hover, .wpc-scope-64 .tc-wp-tool-root .video-thumbnail:active{
        transform: scale(1.02);
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        cursor: pointer;
        transition: all var(--transition-medium) ease;
        backdrop-filter: blur(2px);
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay:hover, .wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay:active{
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn{
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-xl), var(--glow-purple);
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: playButtonPulse 3s ease-in-out infinite;
        border: 2px solid rgba(255, 255, 255, 0.2);
        min-height: 44px;
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: translateX(-100%);
        transition: transform var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:active::before{
        transform: translateX(100%);
    }.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:hover, .wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:active{
        transform: scale(1.15);
        box-shadow: var(--shadow-xl), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .video-player{
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
        position: relative;
        z-index: 2;
        display: none;
    }.wpc-scope-64 .tc-wp-tool-root .video-player.playing{
        display: block;
    }.wpc-scope-64 .tc-wp-tool-root .video-controls{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 1.5rem;
        transform: translateY(100%);
        transition: transform var(--transition-medium) ease;
        z-index: 10;
        backdrop-filter: blur(10px);
    }.wpc-scope-64 .tc-wp-tool-root .video-player-wrapper:hover .video-controls, .wpc-scope-64 .tc-wp-tool-root .video-controls.show{
        transform: translateY(0);
    }.wpc-scope-64 .tc-wp-tool-root .progress-bar{
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        margin-bottom: 0.5rem;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        min-height: 20px;
        display: flex;
        align-items: center;
    }.wpc-scope-64 .tc-wp-tool-root .progress-fill{
        height: 100%;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 3px;
        width: 0%;
        transition: width 0.1s linear;
        box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    }.wpc-scope-64 .tc-wp-tool-root .video-time{
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .control-buttons{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .control-group{
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .control-btn{
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast) ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        min-height: 44px;
        min-width: 44px;
    }.wpc-scope-64 .tc-wp-tool-root .control-btn:hover, .wpc-scope-64 .tc-wp-tool-root .control-btn:active{
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }.wpc-scope-64 .tc-wp-tool-root .play-btn{
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        font-size: 1.4rem;
        border: none;
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .volume-control{
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .volume-slider{
        width: 80px;
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        min-height: 20px;
        display: flex;
        align-items: center;
    }.wpc-scope-64 .tc-wp-tool-root .volume-fill{
        height: 100%;
        background: linear-gradient(90deg, var(--info), var(--success));
        border-radius: 3px;
        width: 100%;
        transition: width 0.1s ease;
        box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .download-section{
        background: linear-gradient(135deg,
                rgba(14, 165, 233, 0.1) 0%,
                rgba(16, 185, 129, 0.1) 50%,
                var(--card-bg) 100%);
        border: 2px solid rgba(14, 165, 233, 0.3);
        border-radius: 20px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-md), var(--shadow-blue);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }.wpc-scope-64 .tc-wp-tool-root .download-section::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--info),
                var(--success),
                transparent);
        animation: borderFlow 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .download-header{
        text-align: center;
        margin-bottom: 1.2rem;
    }.wpc-scope-64 .tc-wp-tool-root .download-title{
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, var(--info), var(--success));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        animation: titlePulse 4s ease-in-out infinite;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .download-subtitle{
        color: var(--text-secondary);
        font-size: 0.9rem;
    }.wpc-scope-64 .tc-wp-tool-root .download-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .download-btn{
        background: linear-gradient(135deg, var(--info), var(--secondary));
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-md), var(--shadow-blue);
        position: relative;
        overflow: hidden;
        font-size: 0.95rem;
        animation: buttonGlow 5s ease-in-out infinite;
        border: 1px solid rgba(14, 165, 233, 0.3);
        min-height: 48px;
        text-align: center;
    }.wpc-scope-64 .tc-wp-tool-root .download-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .download-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .download-btn:active:not(:disabled)::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .download-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-btn:active:not(:disabled){
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-lg), var(--glow-blue);
    }.wpc-scope-64 .tc-wp-tool-root .download-btn:disabled{
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        animation: none;
    }.wpc-scope-64 .tc-wp-tool-root .download-btn.hd{
        background: linear-gradient(135deg, var(--warning), var(--quaternary));
        border-color: rgba(249, 115, 22, 0.3);
    }.wpc-scope-64 .tc-wp-tool-root .download-btn.hd:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-btn.hd:active:not(:disabled){
        box-shadow: var(--shadow-lg), 0 0 30px rgba(249, 115, 22, 0.5);
    }.wpc-scope-64 .tc-wp-tool-root .audio-streaming{
        background: linear-gradient(135deg,
                rgba(139, 92, 246, 0.12) 0%,
                rgba(236, 72, 153, 0.12) 50%,
                var(--card-bg) 100%);
        border: 2px solid rgba(139, 92, 246, 0.3);
        border-radius: 20px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        backdrop-filter: blur(10px);
    }.wpc-scope-64 .tc-wp-tool-root .audio-streaming::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                transparent,
                var(--accent),
                var(--tertiary),
                transparent);
        animation: borderFlow 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .audio-header{
        text-align: center;
        margin-bottom: 1.2rem;
    }.wpc-scope-64 .tc-wp-tool-root .audio-main-title{
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        background: linear-gradient(135deg, var(--accent), var(--tertiary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        animation: titlePulse 4s ease-in-out infinite;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .audio-subtitle{
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }.wpc-scope-64 .tc-wp-tool-root .audio-player-section{
        display: flex;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }.wpc-scope-64 .tc-wp-tool-root .audio-icon-wrapper{
        position: relative;
        flex-shrink: 0;
    }.wpc-scope-64 .tc-wp-tool-root .audio-icon{
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--accent), var(--tertiary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        animation: audioIconPulse 4s ease-in-out infinite;
        position: relative;
        z-index: 2;
        border: 2px solid rgba(139, 92, 246, 0.3);
    }.wpc-scope-64 .tc-wp-tool-root .audio-wave{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 50%;
        animation: audioWaveRipple 2s ease-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(1){
        width: 60px;
        height: 60px;
        animation-delay: 0s;
    }.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(2){
        width: 75px;
        height: 75px;
        animation-delay: 0.5s;
    }.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(3){
        width: 90px;
        height: 90px;
        animation-delay: 1s;
    }.wpc-scope-64 .tc-wp-tool-root .audio-info{
        flex: 1;
        min-width: 0;
        text-align: center;
    }.wpc-scope-64 .tc-wp-tool-root .audio-title{
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.25rem;
        word-break: break-word;
    }.wpc-scope-64 .tc-wp-tool-root .audio-artist{
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
        word-break: break-word;
    }.wpc-scope-64 .tc-wp-tool-root .audio-progress-container{
        width: 100%;
        margin-bottom: 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .audio-progress{
        height: 8px;
        background: rgba(139, 92, 246, 0.2);
        border-radius: 4px;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        margin-bottom: 0.5rem;
        min-height: 20px;
        display: flex;
        align-items: center;
    }.wpc-scope-64 .tc-wp-tool-root .audio-progress-fill{
        height: 100%;
        background: linear-gradient(90deg, var(--accent), var(--tertiary));
        border-radius: 4px;
        width: 0%;
        transition: width 0.1s ease;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .audio-time{
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }.wpc-scope-64 .tc-wp-tool-root .audio-controls{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .audio-play-btn{
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--accent), var(--tertiary));
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md), var(--shadow-purple);
        font-size: 1.2rem;
        flex-shrink: 0;
        animation: audioPlayPulse 4s ease-in-out infinite;
        border: 2px solid rgba(139, 92, 246, 0.3);
        min-height: 44px;
        min-width: 44px;
    }.wpc-scope-64 .tc-wp-tool-root .audio-play-btn:hover, .wpc-scope-64 .tc-wp-tool-root .audio-play-btn:active{
        transform: scale(1.1);
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .audio-volume-control{
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .audio-volume-btn{
        background: rgba(139, 92, 246, 0.15);
        border: none;
        color: var(--text-purple);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast) ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(139, 92, 246, 0.2);
        font-size: 1rem;
        min-height: 44px;
        min-width: 44px;
    }.wpc-scope-64 .tc-wp-tool-root .audio-volume-btn:hover, .wpc-scope-64 .tc-wp-tool-root .audio-volume-btn:active{
        background: rgba(139, 92, 246, 0.25);
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }.wpc-scope-64 .tc-wp-tool-root .audio-volume-slider{
        width: 80px;
        height: 6px;
        background: rgba(139, 92, 246, 0.2);
        border-radius: 3px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        min-height: 20px;
        display: flex;
        align-items: center;
    }.wpc-scope-64 .tc-wp-tool-root .audio-volume-fill{
        height: 100%;
        background: linear-gradient(90deg, var(--accent), var(--tertiary));
        border-radius: 3px;
        width: 100%;
        transition: width 0.1s ease;
        box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-section{
        text-align: center;
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-btn{
        background: linear-gradient(135deg, var(--accent), var(--primary));
        color: white;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-md), var(--shadow-purple);
        font-size: 0.95rem;
        position: relative;
        overflow: hidden;
        animation: buttonGlow 5s ease-in-out infinite;
        border: 1px solid rgba(139, 92, 246, 0.3);
        min-height: 48px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-btn::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left var(--transition-medium);
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:active:not(:disabled)::before{
        left: 100%;
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:active:not(:disabled){
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-lg), var(--glow-purple);
    }.wpc-scope-64 .tc-wp-tool-root .download-audio-btn:disabled{
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        animation: none;
    }.wpc-scope-64 .tc-wp-tool-root .download-progress{
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-medium);
        border-radius: 18px;
        padding: 1.5rem 2rem;
        min-width: min(320px, 90vw);
        max-width: 90vw;
        box-shadow: var(--shadow-xl), var(--shadow-purple);
        z-index: 1000;
        display: none;
    }.wpc-scope-64 .tc-wp-tool-root .download-progress.show{
        display: block;
        animation: slideInRight 0.4s ease-out;
    }.wpc-scope-64 .tc-wp-tool-root .progress-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .progress-text{
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-primary);
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        flex: 1;
        min-width: 0;
    }.wpc-scope-64 .tc-wp-tool-root .cancel-btn{
        background: rgba(239, 68, 68, 0.15);
        border: 1px solid rgba(239, 68, 68, 0.3);
        color: #ef4444;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all var(--transition-fast) ease;
        font-weight: 600;
        backdrop-filter: blur(10px);
        min-height: 36px;
        flex-shrink: 0;
    }.wpc-scope-64 .tc-wp-tool-root .cancel-btn:hover, .wpc-scope-64 .tc-wp-tool-root .cancel-btn:active{
        background: rgba(239, 68, 68, 0.25);
        transform: scale(1.05);
    }.wpc-scope-64 .tc-wp-tool-root .progress-bar-container{
        width: 100%;
        height: 8px;
        background: rgba(139, 92, 246, 0.2);
        border-radius: 4px;
        overflow: hidden;
    }.wpc-scope-64 .tc-wp-tool-root .progress-bar-fill{
        height: 100%;
        background: linear-gradient(90deg, var(--success), #10b981);
        border-radius: 4px;
        width: 0%;
        transition: width var(--transition-medium) ease;
        box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
        animation: progressGlow 3s ease-in-out infinite;
    }.wpc-scope-64 .tc-wp-tool-root .error-message{
        background: linear-gradient(135deg,
                rgba(239, 68, 68, 0.1) 0%,
                var(--card-bg) 100%);
        border: 2px solid rgba(239, 68, 68, 0.3);
        color: #ef4444;
        padding: 1rem 1.8rem;
        border-radius: 16px;
        margin: 1rem 0;
        display: none;
        align-items: center;
        gap: 1rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-md);
        animation: errorShake 0.5s ease-in-out;
        font-size: 1rem;
        flex-wrap: wrap;
    }.wpc-scope-64 .tc-wp-tool-root .error-message.show{
        display: flex;
        animation: fadeInUp 0.3s ease-out, errorShake 0.5s ease-in-out;
    }@keyframes gradientShift{
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }@keyframes backgroundFloat{
        0%, 100% {
            opacity: 1;
            transform: translateY(0px);
        }
        50% {
            opacity: 0.8;
            transform: translateY(-10px);
        }
    }@keyframes fadeInDown{
        from {
            opacity: 0;
            transform: translateY(-40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }@keyframes fadeInUp{
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }@keyframes slideInRight{
        from {
            opacity: 0;
            transform: translateX(100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }@keyframes spin{
        to {
            transform: rotate(360deg);
        }
    }@keyframes logoFloat{
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-10px) rotate(5deg);
        }
    }@keyframes logoShine{
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }@keyframes textGradient{
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }@keyframes subtitleGlow{
        0%, 100% {
            text-shadow: 0 0 5px rgba(203, 213, 225, 0.3);
        }
        50% {
            text-shadow: 0 0 15px rgba(203, 213, 225, 0.6);
        }
    }@keyframes borderFlow{
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }@keyframes inputFocusGlow{
        0%, 100% {
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2), var(--glow-purple), inset 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        50% {
            box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.4), var(--glow-purple), inset 0 2px 10px rgba(0, 0, 0, 0.3);
        }
    }@keyframes buttonPulse{
        0%, 100% {
            box-shadow: var(--shadow-lg), var(--shadow-purple);
        }
        50% {
            box-shadow: var(--shadow-xl), var(--glow-purple);
        }
    }@keyframes buttonHoverGlow{
        0%, 100% {
            filter: brightness(1);
        }
        50% {
            filter: brightness(1.2);
        }
    }@keyframes textFade{
        0%, 100% {
            opacity: 0.7;
        }
        50% {
            opacity: 1;
        }
    }@keyframes avatarPulse{
        0%, 100% {
            box-shadow: var(--shadow-md), var(--shadow-purple);
        }
        50% {
            box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.6);
        }
    }@keyframes valueGlow{
        0%, 100% {
            filter: brightness(1);
        }
        50% {
            filter: brightness(1.2);
        }
    }@keyframes gridMove{
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(30px, 30px);
        }
    }@keyframes titlePulse{
        0%, 100% {
            filter: brightness(1);
        }
        50% {
            filter: brightness(1.3);
        }
    }@keyframes playButtonPulse{
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }@keyframes buttonGlow{
        0%, 100% {
            box-shadow: var(--shadow-md);
        }
        50% {
            box-shadow: var(--shadow-lg);
        }
    }@keyframes audioIconPulse{
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
    }@keyframes audioWaveRipple{
        0% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(0.8);
        }
        100% {
            opacity: 0;
            transform: translate(-50%, -50%) scale(2);
        }
    }@keyframes audioPlayPulse{
        0%, 100% {
            box-shadow: var(--shadow-md), var(--shadow-purple);
        }
        50% {
            box-shadow: var(--shadow-lg), var(--glow-purple);
        }
    }@keyframes progressGlow{
        0%, 100% {
            box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
        }
        50% {
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
        }
    }@keyframes errorShake{
        0%, 100% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(-5px);
        }
        75% {
            transform: translateX(5px);
        }
    }@media (max-width: 1024px){.tc-wp-tool-root .container{
            padding: 1.5rem;
        }.tc-wp-tool-root .video-stats{
            grid-template-columns: repeat(3, 1fr);
        }.tc-wp-tool-root .download-grid{
            grid-template-columns: 1fr;
        }.tc-wp-tool-root .action-buttons{
            grid-template-columns: 1fr;
            gap: 1rem;
        }.tc-wp-tool-root .search-another-btn{
            width: 100%;
        }.tc-wp-tool-root .audio-player-section{
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }.tc-wp-tool-root .audio-controls{
            flex-direction: row;
            justify-content: center;
            gap: 1rem;
        }.tc-wp-tool-root .audio-volume-control{
            justify-content: center;
        }.tc-wp-tool-root .video-player-wrapper{
            max-width: min(320px, 85vw);
        }}@media (max-width: 768px){.tc-wp-tool-root .container{
            padding: 1rem;
        }.tc-wp-tool-root .logo{
            flex-direction: column;
            gap: 1rem;
        }.tc-wp-tool-root .logo-icon{
            width: 60px;
            height: 60px;
            font-size: 24px;
        }.tc-wp-tool-root .video-stats{
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }.tc-wp-tool-root .author-section{
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }.tc-wp-tool-root .download-progress{
            left: 1rem;
            right: 1rem;
            bottom: 1rem;
            min-width: auto;
        }.tc-wp-tool-root .control-buttons{
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }.tc-wp-tool-root .volume-control{
            order: 3;
            width: 100%;
            justify-content: center;
        }.tc-wp-tool-root .audio-controls{
            flex-direction: column;
            gap: 1rem;
        }.tc-wp-tool-root .audio-volume-control{
            width: 100%;
            justify-content: center;
        }.tc-wp-tool-root .video-player-wrapper{
            max-width: min(300px, 80vw);
        }.tc-wp-tool-root .video-controls{
            transform: translateY(0);
            position: relative;
            background: rgba(0, 0, 0, 0.8);
            margin-top: 1rem;
            border-radius: 12px;
        }.tc-wp-tool-root .video-player-wrapper:hover .video-controls{
            transform: translateY(0);
        }.tc-wp-tool-root .search-btn{
	color: white;
	font-size: 1rem !important;
	font-weight: 700;
	cursor: pointer;
}}@media (max-width: 480px){.tc-wp-tool-root .container{
            padding: 0.8rem;
        }.tc-wp-tool-root .header{
            margin-bottom: 1.5rem;
        }.tc-wp-tool-root .logo-icon{
            width: 50px;
            height: 50px;
            font-size: 20px;
        }.tc-wp-tool-root .video-stats{
            grid-template-columns: 1fr;
            gap: 0.6rem;
        }.tc-wp-tool-root .stat-item{
            min-height: 70px;
            padding: 0.8rem;
        }.tc-wp-tool-root .stat-value{
            font-size: 1.3rem;
        }.tc-wp-tool-root .audio-player-section{
            gap: 0.8rem;
        }.tc-wp-tool-root .audio-icon{
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }.tc-wp-tool-root .audio-play-btn{
            width: 44px;
            height: 44px;
            font-size: 1rem;
        }.tc-wp-tool-root .video-player-wrapper{
            max-width: min(280px, 75vw);
        }.tc-wp-tool-root .thumbnail-play-btn{
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }.tc-wp-tool-root .download-progress{
            left: 0.5rem;
            right: 0.5rem;
            bottom: 0.5rem;
            padding: 1rem;
        }.tc-wp-tool-root .progress-header{
            flex-direction: column;
            gap: 0.5rem;
            align-items: stretch;
        }.tc-wp-tool-root .cancel-btn{
            align-self: center;
            min-width: 80px;
        }.tc-wp-tool-root .input-field{
            font-size: 16px;
        }.tc-wp-tool-root .control-btn, .tc-wp-tool-root .audio-play-btn, .tc-wp-tool-root .audio-volume-btn, .tc-wp-tool-root .paste-btn, .tc-wp-tool-root .search-btn, .tc-wp-tool-root .download-btn, .tc-wp-tool-root .download-audio-btn{
            min-height: 44px;
            min-width: 44px;
        }.tc-wp-tool-root .progress-bar, .tc-wp-tool-root .audio-progress, .tc-wp-tool-root .volume-slider, .tc-wp-tool-root .audio-volume-slider{
            min-height: 44px;
        }.tc-wp-tool-root .search-btn{
	color: white;
	font-size: 1rem !important;
	font-weight: 700;
	cursor: pointer;
}}@media (max-width: 360px){.tc-wp-tool-root .container{
            padding: 0.5rem;
        }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming{
            padding: 1rem;
            border-radius: 16px;
        }.tc-wp-tool-root .logo-text{
            font-size: 1.5rem;
            letter-spacing: -1px;
        }.tc-wp-tool-root .subtitle{
            font-size: 0.8rem;
        }.tc-wp-tool-root .video-player-wrapper{
            max-width: min(260px, 70vw);
        }.tc-wp-tool-root .audio-wave:nth-child(1){
            width: 45px;
            height: 45px;
        }.tc-wp-tool-root .audio-wave:nth-child(2){
            width: 55px;
            height: 55px;
        }.tc-wp-tool-root .audio-wave:nth-child(3){
            width: 65px;
            height: 65px;
        }.tc-wp-tool-root .search-btn{
	color: white;
	font-size: 1rem !important;
	font-weight: 700;
	cursor: pointer;
}}@media (max-height: 500px) and (orientation: landscape){.tc-wp-tool-root .container{
            padding: 1rem;
        }.tc-wp-tool-root .header{
            margin-bottom: 1rem;
        }.tc-wp-tool-root .logo{
            flex-direction: row;
            gap: 1rem;
        }.tc-wp-tool-root .logo-icon{
            width: 40px;
            height: 40px;
            font-size: 16px;
        }.tc-wp-tool-root .video-player-wrapper{
            max-width: min(200px, 30vw);
        }.tc-wp-tool-root .video-stats{
            grid-template-columns: repeat(5, 1fr);
            gap: 0.5rem;
        }.tc-wp-tool-root .stat-item{
            min-height: 60px;
            padding: 0.5rem;
        }.tc-wp-tool-root .stat-value{
            font-size: 1rem;
        }.tc-wp-tool-root .stat-label{
            font-size: 0.6rem;
        }}@media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi){.tc-wp-tool-root .logo-icon, .tc-wp-tool-root .author-avatar, .tc-wp-tool-root .audio-icon, .tc-wp-tool-root .thumbnail-play-btn, .tc-wp-tool-root .audio-play-btn{
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }}@media (prefers-reduced-motion: reduce){.tc-wp-tool-root *, .tc-wp-tool-root *::before, .tc-wp-tool-root *::after{
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }.tc-wp-tool-root .video-player-wrapper, .tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming{
            animation: none !important;
        }}@media (prefers-contrast: high){.tc-wp-tool-root{
            --card-bg: rgba(0, 0, 0, 0.9);
            --card-accent: rgba(0, 0, 0, 0.9);
            --card-purple: rgba(0, 0, 0, 0.9);
            --card-pink: rgba(0, 0, 0, 0.9);
            --border-light: rgba(255, 255, 255, 0.8);
            --border-medium: rgba(255, 255, 255, 0.8);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.9);
            --shadow-xl: 0 16px 60px rgba(0, 0, 0, 1);
        }.tc-wp-tool-root .input-field, .tc-wp-tool-root .search-btn, .tc-wp-tool-root .download-btn, .tc-wp-tool-root .audio-play-btn{
            border: 2px solid var(--text-primary);
        }}@media (prefers-color-scheme: dark){.tc-wp-tool-root{
            background: linear-gradient(135deg,
                    #000000 0%,
                    var(--bg-primary) 25%,
                    var(--bg-secondary) 50%,
                    var(--card-blue) 75%,
                    var(--card-purple) 100%);
        }}@media print{.tc-wp-tool-root{
            background: white !important;
            color: black !important;
        }.tc-wp-tool-root .container{
            max-width: none;
            padding: 0;
        }.tc-wp-tool-root .video-player-wrapper, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming, .tc-wp-tool-root .download-progress{
            display: none !important;
        }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section{
            background: white !important;
            border: 1px solid black !important;
            box-shadow: none !important;
        }}.wpc-scope-64 .tc-wp-tool-root{
    --primary: #2563eb;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --tertiary: #ec4899;
    --quaternary: #f97316;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;
    --bg-gradient-1: linear-gradient(135deg, #08111f 0%, #10223a 30%, #1d2b68 60%, #4c1d95 100%);
    --bg-gradient-2: linear-gradient(135deg, #0f172a 0%, #172554 38%, #4338ca 70%, #86198f 100%);
    --bg-gradient-3: linear-gradient(135deg, #020617 0%, #1e3a8a 32%, #7c3aed 66%, #db2777 100%);
    --card-bg: rgba(15, 23, 42, 0.78);
    --card-accent: rgba(37, 99, 235, 0.18);
    --card-purple: rgba(124, 58, 237, 0.2);
    --card-pink: rgba(219, 39, 119, 0.18);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-accent: #bfdbfe;
    --text-purple: #ddd6fe;
    --text-pink: #fbcfe8;
    --text-blue: #93c5fd;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.18);
    --border-accent: rgba(139, 92, 246, 0.45);
    --shadow-sm: 0 4px 14px rgba(2, 6, 23, 0.2);
    --shadow-md: 0 12px 28px rgba(2, 6, 23, 0.28);
    --shadow-lg: 0 20px 45px rgba(2, 6, 23, 0.36);
    --shadow-xl: 0 30px 70px rgba(2, 6, 23, 0.45);
    --shadow-blue: 0 14px 34px rgba(37, 99, 235, 0.28);
    --shadow-purple: 0 14px 34px rgba(139, 92, 246, 0.3);
    --shadow-pink: 0 14px 34px rgba(236, 72, 153, 0.26);
    --glow-blue: 0 0 28px rgba(37, 99, 235, 0.46);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.48);
    --glow-pink: 0 0 28px rgba(236, 72, 153, 0.42);
    --transition-fast: 0.18s;
    --transition-medium: 0.35s;
    --transition-slow: 0.6s;
}.wpc-scope-64 .tc-wp-tool-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.wpc-scope-64 .tc-wp-tool-root .tiktok_body{
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient-1);
    background-size: 280% 280%;
    animation: gradientShift 22s ease infinite;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    line-height: 1.5;
}.wpc-scope-64 .tc-wp-tool-root .tiktok_body::before{
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.18) 0%, transparent 36%),
        radial-gradient(circle at 82% 20%, rgba(236, 72, 153, 0.14) 0%, transparent 38%),
        radial-gradient(circle at 50% 82%, rgba(139, 92, 246, 0.18) 0%, transparent 44%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 16s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .container_tiktok{
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px 22px;
    position: relative;
    z-index: 1;
}.wpc-scope-64 .tc-wp-tool-root .header{
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}.wpc-scope-64 .tc-wp-tool-root .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .logo-icon{
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, var(--primary), var(--accent) 54%, var(--tertiary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    color: white;
    box-shadow: var(--shadow-xl), var(--glow-purple);
    animation: logoFloat 4.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}.wpc-scope-64 .tc-wp-tool-root .logo-icon::before{
    content: '';
    position: absolute;
    top: -55%;
    left: -65%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    animation: logoShine 3.4s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .logo-text{
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.65rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, var(--secondary), #c084fc, #f472b6);
    background-size: 260% 260%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    animation: textGradient 4.5s ease infinite;
    filter: drop-shadow(0 8px 18px rgba(2, 6, 23, 0.4));
    text-align: center;
}.wpc-scope-64 .tc-wp-tool-root .subtitle{
    font-size: clamp(1rem, 2.4vw, 1.18rem);
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
    animation: subtitleGlow 3.6s ease-in-out infinite;
    text-align: center;
    padding: 0 1rem;
}.wpc-scope-64 .tc-wp-tool-root .search-section, .wpc-scope-64 .tc-wp-tool-root .loading, .wpc-scope-64 .tc-wp-tool-root .video-section{
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.58));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--border-medium);
    border-radius: 28px;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}.wpc-scope-64 .tc-wp-tool-root .search-section{
    padding: clamp(1.25rem, 3vw, 2.35rem);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.12s both;
}.wpc-scope-64 .tc-wp-tool-root .search-section::before, .wpc-scope-64 .tc-wp-tool-root .loading::before, .wpc-scope-64 .tc-wp-tool-root .video-section::before, .wpc-scope-64 .tc-wp-tool-root .video-streaming-area::after, .wpc-scope-64 .tc-wp-tool-root .download-section::before, .wpc-scope-64 .tc-wp-tool-root .audio-streaming::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), var(--tertiary), transparent);
    animation: borderFlow 3.4s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .input-group{
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
}.wpc-scope-64 .tc-wp-tool-root .input-field{
    width: 100% !important;
    padding: 1.15rem 1.35rem !important;
    background: rgba(2, 6, 23, 0.46) !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 18px !important;
    color: var(--text-primary) !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    transition: border-color var(--transition-medium) ease, box-shadow var(--transition-medium) ease, background var(--transition-medium) ease, transform var(--transition-medium) ease !important;
    outline: none !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 10px 28px rgba(2, 6, 23, 0.22) !important;
    position: relative !important;
}.wpc-scope-64 .tc-wp-tool-root .input-field::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(14, 165, 233, 0.1));
    border-radius: 18px;
    opacity: 0;
    transition: opacity var(--transition-medium) ease;
    pointer-events: none;
}.wpc-scope-64 .tc-wp-tool-root .input-field:focus{
    border-color: rgba(96, 165, 250, 0.88) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18), var(--glow-blue), inset 0 10px 28px rgba(2, 6, 23, 0.24) !important;
    background: rgba(15, 23, 42, 0.72) !important;
    transform: translateY(-2px);
    animation: inputFocusGlow 2.4s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .input-field:focus::before{
    opacity: 1;
}.wpc-scope-64 .tc-wp-tool-root .input-field::placeholder{
    color: rgba(203, 213, 225, 0.72);
    transition: color var(--transition-fast) ease;
    font-weight: 400;
}.wpc-scope-64 .tc-wp-tool-root .input-field:focus::placeholder{
    color: var(--text-accent);
    opacity: 0.86;
}.wpc-scope-64 .tc-wp-tool-root .input-actions{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.95rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
    gap: 0.75rem;
}.wpc-scope-64 .tc-wp-tool-root .paste-btn, .wpc-scope-64 .tc-wp-tool-root .search-btn, .wpc-scope-64 .tc-wp-tool-root .search-another-btn, .wpc-scope-64 .tc-wp-tool-root .download-btn, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn{
    color: white;
    border: 0;
    cursor: pointer;
    transition: transform var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition-medium) ease, filter var(--transition-medium) ease, background-position var(--transition-medium) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 750;
    position: relative;
    overflow: hidden;
    text-align: center;
}.wpc-scope-64 .tc-wp-tool-root .paste-btn{
    background: linear-gradient(135deg, var(--info), var(--secondary));
    padding: 0.72rem 1.25rem;
    border-radius: 14px;
    gap: 0.5rem;
    box-shadow: var(--shadow-md), var(--shadow-blue);
    font-size: 0.9rem;
    border: 1px solid rgba(125, 211, 252, 0.25);
    min-height: 44px;
}.wpc-scope-64 .tc-wp-tool-root .paste-btn::before, .wpc-scope-64 .tc-wp-tool-root .search-btn::before, .wpc-scope-64 .tc-wp-tool-root .search-another-btn::before, .wpc-scope-64 .tc-wp-tool-root .download-btn::before, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn::before, .wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transition: left var(--transition-medium) ease;
}.wpc-scope-64 .tc-wp-tool-root .paste-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .paste-btn:active::before, .wpc-scope-64 .tc-wp-tool-root .search-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .search-btn:active:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:active::before, .wpc-scope-64 .tc-wp-tool-root .download-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .download-btn:active:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:hover:not(:disabled)::before, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:active:not(:disabled)::before{
    left: 120%;
}.wpc-scope-64 .tc-wp-tool-root .paste-btn:hover, .wpc-scope-64 .tc-wp-tool-root .paste-btn:active, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:hover, .wpc-scope-64 .tc-wp-tool-root .search-another-btn:active, .wpc-scope-64 .tc-wp-tool-root .download-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-btn:active:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:active:not(:disabled){
    transform: translateY(-3px);
    filter: brightness(1.07);
}.wpc-scope-64 .tc-wp-tool-root .action-buttons{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    z-index: 2;
    position: relative;
}.wpc-scope-64 .tc-wp-tool-root .search-btn{
    background: linear-gradient(135deg, var(--primary), var(--accent) 52%, var(--tertiary));
    background-size: 220% 220%;
    padding: 1.15rem 2.3rem;
    border-radius: 18px;
    font-size: 1.08rem;
    gap: 0.75rem;
    min-height: 56px;
    animation: buttonPulse 4.2s ease-in-out infinite;
    border: 1px solid rgba(216, 180, 254, 0.28);
    width: 100%;
    box-shadow: var(--shadow-lg), var(--shadow-purple);
}.wpc-scope-64 .tc-wp-tool-root .search-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .search-btn:active:not(:disabled){
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--glow-purple);
    background-position: 100% 100%;
    animation: buttonHoverGlow 1.2s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .search-btn:disabled, .wpc-scope-64 .tc-wp-tool-root .download-btn:disabled, .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:disabled{
    opacity: 0.58;
    cursor: not-allowed;
    transform: none;
    animation: none;
}.wpc-scope-64 .tc-wp-tool-root .search-another-btn{
    background: linear-gradient(135deg, var(--accent), var(--primary));
    padding: 1rem 1.7rem;
    border-radius: 16px;
    gap: 0.55rem;
    min-height: 48px;
    width: 100%;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    font-size: 1rem;
    border: 1px solid rgba(167, 139, 250, 0.28);
}.wpc-scope-64 .tc-wp-tool-root .loading{
    display: none;
    text-align: center;
    padding: clamp(2rem, 6vw, 3.5rem) 2rem;
    margin: 2rem 0;
}.wpc-scope-64 .tc-wp-tool-root .loading-spinner{
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
}.wpc-scope-64 .tc-wp-tool-root .spinner-ring{
    position: absolute;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(1){
    width: 100%;
    height: 100%;
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    animation-duration: 2s;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.42);
}.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(2){
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    border-bottom-color: var(--accent);
    border-left-color: var(--accent);
    animation-duration: 1.5s;
    animation-direction: reverse;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.42);
}.wpc-scope-64 .tc-wp-tool-root .spinner-ring:nth-child(3){
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-top-color: var(--tertiary);
    animation-duration: 1s;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.42);
}.wpc-scope-64 .tc-wp-tool-root .loading-text{
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #60a5fa, #c084fc, #f472b6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
}.wpc-scope-64 .tc-wp-tool-root .loading-subtext{
    color: var(--text-secondary);
    font-size: 1rem;
    animation: textFade 2s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .video-section{
    display: none;
    animation: fadeInUp 0.8s ease-out;
    padding: clamp(1.25rem, 3vw, 2.25rem);
}.wpc-scope-64 .tc-wp-tool-root .author-section{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.35rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(236, 72, 153, 0.11), rgba(14, 165, 233, 0.13));
    border-radius: 20px;
    border: 1px solid rgba(167, 139, 250, 0.26);
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium) ease;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}.wpc-scope-64 .tc-wp-tool-root .author-section:hover, .wpc-scope-64 .tc-wp-tool-root .author-section:active, .wpc-scope-64 .tc-wp-tool-root .stat-item:hover, .wpc-scope-64 .tc-wp-tool-root .stat-item:active{
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}.wpc-scope-64 .tc-wp-tool-root .author-avatar{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2px;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    animation: avatarPulse 4s ease-in-out infinite;
    flex-shrink: 0;
}.wpc-scope-64 .tc-wp-tool-root .author-details{
    flex: 1;
    min-width: 0;
}.wpc-scope-64 .tc-wp-tool-root .author-details h3{
    font-size: 1.18rem;
    font-weight: 750;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-word;
}.wpc-scope-64 .tc-wp-tool-root .author-username{
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}.wpc-scope-64 .tc-wp-tool-root .video-title{
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--text-primary);
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 14px rgba(2, 6, 23, 0.4);
    word-break: break-word;
    padding: 0 1rem;
}.wpc-scope-64 .tc-wp-tool-root .video-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}.wpc-scope-64 .tc-wp-tool-root .stat-item{
    background: rgba(15, 23, 42, 0.62);
    padding: 1.15rem;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    min-height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}.wpc-scope-64 .tc-wp-tool-root .stat-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.26), transparent);
    transition: left var(--transition-medium);
}.wpc-scope-64 .tc-wp-tool-root .stat-item:hover::before, .wpc-scope-64 .tc-wp-tool-root .stat-item:active::before{
    left: 110%;
}.wpc-scope-64 .tc-wp-tool-root .stat-item.views{
    border-color: rgba(37, 99, 235, 0.42);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(15, 23, 42, 0.66));
}.wpc-scope-64 .tc-wp-tool-root .stat-item.likes{
    border-color: rgba(139, 92, 246, 0.42);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(15, 23, 42, 0.66));
}.wpc-scope-64 .tc-wp-tool-root .stat-item.comments{
    border-color: rgba(236, 72, 153, 0.42);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.13), rgba(15, 23, 42, 0.66));
}.wpc-scope-64 .tc-wp-tool-root .stat-item.shares{
    border-color: rgba(249, 115, 22, 0.42);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.13), rgba(15, 23, 42, 0.66));
}.wpc-scope-64 .tc-wp-tool-root .stat-item.duration{
    border-color: rgba(16, 185, 129, 0.42);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.13), rgba(15, 23, 42, 0.66));
}.wpc-scope-64 .tc-wp-tool-root .stat-value{
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: valueGlow 4s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .stat-label{
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}.wpc-scope-64 .tc-wp-tool-root .video-streaming-area, .wpc-scope-64 .tc-wp-tool-root .download-section, .wpc-scope-64 .tc-wp-tool-root .audio-streaming{
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}.wpc-scope-64 .tc-wp-tool-root .video-streaming-area{
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: clamp(1.15rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}.wpc-scope-64 .tc-wp-tool-root .video-streaming-area::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.65;
    pointer-events: none;
    z-index: 1;
    animation: gridMove 12s linear infinite;
}.wpc-scope-64 .tc-wp-tool-root .streaming-header{
    text-align: center;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 3;
}.wpc-scope-64 .tc-wp-tool-root .streaming-title{
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 4s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .streaming-subtitle{
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 500;
}.wpc-scope-64 .tc-wp-tool-root .video-player-wrapper{
    position: relative;
    width: 100%;
    max-width: min(390px, 92vw);
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-purple);
    background: #000;
    z-index: 3;
    border: 1px solid rgba(147, 197, 253, 0.34);
}.wpc-scope-64 .tc-wp-tool-root .video-thumbnail{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
    cursor: pointer;
    transition: transform var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
}.wpc-scope-64 .tc-wp-tool-root .video-thumbnail:hover, .wpc-scope-64 .tc-wp-tool-root .video-thumbnail:active{
    transform: scale(1.025);
}.wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay{
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    transition: all var(--transition-medium) ease;
    backdrop-filter: blur(2px);
}.wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay:hover, .wpc-scope-64 .tc-wp-tool-root .thumbnail-overlay:active{
    background: rgba(2, 6, 23, 0.56);
    backdrop-filter: blur(4px);
}.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 0;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--glow-purple);
    transition: transform var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition-medium) ease;
    position: relative;
    overflow: hidden;
    animation: playButtonPulse 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.24);
    min-height: 44px;
}.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:hover::before, .wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:active::before{
    left: 120%;
}.wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:hover, .wpc-scope-64 .tc-wp-tool-root .thumbnail-play-btn:active{
    transform: scale(1.12);
}.wpc-scope-64 .tc-wp-tool-root .video-player{
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    position: relative;
    z-index: 2;
    display: none;
}.wpc-scope-64 .tc-wp-tool-root .video-player.playing{
    display: block;
}.wpc-scope-64 .tc-wp-tool-root .video-controls{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(2, 6, 23, 0.94));
    padding: 1.45rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium) ease;
    z-index: 10;
    backdrop-filter: blur(12px);
}.wpc-scope-64 .tc-wp-tool-root .video-player-wrapper:hover .video-controls, .wpc-scope-64 .tc-wp-tool-root .video-controls.show{
    transform: translateY(0);
}.wpc-scope-64 .tc-wp-tool-root .progress-bar, .wpc-scope-64 .tc-wp-tool-root .volume-slider, .wpc-scope-64 .tc-wp-tool-root .audio-progress, .wpc-scope-64 .tc-wp-tool-root .audio-volume-slider{
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}.wpc-scope-64 .tc-wp-tool-root .progress-bar{
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin-bottom: 0.5rem;
    min-height: 20px;
}.wpc-scope-64 .tc-wp-tool-root .progress-fill{
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 999px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.52);
}.wpc-scope-64 .tc-wp-tool-root .video-time, .wpc-scope-64 .tc-wp-tool-root .audio-time{
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}.wpc-scope-64 .tc-wp-tool-root .video-time{
    margin-bottom: 1rem;
}.wpc-scope-64 .tc-wp-tool-root .control-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}.wpc-scope-64 .tc-wp-tool-root .control-group{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .control-btn, .wpc-scope-64 .tc-wp-tool-root .audio-volume-btn, .wpc-scope-64 .tc-wp-tool-root .audio-play-btn{
    border: 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast) ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}.wpc-scope-64 .tc-wp-tool-root .control-btn{
    background: rgba(255, 255, 255, 0.14);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 1rem;
    min-height: 44px;
    min-width: 44px;
}.wpc-scope-64 .tc-wp-tool-root .control-btn:hover, .wpc-scope-64 .tc-wp-tool-root .control-btn:active, .wpc-scope-64 .tc-wp-tool-root .audio-volume-btn:hover, .wpc-scope-64 .tc-wp-tool-root .audio-volume-btn:active{
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
}.wpc-scope-64 .tc-wp-tool-root .play-btn{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 1.35rem;
    border: 0;
    box-shadow: var(--shadow-lg), var(--glow-purple);
}.wpc-scope-64 .tc-wp-tool-root .volume-control{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .volume-slider, .wpc-scope-64 .tc-wp-tool-root .audio-volume-slider{
    width: 86px;
    height: 6px;
    border-radius: 999px;
    min-height: 20px;
}.wpc-scope-64 .tc-wp-tool-root .volume-slider{
    background: rgba(255, 255, 255, 0.2);
}.wpc-scope-64 .tc-wp-tool-root .volume-fill, .wpc-scope-64 .tc-wp-tool-root .audio-volume-fill{
    height: 100%;
    border-radius: 999px;
    width: 100%;
    transition: width 0.1s ease;
}.wpc-scope-64 .tc-wp-tool-root .volume-fill{
    background: linear-gradient(90deg, var(--info), var(--success));
    box-shadow: 0 0 9px rgba(14, 165, 233, 0.45);
}.wpc-scope-64 .tc-wp-tool-root .download-section{
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(16, 185, 129, 0.1), rgba(15, 23, 42, 0.68));
    border: 1px solid rgba(125, 211, 252, 0.28);
    padding: 1.45rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md), var(--shadow-blue);
}.wpc-scope-64 .tc-wp-tool-root .download-header, .wpc-scope-64 .tc-wp-tool-root .audio-header{
    text-align: center;
    margin-bottom: 1.2rem;
}.wpc-scope-64 .tc-wp-tool-root .download-title, .wpc-scope-64 .tc-wp-tool-root .audio-main-title{
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: titlePulse 4s ease-in-out infinite;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .download-title{
    background: linear-gradient(135deg, var(--info), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.wpc-scope-64 .tc-wp-tool-root .download-subtitle, .wpc-scope-64 .tc-wp-tool-root .audio-subtitle{
    color: var(--text-secondary);
    font-size: 0.9rem;
}.wpc-scope-64 .tc-wp-tool-root .download-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}.wpc-scope-64 .tc-wp-tool-root .download-btn{
    background: linear-gradient(135deg, var(--info), var(--secondary));
    padding: 1rem 1.35rem;
    border-radius: 16px;
    gap: 0.5rem;
    box-shadow: var(--shadow-md), var(--shadow-blue);
    font-size: 0.95rem;
    animation: buttonGlow 5s ease-in-out infinite;
    border: 1px solid rgba(125, 211, 252, 0.28);
    min-height: 48px;
}.wpc-scope-64 .tc-wp-tool-root .download-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-btn:active:not(:disabled){
    box-shadow: var(--shadow-lg), var(--glow-blue);
}.wpc-scope-64 .tc-wp-tool-root .download-btn.hd{
    background: linear-gradient(135deg, var(--warning), var(--quaternary));
    border-color: rgba(251, 146, 60, 0.35);
}.wpc-scope-64 .tc-wp-tool-root .download-btn.hd:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-btn.hd:active:not(:disabled){
    box-shadow: var(--shadow-lg), 0 0 30px rgba(249, 115, 22, 0.48);
}.wpc-scope-64 .tc-wp-tool-root .audio-streaming{
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(236, 72, 153, 0.1), rgba(15, 23, 42, 0.68));
    border: 1px solid rgba(167, 139, 250, 0.28);
    padding: 1.45rem;
    box-shadow: var(--shadow-md), var(--shadow-purple);
}.wpc-scope-64 .tc-wp-tool-root .audio-main-title{
    background: linear-gradient(135deg, var(--accent), var(--tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}.wpc-scope-64 .tc-wp-tool-root .audio-subtitle{
    margin-bottom: 1.2rem;
}.wpc-scope-64 .tc-wp-tool-root .audio-player-section{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}.wpc-scope-64 .tc-wp-tool-root .audio-icon-wrapper{
    position: relative;
    flex-shrink: 0;
}.wpc-scope-64 .tc-wp-tool-root .audio-icon{
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.18rem;
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    animation: audioIconPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(216, 180, 254, 0.32);
}.wpc-scope-64 .tc-wp-tool-root .audio-wave{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(167, 139, 250, 0.24);
    border-radius: 50%;
    animation: audioWaveRipple 2s ease-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(1){
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(2){
    width: 75px;
    height: 75px;
    animation-delay: 0.5s;
}.wpc-scope-64 .tc-wp-tool-root .audio-wave:nth-child(3){
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}.wpc-scope-64 .tc-wp-tool-root .audio-info{
    flex: 1;
    min-width: 0;
    text-align: center;
}.wpc-scope-64 .tc-wp-tool-root .audio-title{
    font-size: 1rem;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    word-break: break-word;
}.wpc-scope-64 .tc-wp-tool-root .audio-artist{
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    word-break: break-word;
}.wpc-scope-64 .tc-wp-tool-root .audio-progress-container{
    width: 100%;
    margin-bottom: 1rem;
}.wpc-scope-64 .tc-wp-tool-root .audio-progress{
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    margin-bottom: 0.5rem;
    min-height: 20px;
}.wpc-scope-64 .tc-wp-tool-root .audio-progress-fill{
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--tertiary));
    border-radius: 999px;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.42);
}.wpc-scope-64 .tc-wp-tool-root .audio-time{
    margin-bottom: 1rem;
}.wpc-scope-64 .tc-wp-tool-root .audio-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .audio-play-btn{
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--tertiary));
    border-radius: 50%;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    font-size: 1.18rem;
    animation: audioPlayPulse 4s ease-in-out infinite;
    border: 1px solid rgba(216, 180, 254, 0.3);
    min-height: 44px;
    min-width: 44px;
}.wpc-scope-64 .tc-wp-tool-root .audio-play-btn:hover, .wpc-scope-64 .tc-wp-tool-root .audio-play-btn:active{
    transform: scale(1.08);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}.wpc-scope-64 .tc-wp-tool-root .audio-volume-control{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .audio-volume-btn{
    background: rgba(139, 92, 246, 0.16);
    color: var(--text-purple);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.24);
    font-size: 1rem;
    min-height: 44px;
    min-width: 44px;
}.wpc-scope-64 .tc-wp-tool-root .audio-volume-slider{
    background: rgba(139, 92, 246, 0.22);
}.wpc-scope-64 .tc-wp-tool-root .audio-volume-fill{
    background: linear-gradient(90deg, var(--accent), var(--tertiary));
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.42);
}.wpc-scope-64 .tc-wp-tool-root .download-audio-section{
    text-align: center;
}.wpc-scope-64 .tc-wp-tool-root .download-audio-btn{
    background: linear-gradient(135deg, var(--accent), var(--primary));
    padding: 1rem 1.35rem;
    border-radius: 16px;
    gap: 0.5rem;
    box-shadow: var(--shadow-md), var(--shadow-purple);
    font-size: 0.95rem;
    animation: buttonGlow 5s ease-in-out infinite;
    border: 1px solid rgba(167, 139, 250, 0.3);
    min-height: 48px;
    width: 100%;
    max-width: 300px;
}.wpc-scope-64 .tc-wp-tool-root .download-audio-btn:hover:not(:disabled), .wpc-scope-64 .tc-wp-tool-root .download-audio-btn:active:not(:disabled){
    box-shadow: var(--shadow-lg), var(--glow-purple);
}.wpc-scope-64 .tc-wp-tool-root .download-progress{
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(22px);
    border: 1px solid var(--border-medium);
    border-radius: 18px;
    padding: 1.35rem 1.6rem;
    min-width: min(320px, 90vw);
    max-width: 90vw;
    box-shadow: var(--shadow-xl), var(--shadow-purple);
    z-index: 1000;
    display: none;
}.wpc-scope-64 .tc-wp-tool-root .download-progress.show{
    display: block;
    animation: slideInRight 0.4s ease-out;
}.wpc-scope-64 .tc-wp-tool-root .progress-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .progress-text{
    font-weight: 750;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex: 1;
    min-width: 0;
}.wpc-scope-64 .tc-wp-tool-root .cancel-btn{
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.34);
    color: #fca5a5;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    font-weight: 700;
    backdrop-filter: blur(10px);
    min-height: 36px;
    flex-shrink: 0;
}.wpc-scope-64 .tc-wp-tool-root .cancel-btn:hover, .wpc-scope-64 .tc-wp-tool-root .cancel-btn:active{
    background: rgba(239, 68, 68, 0.24);
    transform: scale(1.04);
}.wpc-scope-64 .tc-wp-tool-root .progress-bar-container{
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    overflow: hidden;
}.wpc-scope-64 .tc-wp-tool-root .progress-bar-fill{
    height: 100%;
    background: linear-gradient(90deg, var(--success), #34d399);
    border-radius: 999px;
    width: 0%;
    transition: width var(--transition-medium) ease;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.42);
    animation: progressGlow 3s ease-in-out infinite;
}.wpc-scope-64 .tc-wp-tool-root .error-message{
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.13), rgba(15, 23, 42, 0.72));
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
    padding: 1rem 1.35rem;
    border-radius: 16px;
    margin: 1rem 0 0;
    display: none;
    align-items: center;
    gap: 0.9rem;
    font-weight: 650;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    animation: errorShake 0.5s ease-in-out;
    font-size: 1rem;
    flex-wrap: wrap;
}.wpc-scope-64 .tc-wp-tool-root .error-message.show{
    display: flex;
    animation: fadeInUp 0.3s ease-out, errorShake 0.5s ease-in-out;
}.wpc-scope-64 .tc-wp-tool-root .fab{
    display: inline-block;
    font-style: normal;
    line-height: 1;
}.wpc-scope-64 .tc-wp-tool-root .fas{
    display: inline-block;
    font-style: normal;
    line-height: 1;
}.wpc-scope-64 .tc-wp-tool-root .fa-tiktok{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-paste{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-play-circle{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-search{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-exclamation-triangle{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-play{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-volume-up{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-volume-mute{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-expand{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-compress{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-download{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-hd-video{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root .fa-music{
    color: currentColor;
}.wpc-scope-64 .tc-wp-tool-root button:focus-visible, .wpc-scope-64 .tc-wp-tool-root .input-field:focus-visible{
    outline: 3px solid rgba(147, 197, 253, 0.55);
    outline-offset: 3px;
}@keyframes gradientShift{
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}@keyframes backgroundFloat{
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.85; transform: translateY(-10px); }
}@keyframes fadeInDown{
    from { opacity: 0; transform: translateY(-34px); }
    to { opacity: 1; transform: translateY(0); }
}@keyframes fadeInUp{
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: translateY(0); }
}@keyframes slideInRight{
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}@keyframes spin{
    to { transform: rotate(360deg); }
}@keyframes logoFloat{
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}@keyframes logoShine{
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}@keyframes textGradient{
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}@keyframes subtitleGlow{
    0%, 100% { text-shadow: 0 0 5px rgba(203, 213, 225, 0.24); }
    50% { text-shadow: 0 0 15px rgba(203, 213, 225, 0.48); }
}@keyframes borderFlow{
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}@keyframes inputFocusGlow{
    0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18), var(--glow-blue), inset 0 10px 28px rgba(2, 6, 23, 0.24); }
    50% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.24), var(--glow-purple), inset 0 10px 28px rgba(2, 6, 23, 0.24); }
}@keyframes buttonPulse{
    0%, 100% { box-shadow: var(--shadow-lg), var(--shadow-purple); }
    50% { box-shadow: var(--shadow-xl), var(--glow-purple); }
}@keyframes buttonHoverGlow{
    0%, 100% { filter: brightness(1.05); }
    50% { filter: brightness(1.18); }
}@keyframes textFade{
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}@keyframes avatarPulse{
    0%, 100% { box-shadow: var(--shadow-md), var(--shadow-purple); }
    50% { box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.56); }
}@keyframes valueGlow{
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.18); }
}@keyframes gridMove{
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}@keyframes titlePulse{
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.25); }
}@keyframes playButtonPulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}@keyframes buttonGlow{
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-lg); }
}@keyframes audioIconPulse{
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}@keyframes audioWaveRipple{
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}@keyframes audioPlayPulse{
    0%, 100% { box-shadow: var(--shadow-md), var(--shadow-purple); }
    50% { box-shadow: var(--shadow-lg), var(--glow-purple); }
}@keyframes progressGlow{
    0%, 100% { box-shadow: 0 0 12px rgba(16, 185, 129, 0.42); }
    50% { box-shadow: 0 0 22px rgba(16, 185, 129, 0.78); }
}@keyframes errorShake{
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}@media (max-width: 1024px){.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 64px 18px;
    }.tc-wp-tool-root .video-stats{
        grid-template-columns: repeat(3, 1fr);
    }.tc-wp-tool-root .download-grid, .tc-wp-tool-root .action-buttons{
        grid-template-columns: 1fr;
    }.tc-wp-tool-root .search-another-btn{
        width: 100%;
    }.tc-wp-tool-root .audio-player-section{
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }.tc-wp-tool-root .audio-controls{
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }.tc-wp-tool-root .audio-volume-control{
        justify-content: center;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: min(340px, 86vw);
    }}@media (max-width: 768px){.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 46px 14px;
    }.tc-wp-tool-root .header{
        margin-bottom: 2rem;
    }.tc-wp-tool-root .logo{
        flex-direction: column;
        gap: 1rem;
    }.tc-wp-tool-root .logo-icon{
        width: 62px;
        height: 62px;
        font-size: 24px;
        border-radius: 20px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section{
        border-radius: 22px;
    }.tc-wp-tool-root .video-stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }.tc-wp-tool-root .author-section{
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }.tc-wp-tool-root .download-progress{
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        min-width: auto;
    }.tc-wp-tool-root .control-buttons{
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }.tc-wp-tool-root .volume-control{
        order: 3;
        width: 100%;
        justify-content: center;
    }.tc-wp-tool-root .audio-controls{
        flex-direction: column;
        gap: 1rem;
    }.tc-wp-tool-root .audio-volume-control{
        width: 100%;
        justify-content: center;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: min(310px, 84vw);
    }.tc-wp-tool-root .video-controls{
        transform: translateY(0);
        position: relative;
        background: rgba(2, 6, 23, 0.88);
        margin-top: 1rem;
        border-radius: 14px;
    }.tc-wp-tool-root .video-player-wrapper:hover .video-controls{
        transform: translateY(0);
    }.tc-wp-tool-root .search-btn{
        color: white;
        font-size: 1rem !important;
        font-weight: 700;
        cursor: pointer;
    }}@media (max-width: 480px){.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 34px 10px;
    }.tc-wp-tool-root .header{
        margin-bottom: 1.5rem;
    }.tc-wp-tool-root .logo-icon{
        width: 52px;
        height: 52px;
        font-size: 20px;
        border-radius: 17px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming, .tc-wp-tool-root .video-streaming-area{
        padding: 1rem;
        border-radius: 18px;
    }.tc-wp-tool-root .input-actions{
        align-items: stretch;
    }.tc-wp-tool-root .paste-btn{
        width: 100%;
    }.tc-wp-tool-root .video-stats{
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }.tc-wp-tool-root .stat-item{
        min-height: 72px;
        padding: 0.85rem;
    }.tc-wp-tool-root .stat-value{
        font-size: 1.32rem;
    }.tc-wp-tool-root .audio-player-section{
        gap: 0.8rem;
    }.tc-wp-tool-root .audio-icon{
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }.tc-wp-tool-root .audio-play-btn{
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: min(285px, 82vw);
    }.tc-wp-tool-root .thumbnail-play-btn{
        width: 62px;
        height: 62px;
        font-size: 1.45rem;
    }.tc-wp-tool-root .download-progress{
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 1rem;
    }.tc-wp-tool-root .progress-header{
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }.tc-wp-tool-root .cancel-btn{
        align-self: center;
        min-width: 80px;
    }.tc-wp-tool-root .input-field{
        font-size: 16px !important;
    }.tc-wp-tool-root .control-btn, .tc-wp-tool-root .audio-play-btn, .tc-wp-tool-root .audio-volume-btn, .tc-wp-tool-root .paste-btn, .tc-wp-tool-root .search-btn, .tc-wp-tool-root .download-btn, .tc-wp-tool-root .download-audio-btn{
        min-height: 44px;
        min-width: 44px;
    }.tc-wp-tool-root .progress-bar, .tc-wp-tool-root .audio-progress, .tc-wp-tool-root .volume-slider, .tc-wp-tool-root .audio-volume-slider{
        min-height: 44px;
    }.tc-wp-tool-root .search-btn{
        color: white;
        font-size: 1rem !important;
        font-weight: 700;
        cursor: pointer;
    }}@media (max-width: 360px){.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 26px 8px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming{
        padding: 0.9rem;
        border-radius: 16px;
    }.tc-wp-tool-root .logo-text{
        font-size: 1.5rem;
        letter-spacing: 0;
    }.tc-wp-tool-root .subtitle{
        font-size: 0.82rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: min(260px, 78vw);
    }.tc-wp-tool-root .audio-wave:nth-child(1){
        width: 45px;
        height: 45px;
    }.tc-wp-tool-root .audio-wave:nth-child(2){
        width: 55px;
        height: 55px;
    }.tc-wp-tool-root .audio-wave:nth-child(3){
        width: 65px;
        height: 65px;
    }.tc-wp-tool-root .search-btn{
        color: white;
        font-size: 1rem !important;
        font-weight: 700;
        cursor: pointer;
    }}@media (max-height: 500px) and (orientation: landscape){.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 1rem;
    }.tc-wp-tool-root .header{
        margin-bottom: 1rem;
    }.tc-wp-tool-root .logo{
        flex-direction: row;
        gap: 1rem;
    }.tc-wp-tool-root .logo-icon{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: min(200px, 30vw);
    }.tc-wp-tool-root .video-stats{
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }.tc-wp-tool-root .stat-item{
        min-height: 60px;
        padding: 0.5rem;
    }.tc-wp-tool-root .stat-value{
        font-size: 1rem;
    }.tc-wp-tool-root .stat-label{
        font-size: 0.6rem;
    }}@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi){.tc-wp-tool-root .logo-icon, .tc-wp-tool-root .author-avatar, .tc-wp-tool-root .audio-icon, .tc-wp-tool-root .thumbnail-play-btn, .tc-wp-tool-root .audio-play-btn{
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }}@media (prefers-reduced-motion: reduce){.tc-wp-tool-root *, .tc-wp-tool-root *::before, .tc-wp-tool-root *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }.tc-wp-tool-root .video-player-wrapper, .tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming{
        animation: none !important;
    }}@media (prefers-contrast: high){.tc-wp-tool-root{
        --card-bg: rgba(0, 0, 0, 0.92);
        --card-accent: rgba(0, 0, 0, 0.92);
        --card-purple: rgba(0, 0, 0, 0.92);
        --card-pink: rgba(0, 0, 0, 0.92);
        --border-light: rgba(255, 255, 255, 0.82);
        --border-medium: rgba(255, 255, 255, 0.82);
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.9);
        --shadow-xl: 0 16px 60px rgba(0, 0, 0, 1);
    }.tc-wp-tool-root .input-field, .tc-wp-tool-root .search-btn, .tc-wp-tool-root .download-btn, .tc-wp-tool-root .audio-play-btn{
        border: 2px solid var(--text-primary);
    }}@media (prefers-color-scheme: dark){.tc-wp-tool-root{
        background: linear-gradient(135deg, #000000 0%, #0f172a 28%, #172554 58%, #4c1d95 100%);
    }}@media print{.tc-wp-tool-root{
        background: white !important;
        color: black !important;
    }.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        max-width: none;
        padding: 0;
    }.tc-wp-tool-root .video-player-wrapper, .tc-wp-tool-root .download-section, .tc-wp-tool-root .audio-streaming, .tc-wp-tool-root .download-progress{
        display: none !important;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .video-section{
        background: white !important;
        border: 1px solid black !important;
        box-shadow: none !important;
    }}.wpc-scope-64 /* tc-layout-guard: stay in page body flow — do not overlap theme header/nav */
.tc-wp-tool-root{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 0 !important;
}