@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.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;
}
.tc-wp-tool-root img,
.tc-wp-tool-root video,
.tc-wp-tool-root svg,
.tc-wp-tool-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-tool-root .wrapper{
            
            --brand-primary: #5b8def; 
            --brand-secondary: #6ee7e7; 
            --brand-accent: #a78bfa; 
            --brand-warm: #f59e0b; 

            
            --tiktok-pink: var(--brand-primary);
            --tiktok-blue: var(--brand-secondary);
            --tiktok-cyan: var(--brand-secondary);
            --tiktok-purple: var(--brand-accent);
            --tiktok-orange: var(--brand-warm);
            --tiktok-yellow: #ffe8a3;

            --ui-white: #ffffff;
            --ui-light: #f7f9fb;
            --ui-light-gray: #eef2f7;
            --ui-gray: #667085;
            --ui-dark-gray: #344054;
            --ui-text: #1f2937;
            --ui-text-light: #64748b;

            
            --gradient-primary: linear-gradient(135deg, #5b8def 0%, #a78bfa 60%, #6ee7e7 100%);
            --gradient-secondary: linear-gradient(135deg, #6ee7e7 0%, #5b8def 50%, #a78bfa 100%);
            --gradient-tiktok: linear-gradient(135deg, #5b8def 0%, #6ee7e7 25%, #a78bfa 60%, #5b8def 85%, #6ee7e7 100%);
            --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,249,251,0.9) 100%);
            --gradient-bg: radial-gradient(1200px 800px at 10% 10%, #e8f0ff 0%, #f3e8ff 35%, transparent 70%),
                            radial-gradient(1000px 700px at 90% 20%, #e6fffb 0%, #e8f0ff 35%, transparent 70%),
                            linear-gradient(180deg, #f6f9ff 0%, #f5f3ff 100%);

            
            --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.06);
            --shadow-md: 0 6px 18px rgba(16, 24, 40, 0.08);
            --shadow-lg: 0 10px 30px rgba(16, 24, 40, 0.12);
            --shadow-xl: 0 16px 40px rgba(16, 24, 40, 0.16);
            --shadow-pink: 0 8px 24px rgba(91, 141, 239, 0.3);
            --shadow-blue: 0 8px 24px rgba(110, 231, 231, 0.3);
            --shadow-purple: 0 8px 24px rgba(167, 139, 250, 0.3);
            --shadow-glow: 0 0 30px rgba(91, 141, 239, 0.35);

            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
        }.tc-wp-tool-root --tiktok-pink: #fe2c55;
            --tiktok-blue: #25f4ee;
            --tiktok-cyan: #00f2ea;
            --tiktok-purple: #8b5cf6;
            --tiktok-orange: #ff6b35;
            --tiktok-yellow: #ffd23f;

            
            --ui-white: #ffffff;
            --ui-light: #f8fafc;
            --ui-light-gray: #f1f5f9;
            --ui-gray: #64748b;
            --ui-dark-gray: #334155;
            --ui-text: #1e293b;
            --ui-text-light: #475569;

            
            --gradient-primary: linear-gradient(135deg, #fe2c55 0%, #ff6b35 50%, #ffd23f 100%);
            --gradient-secondary: linear-gradient(135deg, #25f4ee 0%, #8b5cf6 50%, #fe2c55 100%);
            --gradient-tiktok: linear-gradient(135deg, #00f2ea 0%, #25f4ee 25%, #8b5cf6 50%, #fe2c55 75%, #ff6b35 100%);
            --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
            --gradient-bg: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #fed7aa 50%, #fecaca 75%, #f3e8ff 100%);

            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
            --shadow-pink: 0 8px 24px rgba(254, 44, 85, 0.3);
            --shadow-blue: 0 8px 24px rgba(37, 244, 238, 0.3);
            --shadow-purple: 0 8px 24px rgba(139, 92, 246, 0.3);
            --shadow-glow: 0 0 30px rgba(254, 44, 85, 0.4);

            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
        }

        .wrapper *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }.tc-wp-tool-root .wrapper{
            background: var(--gradient-bg);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            color: var(--ui-text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }@keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }.tc-wp-tool-root .bg-wrapper{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }.tc-wp-tool-root .bg-pattern{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 25% 25%, rgba(254, 44, 85, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(37, 244, 238, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
        }.tc-wp-tool-root .floating-elements{
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }.tc-wp-tool-root .floating-shape{
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 15s infinite ease-in-out;
        }.tc-wp-tool-root .floating-shape:nth-child(1){
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--tiktok-pink), var(--tiktok-orange));
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }.tc-wp-tool-root .floating-shape:nth-child(2){
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--tiktok-blue), var(--tiktok-purple));
            top: 60%;
            right: 15%;
            animation-delay: 5s;
        }.tc-wp-tool-root .floating-shape:nth-child(3){
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--tiktok-yellow), var(--tiktok-pink));
            bottom: 30%;
            left: 20%;
            animation-delay: 10s;
        }@keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }.tc-wp-tool-root .wrapper .container{
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 24px;
            position: relative;
            z-index: 1;
        }.tc-wp-tool-root .wrapper .header{
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }.tc-wp-tool-root .logo-container{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }.tc-wp-tool-root .logo-icon{
            position: relative;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: var(--ui-white);
            z-index: 1;
            border-radius: var(--radius-lg);
            flex-shrink: 0;
        }.tc-wp-tool-root .logo-icon::before{
            content: '';
            position: absolute;
            inset: 0;
            background: var(--ui-white);
            border-radius: var(--radius-lg);
            z-index: -1;
            box-shadow: var(--shadow-lg);
        }.tc-wp-tool-root .logo-icon::after{
            content: '';
            position: absolute;
            inset: -3px;
            background: var(--gradient-tiktok);
            border-radius: calc(var(--radius-lg) + 3px);
            z-index: -2;
            animation: rotateBorder 4s linear infinite;
        }@keyframes rotateBorder {
            0% {
                filter: hue-rotate(0deg);
            }

            100% {
                filter: hue-rotate(360deg);
            }
        }.tc-wp-tool-root .logo-icon i{
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }.tc-wp-tool-root .logo-text-container{
            text-align: left;
        }.tc-wp-tool-root .logo-text{
            font-size: clamp(32px, 6vw, 42px);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            line-height: 1;
            margin-bottom: 5px;
        }.tc-wp-tool-root .logo-subtitle{
            font-size: clamp(14px, 3vw, 16px);
            font-weight: 600;
            color: var(--ui-text-light);
            margin: 0;
        }.tc-wp-tool-root .features-card{
            display: none;
        }.tc-wp-tool-root .feature-item{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 80px;
        }.tc-wp-tool-root .feature-item:hover{
            background: rgba(254, 44, 85, 0.1);
            transform: translateY(-3px);
            box-shadow: var(--shadow-sm);
        }.tc-wp-tool-root .feature-item i{
            font-size: 18px;
            color: var(--tiktok-pink);
            margin-bottom: 2px;
        }.tc-wp-tool-root .feature-item span{
            font-size: 11px;
            font-weight: 700;
            color: var(--ui-text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }.tc-wp-tool-root .search-section{
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 40px;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .search-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-tiktok);
        }.tc-wp-tool-root .input-container{
            position: relative;
            margin-bottom: 30px;
        }.tc-wp-tool-root .search-input{
            width: 100% !important;
            padding: 20px 24px  !important;
            background: var(--ui-white)  !important;
            color: var(--ui-text)  !important;
            border: 2px solid rgba(254, 44, 85, 0.2)  !important;
            border-radius: var(--radius-lg)  !important;
            font-size: 16px  !important;
            font-weight: 500  !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)  !important;
            box-shadow: var(--shadow-sm)  !important;
        }.tc-wp-tool-root .search-input:focus{
            outline: none  !important;
            border-color: var(--tiktok-pink)  !important;
            box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.1), var(--shadow-md)  !important;
            transform: translateY(-2px)  !important;
        }.tc-wp-tool-root .search-input::placeholder{
            color: var(--ui-gray);
        }.tc-wp-tool-root .paste-hint{
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            margin-top: 12px;
            font-size: 14px;
            color: var(--ui-text-light);
            font-weight: 500;
        }.tc-wp-tool-root .paste-icon{
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-full);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 16px;
            color: var(--ui-text-light);
            background: rgba(254, 44, 85, 0.1);
        }.tc-wp-tool-root .paste-icon:hover{
            background: var(--tiktok-pink);
            color: var(--ui-white);
            transform: scale(1.2) rotate(5deg);
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .search-box{
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }.tc-wp-tool-root .search-button{
            flex: 1;
            min-width: 200px;
            padding: 18px 24px;
            background: var(--gradient-primary);
            color: var(--ui-white);
            border: none;
            border-radius: var(--radius-lg);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-pink);
            text-transform: uppercase;
            letter-spacing: 1px;
        }.tc-wp-tool-root .search-button::before{
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(255, 255, 255, 0.3) 50%,
                    transparent 100%);
            transition: left 0.5s ease;
        }.tc-wp-tool-root .search-button:hover:not(:disabled){
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-pink), var(--shadow-glow);
        }.tc-wp-tool-root .search-button:hover:not(:disabled)::before{
            left: 100%;
        }.tc-wp-tool-root .search-button:disabled{
            opacity: 0.6;
            cursor: not-allowed;
        }.tc-wp-tool-root .search-again-btn{
            background: var(--gradient-secondary);
            color: var(--ui-white);
            margin-top: 20px;
            width: 100%;
            padding: 18px;
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }.tc-wp-tool-root .search-again-btn:hover{
            transform: translateY(-3px);
            box-shadow: var(--shadow-blue), 0 0 30px rgba(37, 244, 238, 0.4);
        }.tc-wp-tool-root .profile-section{
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-xl);
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .profile-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-tiktok);
        }.tc-wp-tool-root .profile-header{
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            align-items: center;
        }.tc-wp-tool-root .profile-avatar-container{
            position: relative;
            flex-shrink: 0;
        }.tc-wp-tool-root .profile-avatar{
            width: 120px;
            height: 120px;
            border-radius: var(--radius-full);
            object-fit: cover;
            border: 4px solid var(--ui-white);
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }.tc-wp-tool-root .profile-avatar::after{
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: var(--radius-full);
            background: var(--gradient-tiktok);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }.tc-wp-tool-root .profile-avatar:hover{
            transform: scale(1.05);
            box-shadow: var(--shadow-xl), var(--shadow-glow);
        }.tc-wp-tool-root .profile-avatar:hover::after{
            opacity: 1;
        }.tc-wp-tool-root .fullscreen-icon{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ui-white);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            z-index: 2;
            border: 2px solid var(--ui-white);
        }.tc-wp-tool-root .fullscreen-icon:hover{
            transform: scale(1.2);
            background: var(--gradient-secondary);
            box-shadow: var(--shadow-md);
        }.tc-wp-tool-root .profile-info{
            flex: 1;
        }.tc-wp-tool-root .profile-name{
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 8px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }.tc-wp-tool-root .profile-username{
            font-size: 18px;
            color: var(--ui-text-light);
            margin-bottom: 16px;
            font-weight: 600;
        }.tc-wp-tool-root .profile-bio{
            color: var(--ui-text);
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 16px;
            font-weight: 500;
        }.tc-wp-tool-root .profile-stats{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }.tc-wp-tool-root .stat-item{
            background: var(--ui-white);
            border: 2px solid rgba(254, 44, 85, 0.1);
            border-radius: var(--radius-lg);
            padding: 24px 20px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            cursor: pointer;
        }.tc-wp-tool-root .stat-item::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }.tc-wp-tool-root .stat-item:nth-child(1)::before{
            background: var(--gradient-primary);
        }.tc-wp-tool-root .stat-item:nth-child(2)::before{
            background: var(--gradient-secondary);
        }.tc-wp-tool-root .stat-item:nth-child(3)::before{
            background: linear-gradient(135deg, var(--tiktok-purple), var(--tiktok-pink));
        }.tc-wp-tool-root .stat-item:nth-child(4)::before{
            background: linear-gradient(135deg, var(--tiktok-orange), var(--tiktok-yellow));
        }.tc-wp-tool-root .stat-item:hover{
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: rgba(254, 44, 85, 0.3);
        }.tc-wp-tool-root .stat-item:hover::before{
            opacity: 1;
        }.tc-wp-tool-root .stat-value{
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }.tc-wp-tool-root .stat-label{
            font-size: 14px;
            color: var(--ui-text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }.tc-wp-tool-root .videos-section-header{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 2px solid rgba(254, 44, 85, 0.1);
        }.tc-wp-tool-root .videos-button{
            padding: 16px 28px;
            background: var(--gradient-primary);
            color: var(--ui-white);
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-pink);
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }.tc-wp-tool-root .videos-button:hover{
            transform: translateY(-3px);
            box-shadow: var(--shadow-pink), var(--shadow-glow);
        }.tc-wp-tool-root .videos-count{
            font-size: 16px;
            font-weight: 700;
            color: var(--ui-text);
            background: var(--ui-white);
            padding: 12px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 2px solid rgba(254, 44, 85, 0.1);
        }.tc-wp-tool-root .download-all-btn{
            padding: 16px 28px;
            background: var(--gradient-secondary);
            color: var(--ui-white);
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-blue);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0 !important;
        }.tc-wp-tool-root .download-all-btn:hover{
            transform: translateY(-3px);
            box-shadow: var(--shadow-blue), 0 0 30px rgba(37, 244, 238, 0.4);
        }.tc-wp-tool-root .download-all-btn:disabled{
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: var(--shadow-blue);
        }.tc-wp-tool-root .video-grid{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }.tc-wp-tool-root .video-card{
            background: var(--ui-white);
            border: 2px solid rgba(254, 44, 85, 0.1);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 380px;
            box-shadow: var(--shadow-md);
            cursor: pointer;
        }.tc-wp-tool-root .video-card:hover{
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-xl), 0 0 25px rgba(254, 44, 85, 0.15);
            border-color: rgba(254, 44, 85, 0.3);
        }.tc-wp-tool-root .video-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-tiktok);
            opacity: 0;
            transition: opacity 0.3s ease;
        }.tc-wp-tool-root .video-card:hover::before{
            opacity: 1;
        }.tc-wp-tool-root .video-thumbnail-container{
            position: relative;
            width: 100%;
            height: 260px;
            overflow: hidden;
        }.tc-wp-tool-root .video-thumbnail{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }.tc-wp-tool-root .video-card:hover .video-thumbnail{
            transform: scale(1.08);
        }.tc-wp-tool-root .play-overlay{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(254, 44, 85, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
            backdrop-filter: blur(15px);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            border: 3px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4);
        }.tc-wp-tool-root .play-overlay::after{
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
            transition: all 0.3s ease;
            filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
        }.tc-wp-tool-root .video-card:hover .play-overlay{
            transform: translate(-50%, -50%) scale(1.15);
            background: linear-gradient(135deg, rgba(37, 244, 238, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
            border-color: rgba(255, 255, 255, 1);
            box-shadow: 0 6px 25px rgba(37, 244, 238, 0.4);
        }.tc-wp-tool-root .video-download-btn{
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
            backdrop-filter: blur(15px);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tiktok-pink);
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            cursor: pointer;
            z-index: 10;
            border: 2px solid rgba(254, 44, 85, 0.2);
            box-shadow: 0 2px 12px rgba(254, 44, 85, 0.15);
        }.tc-wp-tool-root .video-download-btn:hover{
            background: var(--gradient-primary);
            color: var(--ui-white);
            transform: scale(1.15) rotate(10deg);
            border-color: var(--ui-white);
            box-shadow: 0 4px 16px rgba(254, 44, 85, 0.3);
        }.tc-wp-tool-root .video-info{
            padding: 18px;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
        }.tc-wp-tool-root .video-title{
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: var(--ui-text);
            line-height: 1.3;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }.tc-wp-tool-root .video-title:hover{
            color: var(--tiktok-pink);
        }.tc-wp-tool-root .title-tooltip{
            position: fixed;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            color: var(--ui-white);
            padding: 12px 20px;
            border-radius: var(--radius-lg);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            max-width: 400px;
            min-width: 200px;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.1);
            pointer-events: none;
            word-wrap: break-word;
            white-space: normal;
        }.tc-wp-tool-root .title-tooltip.show{
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }.tc-wp-tool-root .title-tooltip::before{
            content: '';
            position: absolute;
            top: -6px;
            left: 20px;
            width: 12px;
            height: 12px;
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: none;
            border-right: none;
            transform: rotate(45deg);
        }.tc-wp-tool-root .video-stats{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            font-size: 11px;
        }.tc-wp-tool-root .stat{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 8px 6px;
            border-radius: var(--radius-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--ui-text-light);
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .stat::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: var(--radius-sm);
        }.tc-wp-tool-root .stat:nth-child(1){
            background: rgba(254, 44, 85, 0.1);
            border: 1px solid rgba(254, 44, 85, 0.2);
        }.tc-wp-tool-root .stat:nth-child(1)::before{
            background: var(--gradient-primary);
        }.tc-wp-tool-root .stat:nth-child(1):hover{
            color: var(--ui-white);
            transform: scale(1.05);
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .stat:nth-child(2){
            background: rgba(37, 244, 238, 0.1);
            border: 1px solid rgba(37, 244, 238, 0.2);
        }.tc-wp-tool-root .stat:nth-child(2)::before{
            background: var(--gradient-secondary);
        }.tc-wp-tool-root .stat:nth-child(2):hover{
            color: var(--ui-white);
            transform: scale(1.05);
            box-shadow: var(--shadow-blue);
        }.tc-wp-tool-root .stat:nth-child(3){
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.2);
        }.tc-wp-tool-root .stat:nth-child(3)::before{
            background: linear-gradient(135deg, var(--tiktok-purple), var(--tiktok-pink));
        }.tc-wp-tool-root .stat:nth-child(3):hover{
            color: var(--ui-white);
            transform: scale(1.05);
            box-shadow: var(--shadow-purple);
        }.tc-wp-tool-root .stat:hover::before{
            opacity: 1;
        }.tc-wp-tool-root .stat i{
            font-size: 12px;
            transition: transform 0.3s ease;
        }.tc-wp-tool-root .stat:hover i{
            transform: scale(1.2);
        }.tc-wp-tool-root .modal{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            animation: fadeIn 0.3s ease-out;
            padding: 20px;
        }.tc-wp-tool-root .modal-content{
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }.tc-wp-tool-root .modal-title{
            color: var(--ui-white);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
            padding: 0 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }.tc-wp-tool-root .video-player-container{
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            background: #000;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }.tc-wp-tool-root .video-player{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }.tc-wp-tool-root .close-modal{
            position: absolute;
            top: 15px;
            right: -50px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-full);
            color: var(--ui-white);
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 20;
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .close-modal:hover{
            transform: rotate(90deg) scale(1.1);
            background: var(--gradient-secondary);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: var(--shadow-pink), var(--shadow-glow);
        }.tc-wp-tool-root .video-controls{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            flex-direction: column;
            gap: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }.tc-wp-tool-root .video-player-container:hover .video-controls{
            opacity: 1;
        }.tc-wp-tool-root .progress-container{
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-full);
            cursor: pointer;
            position: relative;
        }.tc-wp-tool-root .progress-bar{
            height: 100%;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            position: relative;
            transition: width 0.1s linear;
        }.tc-wp-tool-root .progress-bar::after{
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            width: 16px;
            height: 16px;
            background: var(--ui-white);
            border-radius: var(--radius-full);
            transition: transform 0.2s ease;
            box-shadow: var(--shadow-sm);
        }.tc-wp-tool-root .progress-container:hover .progress-bar::after{
            transform: translateY(-50%) scale(1);
        }.tc-wp-tool-root .control-buttons{
            display: flex;
            align-items: center;
            justify-content: space-between;
        }.tc-wp-tool-root .control-group{
            display: flex;
            align-items: center;
            gap: 12px;
        }.tc-wp-tool-root .control-button{
            width: 44px;
            height: 44px;
            border: none;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, 0.1);
            color: var(--ui-white);
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }.tc-wp-tool-root .control-button:hover{
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }.tc-wp-tool-root .play-pause{
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            font-size: 24px;
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .play-pause:hover{
            background: var(--gradient-secondary);
            box-shadow: var(--shadow-glow);
        }.tc-wp-tool-root .volume-controls{
            display: flex;
            align-items: center;
            gap: 10px;
        }.tc-wp-tool-root .volume-slider{
            width: 80px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-full);
            position: relative;
            cursor: pointer;
        }.tc-wp-tool-root .volume-fill{
            height: 100%;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            transition: width 0.1s ease;
        }.tc-wp-tool-root .loading{
            display: none;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            background: var(--gradient-card);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-xl);
            margin: 32px 0;
            box-shadow: var(--shadow-xl);
        }.tc-wp-tool-root .loading-content{
            text-align: center;
        }.tc-wp-tool-root .loading-animation{
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
        }.tc-wp-tool-root .loading-spinner{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--radius-full);
            border: 6px solid transparent;
            border-top: 6px solid var(--tiktok-pink);
            border-right: 6px solid var(--tiktok-blue);
            animation: spin 1.5s linear infinite;
        }.tc-wp-tool-root .loading-spinner::before{
            content: '';
            position: absolute;
            top: 6px;
            left: 6px;
            right: 6px;
            bottom: 6px;
            border-radius: var(--radius-full);
            border: 4px solid transparent;
            border-top: 4px solid var(--tiktok-blue);
            border-left: 4px solid var(--tiktok-purple);
            animation: spin 1s linear infinite reverse;
        }.tc-wp-tool-root .loading-spinner::after{
            content: '';
            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            bottom: 16px;
            border-radius: var(--radius-full);
            border: 3px solid transparent;
            border-bottom: 3px solid var(--tiktok-orange);
            animation: spin 1.25s linear infinite;
        }@keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }.tc-wp-tool-root .loading-text{
            font-size: 20px;
            font-weight: 700;
            color: var(--ui-text);
            margin-bottom: 8px;
        }.tc-wp-tool-root .loading-subtext{
            font-size: 14px;
            color: var(--ui-text-light);
            font-weight: 500;
        }.tc-wp-tool-root .profile-modal{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: none;
            animation: fadeIn 0.3s ease-out;
            padding: 20px;
        }.tc-wp-tool-root .profile-modal-content{
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }.tc-wp-tool-root .profile-modal-image{
            max-width: 80%;
            max-height: 80%;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
        }.tc-wp-tool-root .profile-modal-close{
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-full);
            color: var(--ui-white);
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 20;
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .profile-modal-close:hover{
            transform: rotate(90deg) scale(1.1);
            background: var(--gradient-secondary);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: var(--shadow-pink), var(--shadow-glow);
        }.tc-wp-tool-root .profile-modal-download{
            position: absolute;
            bottom: 20px;
            right: 20px;
            padding: 14px 24px;
            background: var(--gradient-primary);
            color: var(--ui-white);
            border: none;
            border-radius: var(--radius-lg);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-pink);
        }.tc-wp-tool-root .profile-modal-download:hover{
            transform: translateY(-3px);
            box-shadow: var(--shadow-pink), var(--shadow-glow);
        }.tc-wp-tool-root .download-progress{
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--ui-white);
            border: 2px solid rgba(254, 44, 85, 0.2);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            color: var(--ui-text);
            font-weight: 600;
            z-index: 1001;
            display: none;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-lg);
            min-width: 300px;
            backdrop-filter: blur(10px);
        }.tc-wp-tool-root .download-progress.show{
            display: flex;
        }.tc-wp-tool-root .download-spinner{
            width: 20px;
            height: 20px;
            border: 2px solid rgba(254, 44, 85, 0.2);
            border-top-color: var(--tiktok-pink);
            border-radius: var(--radius-full);
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }.tc-wp-tool-root .download-info{
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }.tc-wp-tool-root .download-text{
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }.tc-wp-tool-root .download-progress-bar{
            width: 100%;
            height: 4px;
            background: rgba(254, 44, 85, 0.2);
            border-radius: var(--radius-full);
            overflow: hidden;
        }.tc-wp-tool-root .download-progress-fill{
            height: 100%;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
            width: 0%;
            transition: width 0.3s ease;
        }.tc-wp-tool-root .cancel-download-btn{
            background: var(--gradient-primary);
            border: none;
            color: var(--ui-white);
            border-radius: var(--radius-md);
            padding: 8px 12px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }.tc-wp-tool-root .cancel-download-btn:hover{
            background: var(--gradient-secondary);
            transform: scale(1.05);
        }.tc-wp-tool-root .error-message{
            background: rgba(254, 44, 85, 0.1);
            border: 2px solid rgba(254, 44, 85, 0.3);
            color: var(--tiktok-pink);
            padding: 16px 20px;
            border-radius: var(--radius-lg);
            margin-top: 16px;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }@keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }@keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }@media (max-width: 1200px) {.tc-wp-tool-root .container{
                max-width: 1000px;
                padding: 30px 20px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 18px;
            }.tc-wp-tool-root .profile-header{
                gap: 25px;
            }.tc-wp-tool-root .profile-avatar{
                width: 110px;
                height: 110px;
            }.tc-wp-tool-root .profile-name{
                font-size: 28px;
            }.tc-wp-tool-root .videos-section-header{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(254, 44, 85, 0.1);
	flex-direction: column;
	gap: 20px;
}}@media (max-width: 992px) {.tc-wp-tool-root .container{
                max-width: 800px;
                padding: 25px 18px;
            }.tc-wp-tool-root .search-section{
                padding: 30px;
            }.tc-wp-tool-root .profile-section{
                padding: 30px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 16px;
            }.tc-wp-tool-root .video-card{
                height: 360px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 240px;
            }.tc-wp-tool-root .profile-stats{
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }.tc-wp-tool-root .stat-item{
                padding: 20px 16px;
            }.tc-wp-tool-root .stat-value{
                font-size: 24px;
            }.tc-wp-tool-root .videos-section-header{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(254, 44, 85, 0.1);
	flex-direction: column;
	gap: 20px;
}}@media (max-width: 768px) {.tc-wp-tool-root .container{
                padding: 20px 16px;
            }.tc-wp-tool-root .header{
                margin-bottom: 40px;
            }.tc-wp-tool-root .logo-container{
                flex-direction: column;
                gap: 15px;
            }.tc-wp-tool-root .logo-text-container{
                text-align: center;
            }.tc-wp-tool-root .logo-icon{
                width: 60px;
                height: 60px;
                font-size: 30px;
            }.tc-wp-tool-root .features-card{
                gap: 10px;
                padding: 12px 20px;
                flex-wrap: wrap;
                max-width: 400px;
            }.tc-wp-tool-root .feature-item{
                padding: 10px 12px;
                min-width: 70px;
            }.tc-wp-tool-root .feature-item i{
                font-size: 16px;
            }.tc-wp-tool-root .feature-item span{
                font-size: 10px;
            }.tc-wp-tool-root .search-section{
                padding: 25px 20px;
            }.tc-wp-tool-root .search-input{
                padding: 18px 20px;
                font-size: 15px;
            }.tc-wp-tool-root .search-button{
                padding: 16px 20px;
                font-size: 15px;
                min-width: 180px;
            }.tc-wp-tool-root .search-again-btn{
                padding: 16px 20px;
                font-size: 15px;
            }.tc-wp-tool-root .profile-header{
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 20px;
                margin-bottom: 30px;
            }.tc-wp-tool-root .profile-avatar{
                width: 100px;
                height: 100px;
            }.tc-wp-tool-root .profile-name{
                font-size: 24px;
            }.tc-wp-tool-root .profile-username{
                font-size: 16px;
            }.tc-wp-tool-root .profile-bio{
                font-size: 14px;
                text-align: center;
            }.tc-wp-tool-root .profile-stats{
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }.tc-wp-tool-root .stat-item{
                padding: 18px 14px;
            }.tc-wp-tool-root .stat-value{
                font-size: 22px;
            }.tc-wp-tool-root .stat-label{
                font-size: 12px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 16px;
            }.tc-wp-tool-root .video-card{
                height: 350px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 230px;
            }.tc-wp-tool-root .video-info{
                padding: 16px;
                height: 120px;
            }.tc-wp-tool-root .video-title{
                font-size: 12px;
                margin-bottom: 10px;
            }.tc-wp-tool-root .video-stats{
                gap: 6px;
            }.tc-wp-tool-root .stat{
                padding: 6px 4px;
                font-size: 10px;
            }.tc-wp-tool-root .stat i{
                font-size: 11px;
            }.tc-wp-tool-root .search-box{
                flex-direction: column;
                gap: 12px;
            }.tc-wp-tool-root .search-button{
                width: 100%;
                min-width: auto;
            }.tc-wp-tool-root .videos-section-header{
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
                margin-bottom: 25px;
            }.tc-wp-tool-root .videos-button{
                padding: 14px 24px;
                font-size: 16px;
            }.tc-wp-tool-root .download-all-btn{
                margin-left: 0;
                margin-top: 8px;
                padding: 14px 24px;
                font-size: 14px;
            }.tc-wp-tool-root .videos-count{
                font-size: 14px;
                padding: 10px 20px;
            }.tc-wp-tool-root .control-buttons{
                flex-wrap: wrap;
                gap: 12px;
            }.tc-wp-tool-root .volume-controls{
                order: 3;
                width: 100%;
                justify-content: center;
            }.tc-wp-tool-root .volume-slider{
                width: 60px;
            }.tc-wp-tool-root .close-modal{
                top: -60px;
                right: 10px;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }.tc-wp-tool-root .profile-modal-close{
                width: 45px;
                height: 45px;
                font-size: 20px;
            }.tc-wp-tool-root .profile-modal-download{
                padding: 12px 20px;
                font-size: 14px;
            }.tc-wp-tool-root .download-progress{
                left: 20px;
                right: 20px;
                width: auto;
                min-width: auto;
                padding: 14px 16px;
            }.tc-wp-tool-root .download-text{
                font-size: 13px;
            }.tc-wp-tool-root .cancel-download-btn{
                padding: 6px 10px;
                font-size: 11px;
            }.tc-wp-tool-root .title-tooltip{
                max-width: 280px;
                font-size: 13px;
                padding: 10px 16px;
            }.tc-wp-tool-root .modal-title{
                font-size: 16px;
                margin-bottom: 15px;
            }.tc-wp-tool-root .video-player-container{
                border-radius: var(--radius-lg);
            }.tc-wp-tool-root .video-controls{
                padding: 15px;
            }.tc-wp-tool-root .control-button{
                width: 40px;
                height: 40px;
                font-size: 16px;
            }.tc-wp-tool-root .play-pause{
                width: 50px;
                height: 50px;
                font-size: 20px;
            }.tc-wp-tool-root .videos-section-header{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(254, 44, 85, 0.1);
	flex-direction: column;
	gap: 20px;
}}@media (max-width: 640px) {.tc-wp-tool-root .container{
                padding: 15px 12px;
            }.tc-wp-tool-root .header{
                margin-bottom: 30px;
            }.tc-wp-tool-root .logo-text{
                font-size: 28px;
            }.tc-wp-tool-root .logo-subtitle{
                font-size: 14px;
            }.tc-wp-tool-root .features-card{
                padding: 10px 16px;
                gap: 8px;
            }.tc-wp-tool-root .feature-item{
                padding: 8px 10px;
                min-width: 60px;
            }.tc-wp-tool-root .feature-item i{
                font-size: 14px;
            }.tc-wp-tool-root .feature-item span{
                font-size: 9px;
            }.tc-wp-tool-root .search-section{
                padding: 20px 16px;
            }.tc-wp-tool-root .search-input{
                padding: 16px 18px;
                font-size: 14px;
            }.tc-wp-tool-root .paste-hint{
                font-size: 13px;
                margin-top: 10px;
            }.tc-wp-tool-root .paste-icon{
                padding: 6px;
                font-size: 14px;
            }.tc-wp-tool-root .search-button{
                padding: 14px 18px;
                font-size: 14px;
            }.tc-wp-tool-root .search-again-btn{
                padding: 14px 18px;
                font-size: 14px;
            }.tc-wp-tool-root .profile-section{
                padding: 20px 16px;
            }.tc-wp-tool-root .profile-avatar{
                width: 90px;
                height: 90px;
            }.tc-wp-tool-root .profile-name{
                font-size: 22px;
            }.tc-wp-tool-root .profile-username{
                font-size: 15px;
            }.tc-wp-tool-root .profile-bio{
                font-size: 13px;
            }.tc-wp-tool-root .profile-stats{
                gap: 10px;
            }.tc-wp-tool-root .stat-item{
                padding: 16px 12px;
            }.tc-wp-tool-root .stat-value{
                font-size: 20px;
            }.tc-wp-tool-root .stat-label{
                font-size: 11px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 12px;
            }.tc-wp-tool-root .video-card{
                height: 320px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 210px;
            }.tc-wp-tool-root .video-info{
                padding: 14px;
                height: 110px;
            }.tc-wp-tool-root .video-title{
                font-size: 11px;
                margin-bottom: 8px;
            }.tc-wp-tool-root .video-stats{
                gap: 4px;
            }.tc-wp-tool-root .stat{
                padding: 5px 3px;
                font-size: 9px;
            }.tc-wp-tool-root .stat i{
                font-size: 10px;
            }.tc-wp-tool-root .play-overlay{
                width: 50px;
                height: 50px;
            }.tc-wp-tool-root .play-overlay::after{
                border-left: 15px solid white;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }.tc-wp-tool-root .video-download-btn{
                width: 35px;
                height: 35px;
                font-size: 14px;
                top: 10px;
                right: 10px;
            }.tc-wp-tool-root .videos-button{
                padding: 12px 20px;
                font-size: 14px;
            }.tc-wp-tool-root .download-all-btn{
                padding: 12px 20px;
                font-size: 13px;
            }.tc-wp-tool-root .videos-count{
                font-size: 13px;
                padding: 8px 16px;
            }}@media (max-width: 480px) {.tc-wp-tool-root .container{
                padding: 12px 10px;
            }.tc-wp-tool-root .header{
                margin-bottom: 25px;
            }.tc-wp-tool-root .logo-text{
                font-size: 24px;
            }.tc-wp-tool-root .logo-subtitle{
                font-size: 13px;
            }.tc-wp-tool-root .features-card{
                padding: 8px 12px;
                gap: 6px;
                flex-wrap: wrap;
                justify-content: center;
            }.tc-wp-tool-root .feature-item{
                padding: 6px 8px;
                min-width: 55px;
            }.tc-wp-tool-root .feature-item i{
                font-size: 13px;
            }.tc-wp-tool-root .feature-item span{
                font-size: 8px;
            }.tc-wp-tool-root .search-section{
                padding: 16px 12px;
            }.tc-wp-tool-root .search-input{
                padding: 14px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .paste-hint{
                font-size: 12px;
                margin-top: 8px;
            }.tc-wp-tool-root .paste-icon{
                padding: 5px;
                font-size: 13px;
            }.tc-wp-tool-root .search-button{
                padding: 12px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .search-again-btn{
                padding: 12px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .profile-section{
                padding: 16px 12px;
            }.tc-wp-tool-root .profile-header{
                gap: 15px;
                margin-bottom: 25px;
            }.tc-wp-tool-root .profile-avatar{
                width: 80px;
                height: 80px;
            }.tc-wp-tool-root .profile-name{
                font-size: 20px;
            }.tc-wp-tool-root .profile-username{
                font-size: 14px;
            }.tc-wp-tool-root .profile-bio{
                font-size: 12px;
            }.tc-wp-tool-root .profile-stats{
                grid-template-columns: 1fr;
                gap: 8px;
            }.tc-wp-tool-root .stat-item{
                padding: 14px 10px;
            }.tc-wp-tool-root .stat-value{
                font-size: 18px;
            }.tc-wp-tool-root .stat-label{
                font-size: 10px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: 1fr;
                gap: 10px;
            }.tc-wp-tool-root .video-card{
                height: 300px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 190px;
            }.tc-wp-tool-root .video-info{
                padding: 12px;
                height: 110px;
            }.tc-wp-tool-root .video-title{
                font-size: 10px;
                margin-bottom: 6px;
            }.tc-wp-tool-root .video-stats{
                gap: 3px;
            }.tc-wp-tool-root .stat{
                padding: 4px 2px;
                font-size: 8px;
            }.tc-wp-tool-root .stat i{
                font-size: 9px;
            }.tc-wp-tool-root .play-overlay{
                width: 45px;
                height: 45px;
            }.tc-wp-tool-root .play-overlay::after{
                border-left: 12px solid white;
                border-top: 8px solid transparent;
                border-bottom: 8px solid transparent;
            }.tc-wp-tool-root .video-download-btn{
                width: 30px;
                height: 30px;
                font-size: 12px;
                top: 8px;
                right: 8px;
            }.tc-wp-tool-root .videos-section-header{
                gap: 8px;
                margin-bottom: 20px;
            }.tc-wp-tool-root .videos-button{
                padding: 10px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .download-all-btn{
                padding: 10px 16px;
                font-size: 12px;
            }.tc-wp-tool-root .videos-count{
                font-size: 12px;
                padding: 6px 12px;
            }.tc-wp-tool-root .close-modal{
                top: -50px;
                right: 5px;
                width: 40px;
                height: 40px;
                font-size: 18px;
            }.tc-wp-tool-root .profile-modal-close{
                width: 40px;
                height: 40px;
                font-size: 18px;
            }.tc-wp-tool-root .profile-modal-download{
                padding: 10px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .download-progress{
                left: 10px;
                right: 10px;
                padding: 12px 14px;
            }.tc-wp-tool-root .download-text{
                font-size: 12px;
            }.tc-wp-tool-root .cancel-download-btn{
                padding: 5px 8px;
                font-size: 10px;
            }.tc-wp-tool-root .title-tooltip{
                max-width: 250px;
                font-size: 12px;
                padding: 8px 12px;
            }.tc-wp-tool-root .modal-title{
                font-size: 14px;
                margin-bottom: 12px;
            }.tc-wp-tool-root .video-controls{
                padding: 12px;
            }.tc-wp-tool-root .control-button{
                width: 36px;
                height: 36px;
                font-size: 14px;
            }.tc-wp-tool-root .play-pause{
                width: 45px;
                height: 45px;
                font-size: 18px;
            }.tc-wp-tool-root .volume-slider{
                width: 50px;
            }.tc-wp-tool-root .loading{
                padding: 40px 20px;
            }.tc-wp-tool-root .loading-animation{
                width: 100px;
                height: 100px;
            }.tc-wp-tool-root .loading-text{
                font-size: 18px;
            }.tc-wp-tool-root .loading-subtext{
                font-size: 13px;
            }.tc-wp-tool-root .error-message{
                padding: 12px 16px;
                font-size: 13px;
            }.tc-wp-tool-root .videos-section-header{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(254, 44, 85, 0.1);
	flex-direction: column;
	gap: 20px;
}}@media (max-width: 360px) {.tc-wp-tool-root .container{
                padding: 10px 8px;
            }.tc-wp-tool-root .logo-text{
                font-size: 22px;
            }.tc-wp-tool-root .logo-subtitle{
                font-size: 12px;
            }.tc-wp-tool-root .features-card{
                padding: 6px 10px;
                gap: 4px;
            }.tc-wp-tool-root .feature-item{
                padding: 5px 6px;
                min-width: 50px;
            }.tc-wp-tool-root .feature-item i{
                font-size: 12px;
            }.tc-wp-tool-root .feature-item span{
                font-size: 7px;
            }.tc-wp-tool-root .search-section{
                padding: 12px 10px;
            }.tc-wp-tool-root .search-input{
                padding: 12px 14px;
                font-size: 12px;
            }.tc-wp-tool-root .search-button{
                padding: 10px 14px;
                font-size: 12px;
            }.tc-wp-tool-root .search-again-btn{
                padding: 10px 14px;
                font-size: 12px;
            }.tc-wp-tool-root .profile-section{
                padding: 12px 10px;
            }.tc-wp-tool-root .profile-avatar{
                width: 70px;
                height: 70px;
            }.tc-wp-tool-root .profile-name{
                font-size: 18px;
            }.tc-wp-tool-root .profile-username{
                font-size: 13px;
            }.tc-wp-tool-root .profile-bio{
                font-size: 11px;
            }.tc-wp-tool-root .video-card{
                height: 280px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 170px;
            }.tc-wp-tool-root .video-info{
                padding: 10px;
                height: 110px;
            }.tc-wp-tool-root .video-title{
                font-size: 9px;
            }.tc-wp-tool-root .stat{
                font-size: 7px;
            }.tc-wp-tool-root .stat i{
                font-size: 8px;
            }.tc-wp-tool-root .play-overlay{
                width: 40px;
                height: 40px;
            }.tc-wp-tool-root .play-overlay::after{
                border-left: 10px solid white;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
            }.tc-wp-tool-root .video-download-btn{
                width: 28px;
                height: 28px;
                font-size: 11px;
            }.tc-wp-tool-root .videos-button{
                padding: 8px 14px;
                font-size: 12px;
            }.tc-wp-tool-root .download-all-btn{
                padding: 8px 14px;
                font-size: 11px;
            }.tc-wp-tool-root .videos-count{
                font-size: 11px;
                padding: 5px 10px;
            }.tc-wp-tool-root .title-tooltip{
                max-width: 220px;
                font-size: 11px;
            }.tc-wp-tool-root .modal-title{
                font-size: 13px;
            }.tc-wp-tool-root .control-button{
                width: 32px;
                height: 32px;
                font-size: 13px;
            }.tc-wp-tool-root .play-pause{
                width: 40px;
                height: 40px;
                font-size: 16px;
            }.tc-wp-tool-root .videos-section-header{
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid rgba(254, 44, 85, 0.1);
	flex-direction: column;
	gap: 20px;
}}@media (max-height: 500px) and (orientation: landscape) {.tc-wp-tool-root .container{
                padding: 10px 15px;
            }.tc-wp-tool-root .header{
                margin-bottom: 20px;
            }.tc-wp-tool-root .logo-container{
                flex-direction: row;
                gap: 15px;
            }.tc-wp-tool-root .logo-text{
                font-size: 20px;
            }.tc-wp-tool-root .logo-subtitle{
                font-size: 12px;
            }.tc-wp-tool-root .features-card{
                padding: 8px 16px;
                gap: 8px;
                flex-wrap: nowrap;
            }.tc-wp-tool-root .search-section{
                padding: 15px 20px;
            }.tc-wp-tool-root .profile-header{
                flex-direction: row;
                gap: 15px;
                margin-bottom: 20px;
            }.tc-wp-tool-root .profile-avatar{
                width: 60px;
                height: 60px;
            }.tc-wp-tool-root .profile-name{
                font-size: 18px;
            }.tc-wp-tool-root .profile-username{
                font-size: 12px;
            }.tc-wp-tool-root .profile-bio{
                font-size: 11px;
            }.tc-wp-tool-root .profile-stats{
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }.tc-wp-tool-root .stat-item{
                padding: 10px 8px;
            }.tc-wp-tool-root .stat-value{
                font-size: 16px;
            }.tc-wp-tool-root .stat-label{
                font-size: 9px;
            }.tc-wp-tool-root .video-grid{
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 10px;
            }.tc-wp-tool-root .video-card{
                height: 250px;
            }.tc-wp-tool-root .video-thumbnail-container{
                height: 160px;
            }.tc-wp-tool-root .video-info{
                padding: 8px;
                height: 90px;
            }.tc-wp-tool-root .video-title{
                font-size: 9px;
                margin-bottom: 4px;
            }.tc-wp-tool-root .video-stats{
                gap: 2px;
            }.tc-wp-tool-root .stat{
                padding: 3px 2px;
                font-size: 7px;
            }.tc-wp-tool-root .stat i{
                font-size: 8px;
            }.tc-wp-tool-root .play-overlay{
                width: 35px;
                height: 35px;
            }.tc-wp-tool-root .play-overlay::after{
                border-left: 8px solid white;
                border-top: 5px solid transparent;
                border-bottom: 5px solid transparent;
            }.tc-wp-tool-root .video-download-btn{
                width: 25px;
                height: 25px;
                font-size: 10px;
            }.tc-wp-tool-root .videos-section-header{
                flex-direction: row;
                gap: 10px;
                margin-bottom: 15px;
            }.tc-wp-tool-root .videos-button{
                padding: 8px 12px;
                font-size: 11px;
            }.tc-wp-tool-root .download-all-btn{
                padding: 8px 12px;
                font-size: 10px;
                margin-left: 8px;
                margin-top: 0 !;
            }.tc-wp-tool-root .videos-count{
                font-size: 10px;
                padding: 4px 8px;
            }}@media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {.tc-wp-tool-root .video-thumbnail{
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }.tc-wp-tool-root .profile-avatar{
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }}@media (prefers-reduced-motion: reduce) {.tc-wp-tool-root *{
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }.tc-wp-tool-root .floating-shape{
                animation: none;
            }.tc-wp-tool-root .logo-icon::after{
                animation: none;
            }.tc-wp-tool-root .loading-spinner, .tc-wp-tool-root .loading-spinner::before, .tc-wp-tool-root .loading-spinner::after{
                animation: none;
            }.tc-wp-tool-root .download-spinner{
                animation: none;
            }}@media (prefers-color-scheme: dark) {.tc-wp-tool-root .search-input::placeholder{
                color: rgba(100, 116, 139, 0.7);
            }.tc-wp-tool-root .title-tooltip{
                background: rgba(0, 0, 0, 0.95);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }.tc-wp-tool-root .title-tooltip::before{
                background: rgba(0, 0, 0, 0.95);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }}.tc-wp-tool-root .wrapper{
    --brand-primary: #2563eb;
    --brand-secondary: #06b6d4;
    --brand-accent: #7c3aed;
    --brand-warm: #f59e0b;
    --brand-danger: #ef4444;
    --brand-success: #10b981;

    --tiktok-pink: var(--brand-primary);
    --tiktok-blue: var(--brand-secondary);
    --tiktok-cyan: #22d3ee;
    --tiktok-purple: var(--brand-accent);
    --tiktok-orange: var(--brand-warm);
    --tiktok-yellow: #fde68a;

    --ui-white: #ffffff;
    --ui-light: #f8fafc;
    --ui-light-gray: #e5edf8;
    --ui-gray: #64748b;
    --ui-dark-gray: #334155;
    --ui-text: #0f172a;
    --ui-text-light: #475569;
    --ui-border: rgba(148, 163, 184, 0.24);
    --ui-glass: rgba(255, 255, 255, 0.78);

    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 55%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #2563eb 48%, #7c3aed 100%);
    --gradient-tiktok: linear-gradient(135deg, #22d3ee 0%, #2563eb 30%, #7c3aed 68%, #f59e0b 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 100%);
    --gradient-bg: radial-gradient(900px 520px at 8% 4%, rgba(37, 99, 235, 0.18), transparent 62%),
                   radial-gradient(820px 540px at 92% 16%, rgba(6, 182, 212, 0.16), transparent 58%),
                   radial-gradient(720px 520px at 50% 100%, rgba(124, 58, 237, 0.14), transparent 60%),
                   linear-gradient(180deg, #f8fbff 0%, #eef4ff 52%, #f8fafc 100%);

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.09);
    --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.13);
    --shadow-xl: 0 28px 70px rgba(15, 23, 42, 0.18);
    --shadow-pink: 0 14px 32px rgba(37, 99, 235, 0.26);
    --shadow-blue: 0 14px 32px rgba(6, 182, 212, 0.24);
    --shadow-purple: 0 14px 32px rgba(124, 58, 237, 0.24);
    --shadow-glow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 18px 48px rgba(37, 99, 235, 0.28);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    background: var(--gradient-bg);
    background-size: 160% 160%;
    animation: gradientShift 24s ease infinite;
    color: var(--ui-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}.tc-wp-tool-root .wrapper *, .tc-wp-tool-root .wrapper *::before, .tc-wp-tool-root .wrapper *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}.tc-wp-tool-root .wrapper i, .tc-wp-tool-root .wrapper .fas, .tc-wp-tool-root .wrapper .fab{
    display: inline-block;
    font-style: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}.tc-wp-tool-root .wrapper .fas{
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome, sans-serif;
    font-weight: 900;
}.tc-wp-tool-root .wrapper .fab{
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", FontAwesome, sans-serif;
    font-weight: 400;
}.tc-wp-tool-root .fa-comment, .tc-wp-tool-root .fa-download, .tc-wp-tool-root .fa-exclamation-triangle, .tc-wp-tool-root .fa-expand, .tc-wp-tool-root .fa-eye, .tc-wp-tool-root .fa-heart, .tc-wp-tool-root .fa-paste, .tc-wp-tool-root .fa-play, .tc-wp-tool-root .fa-search, .tc-wp-tool-root .fa-share, .tc-wp-tool-root .fa-spin, .tc-wp-tool-root .fa-spinner, .tc-wp-tool-root .fa-stop, .tc-wp-tool-root .fa-tiktok, .tc-wp-tool-root .fa-times, .tc-wp-tool-root .fa-user, .tc-wp-tool-root .fa-video, .tc-wp-tool-root .fa-volume-up{
    width: 1em;
    min-width: 1em;
    text-align: center;
}.tc-wp-tool-root .fa-spin, .tc-wp-tool-root .fa-spinner{
    animation: spin 1s linear infinite;
}@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}.tc-wp-tool-root .bg-wrapper{
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}.tc-wp-tool-root .bg-pattern{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}.tc-wp-tool-root .floating-elements{
    position: absolute;
    inset: 0;
    overflow: hidden;
}.tc-wp-tool-root .floating-shape{
    position: absolute;
    border-radius: 50%;
    opacity: 0.42;
    filter: blur(1px);
    animation: float 16s infinite ease-in-out;
}.tc-wp-tool-root .floating-shape:nth-child(1){
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.34), rgba(6, 182, 212, 0.22));
    top: 14%;
    left: 8%;
}.tc-wp-tool-root .floating-shape:nth-child(2){
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(6, 182, 212, 0.28), rgba(124, 58, 237, 0.24));
    top: 58%;
    right: 10%;
    animation-delay: 5s;
}.tc-wp-tool-root .floating-shape:nth-child(3){
    width: 86px;
    height: 86px;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.25), rgba(37, 99, 235, 0.2));
    bottom: 24%;
    left: 18%;
    animation-delay: 10s;
}@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -24px, 0) rotate(160deg);
    }
}.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}.tc-wp-tool-root .wrapper .header, .tc-wp-tool-root .header{
    text-align: center;
    margin-bottom: 42px;
    position: relative;
}.tc-wp-tool-root .logo-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 18px;
}.tc-wp-tool-root .logo-icon{
    position: relative;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--ui-white);
    z-index: 1;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}.tc-wp-tool-root .logo-icon::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    z-index: -1;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}.tc-wp-tool-root .logo-icon::after{
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-tiktok);
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -2;
    animation: rotateBorder 5s linear infinite;
}@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}.tc-wp-tool-root .logo-icon i{
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .logo-text-container{
    text-align: left;
    max-width: 880px;
}.tc-wp-tool-root .logo-text{
    font-size: clamp(30px, 4.8vw, 54px);
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 45%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 8px;
}.tc-wp-tool-root .logo-subtitle{
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 600;
    color: var(--ui-text-light);
    margin: 0;
}.tc-wp-tool-root .features-card{
    display: none;
}.tc-wp-tool-root .feature-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
    cursor: pointer;
    min-width: 80px;
}.tc-wp-tool-root .feature-item:hover{
    background: rgba(37, 99, 235, 0.09);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .feature-item i{
    font-size: 18px;
    color: var(--tiktok-pink);
    margin-bottom: 2px;
}.tc-wp-tool-root .feature-item span{
    font-size: 11px;
    font-weight: 800;
    color: var(--ui-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .loading{
    background: var(--gradient-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .search-section{
    padding: 42px;
    margin-bottom: 42px;
}.tc-wp-tool-root .search-section::before, .tc-wp-tool-root .profile-section::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--gradient-tiktok);
}.tc-wp-tool-root .search-section::after, .tc-wp-tool-root .profile-section::after{
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -110px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 65%);
    pointer-events: none;
}.tc-wp-tool-root .input-container{
    position: relative;
    margin-bottom: 28px;
}.tc-wp-tool-root .search-input{
    width: 100% !important;
    min-height: 64px !important;
    padding: 20px 24px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: var(--ui-text) !important;
    border: 1px solid rgba(37, 99, 235, 0.24) !important;
    border-radius: var(--radius-lg) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}.tc-wp-tool-root .search-input:focus{
    outline: none !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.13), var(--shadow-md) !important;
    transform: translateY(-1px) !important;
}.tc-wp-tool-root .search-input::placeholder{
    color: #7c8aa0;
    font-weight: 500;
}.tc-wp-tool-root .paste-hint{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--ui-text-light);
    font-weight: 600;
}.tc-wp-tool-root .paste-icon{
    cursor: pointer;
    width: 34px;
    height: 34px;
    padding: 9px;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.14);
}.tc-wp-tool-root .paste-icon:hover{
    background: var(--gradient-primary);
    color: var(--ui-white);
    transform: translateY(-2px) scale(1.08);
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .search-box{
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}.tc-wp-tool-root .search-button, .tc-wp-tool-root .search-again-btn, .tc-wp-tool-root .videos-button, .tc-wp-tool-root .download-all-btn, .tc-wp-tool-root .profile-modal-download, .tc-wp-tool-root .cancel-download-btn{
    border: none;
    color: var(--ui-white);
    cursor: pointer;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}.tc-wp-tool-root .search-button{
    flex: 1;
    min-width: 200px;
    padding: 19px 26px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 16px;
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .search-button::before, .tc-wp-tool-root .search-again-btn::before, .tc-wp-tool-root .videos-button::before, .tc-wp-tool-root .download-all-btn::before, .tc-wp-tool-root .profile-modal-download::before, .tc-wp-tool-root .cancel-download-btn::before, .tc-wp-tool-root .btn-ripple::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}.tc-wp-tool-root .search-button:hover:not(:disabled), .tc-wp-tool-root .search-again-btn:hover, .tc-wp-tool-root .videos-button:hover, .tc-wp-tool-root .download-all-btn:hover:not(:disabled), .tc-wp-tool-root .profile-modal-download:hover{
    transform: translateY(-3px);
    filter: saturate(1.08);
    box-shadow: var(--shadow-glow);
}.tc-wp-tool-root .search-button:hover:not(:disabled)::before, .tc-wp-tool-root .search-again-btn:hover::before, .tc-wp-tool-root .videos-button:hover::before, .tc-wp-tool-root .download-all-btn:hover::before, .tc-wp-tool-root .profile-modal-download:hover::before, .tc-wp-tool-root .cancel-download-btn:hover::before, .tc-wp-tool-root .btn-ripple:hover::before{
    left: 140%;
}.tc-wp-tool-root .search-button:active, .tc-wp-tool-root .search-again-btn:active, .tc-wp-tool-root .videos-button:active, .tc-wp-tool-root .download-all-btn:active, .tc-wp-tool-root .profile-modal-download:active{
    transform: translateY(-1px) scale(0.99);
}.tc-wp-tool-root .search-button:focus-visible, .tc-wp-tool-root .search-again-btn:focus-visible, .tc-wp-tool-root .videos-button:focus-visible, .tc-wp-tool-root .download-all-btn:focus-visible, .tc-wp-tool-root .profile-modal-download:focus-visible, .tc-wp-tool-root .cancel-download-btn:focus-visible, .tc-wp-tool-root .control-button:focus-visible, .tc-wp-tool-root .close-modal:focus-visible, .tc-wp-tool-root .profile-modal-close:focus-visible{
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 3px;
}.tc-wp-tool-root .search-button:disabled, .tc-wp-tool-root .download-all-btn:disabled{
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(0.15);
}.tc-wp-tool-root .search-again-btn{
    background: var(--gradient-secondary);
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    box-shadow: var(--shadow-blue);
}.tc-wp-tool-root .results-container{
    width: 100%;
    animation: fadeInUp 0.45s ease both;
}.tc-wp-tool-root .profile-section{
    padding: 40px;
    margin-bottom: 42px;
}.tc-wp-tool-root .profile-header{
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    align-items: center;
}.tc-wp-tool-root .profile-avatar-container{
    position: relative;
    flex-shrink: 0;
}.tc-wp-tool-root .profile-avatar{
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 5px solid var(--ui-white);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}.tc-wp-tool-root .profile-avatar::after{
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-full);
    background: var(--gradient-tiktok);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s ease;
}.tc-wp-tool-root .profile-avatar:hover{
    transform: scale(1.04);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}.tc-wp-tool-root .profile-avatar:hover::after{
    opacity: 1;
}.tc-wp-tool-root .fullscreen-icon{
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ui-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    border: 2px solid var(--ui-white);
}.tc-wp-tool-root .fullscreen-icon:hover{
    transform: scale(1.12);
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .profile-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .profile-name{
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0f172a, #2563eb 52%, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .profile-username{
    font-size: 18px;
    color: var(--ui-text-light);
    margin-bottom: 16px;
    font-weight: 700;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .profile-bio{
    color: var(--ui-text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 500;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .profile-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}.tc-wp-tool-root .stat-item{
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--ui-border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}.tc-wp-tool-root .stat-item::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.25s ease;
}.tc-wp-tool-root .stat-item:nth-child(1)::before{
    background: var(--gradient-primary);
}.tc-wp-tool-root .stat-item:nth-child(2)::before{
    background: var(--gradient-secondary);
}.tc-wp-tool-root .stat-item:nth-child(3)::before{
    background: linear-gradient(135deg, var(--tiktok-purple), var(--tiktok-pink));
}.tc-wp-tool-root .stat-item:nth-child(4)::before{
    background: linear-gradient(135deg, var(--tiktok-orange), var(--tiktok-yellow));
}.tc-wp-tool-root .stat-item:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.28);
}.tc-wp-tool-root .stat-item:hover::before{
    opacity: 1;
}.tc-wp-tool-root .stat-value{
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .stat-label{
    font-size: 13px;
    color: var(--ui-text-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}.tc-wp-tool-root .videos-section-header{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.16);
}.tc-wp-tool-root .videos-section-header > div:first-child{
    flex-wrap: wrap;
}.tc-wp-tool-root .videos-button{
    padding: 15px 26px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 17px;
    box-shadow: var(--shadow-pink);
    display: flex;
    align-items: center;
    gap: 12px;
}.tc-wp-tool-root .videos-count{
    font-size: 15px;
    font-weight: 800;
    color: var(--ui-text);
    background: rgba(255, 255, 255, 0.84);
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ui-border);
    white-space: nowrap;
}.tc-wp-tool-root .download-all-btn{
    padding: 15px 26px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    font-size: 15px;
    box-shadow: var(--shadow-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
    margin-top: 0 !important;
}.tc-wp-tool-root .video-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 22px;
}.tc-wp-tool-root .video-card{
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--ui-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 380px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}.tc-wp-tool-root .video-card:hover{
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.28);
}.tc-wp-tool-root .video-card::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--gradient-tiktok);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 3;
}.tc-wp-tool-root .video-card:hover::before{
    opacity: 1;
}.tc-wp-tool-root .video-thumbnail-container{
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #e2e8f0;
}.tc-wp-tool-root .video-thumbnail{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}.tc-wp-tool-root .video-card:hover .video-thumbnail{
    transform: scale(1.06);
}.tc-wp-tool-root .play-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(124, 58, 237, 0.92));
    backdrop-filter: blur(14px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.34);
}.tc-wp-tool-root .play-overlay::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}.tc-wp-tool-root .video-card:hover .play-overlay{
    transform: translate(-50%, -50%) scale(1.12);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.94), rgba(37, 99, 235, 0.94));
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.36);
}.tc-wp-tool-root .video-download-btn{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 16px;
    transition: all 0.25s ease;
    opacity: 1;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .video-download-btn:hover{
    background: var(--gradient-primary);
    color: var(--ui-white);
    transform: translateY(-2px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .video-info{
    padding: 18px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
}.tc-wp-tool-root .video-title{
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--ui-text);
    line-height: 1.35;
    cursor: pointer;
    transition: color 0.25s ease;
}.tc-wp-tool-root .video-title:hover{
    color: var(--brand-primary);
}.tc-wp-tool-root .title-tooltip{
    position: fixed;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(14px);
    color: var(--ui-white);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    max-width: 400px;
    min-width: 200px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    word-wrap: break-word;
    white-space: normal;
}.tc-wp-tool-root .title-tooltip.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}.tc-wp-tool-root .title-tooltip::before{
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}.tc-wp-tool-root .video-stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 11px;
}.tc-wp-tool-root .stat{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: var(--radius-sm);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--ui-text-light);
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 0;
}.tc-wp-tool-root .stat::before{
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.22s ease;
    border-radius: var(--radius-sm);
}.tc-wp-tool-root .stat:nth-child(1){
    background: rgba(37, 99, 235, 0.09);
    border: 1px solid rgba(37, 99, 235, 0.14);
}.tc-wp-tool-root .stat:nth-child(1)::before{
    background: var(--gradient-primary);
}.tc-wp-tool-root .stat:nth-child(2){
    background: rgba(6, 182, 212, 0.09);
    border: 1px solid rgba(6, 182, 212, 0.16);
}.tc-wp-tool-root .stat:nth-child(2)::before{
    background: var(--gradient-secondary);
}.tc-wp-tool-root .stat:nth-child(3){
    background: rgba(124, 58, 237, 0.09);
    border: 1px solid rgba(124, 58, 237, 0.16);
}.tc-wp-tool-root .stat:nth-child(3)::before{
    background: linear-gradient(135deg, var(--tiktok-purple), var(--tiktok-pink));
}.tc-wp-tool-root .stat:hover{
    color: var(--ui-white);
    transform: translateY(-1px);
}.tc-wp-tool-root .stat:hover::before{
    opacity: 1;
}.tc-wp-tool-root .stat i, .tc-wp-tool-root .stat span{
    position: relative;
    z-index: 1;
}.tc-wp-tool-root .stat i{
    font-size: 12px;
    transition: transform 0.22s ease;
}.tc-wp-tool-root .stat:hover i{
    transform: scale(1.14);
}.tc-wp-tool-root .modal, .tc-wp-tool-root .profile-modal{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.25s ease-out;
    padding: 20px;
}.tc-wp-tool-root .modal-content{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}.tc-wp-tool-root .modal-title{
    color: var(--ui-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}.tc-wp-tool-root .video-player-container{
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
}.tc-wp-tool-root .video-player{
    width: 100%;
    height: 100%;
    object-fit: contain;
}.tc-wp-tool-root .close-modal, .tc-wp-tool-root .profile-modal-close{
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-full);
    color: var(--ui-white);
    font-size: 23px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .close-modal{
    top: 15px;
    right: -58px;
}.tc-wp-tool-root .close-modal:hover, .tc-wp-tool-root .profile-modal-close:hover{
    transform: rotate(90deg) scale(1.08);
    background: var(--gradient-secondary);
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: var(--shadow-glow);
}.tc-wp-tool-root .video-controls{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}.tc-wp-tool-root .video-player-container:hover .video-controls{
    opacity: 1;
}.tc-wp-tool-root .progress-container, .tc-wp-tool-root .volume-slider{
    background: rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    overflow: visible;
}.tc-wp-tool-root .progress-container{
    width: 100%;
    height: 7px;
}.tc-wp-tool-root .progress-bar, .tc-wp-tool-root .volume-fill{
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}.tc-wp-tool-root .progress-bar{
    position: relative;
    transition: width 0.1s linear;
}.tc-wp-tool-root .progress-bar::after{
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 16px;
    height: 16px;
    background: var(--ui-white);
    border-radius: var(--radius-full);
    transition: transform 0.18s ease;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .progress-container:hover .progress-bar::after{
    transform: translateY(-50%) scale(1);
}.tc-wp-tool-root .control-buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}.tc-wp-tool-root .control-group{
    display: flex;
    align-items: center;
    gap: 12px;
}.tc-wp-tool-root .control-button{
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.14);
    color: var(--ui-white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    backdrop-filter: blur(10px);
}.tc-wp-tool-root .control-button:hover{
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px) scale(1.06);
}.tc-wp-tool-root .play-pause{
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    font-size: 24px;
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .play-pause:hover{
    background: var(--gradient-secondary);
    box-shadow: var(--shadow-glow);
}.tc-wp-tool-root .volume-controls{
    display: flex;
    align-items: center;
    gap: 10px;
}.tc-wp-tool-root .volume-slider{
    width: 82px;
    height: 7px;
}.tc-wp-tool-root .volume-fill{
    transition: width 0.1s ease;
}.tc-wp-tool-root .loading{
    display: none;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    margin: 32px 0;
}.tc-wp-tool-root .loading-content{
    text-align: center;
}.tc-wp-tool-root .loading-animation{
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}.tc-wp-tool-root .loading-spinner{
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    border: 6px solid rgba(37, 99, 235, 0.12);
    border-top-color: var(--brand-primary);
    border-right-color: var(--brand-secondary);
    animation: spin 1.35s linear infinite;
}.tc-wp-tool-root .loading-spinner::before{
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: var(--radius-full);
    border: 4px solid transparent;
    border-top-color: var(--brand-secondary);
    border-left-color: var(--brand-accent);
    animation: spin 0.95s linear infinite reverse;
}.tc-wp-tool-root .loading-spinner::after{
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: var(--radius-full);
    border: 3px solid transparent;
    border-bottom-color: var(--brand-warm);
    animation: spin 1.2s linear infinite;
}.tc-wp-tool-root .shimmer{
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.65), rgba(255, 255, 255, 0.9), rgba(226, 232, 240, 0.65));
    background-size: 220% 100%;
    animation: shimmerMove 1.35s linear infinite;
}@keyframes shimmerMove {
    0% {
        background-position: 120% 0;
    }

    100% {
        background-position: -120% 0;
    }
}@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}.tc-wp-tool-root .loading-text{
    font-size: 20px;
    font-weight: 800;
    color: var(--ui-text);
    margin-bottom: 8px;
}.tc-wp-tool-root .loading-subtext{
    font-size: 14px;
    color: var(--ui-text-light);
    font-weight: 600;
}.tc-wp-tool-root .profile-modal-content{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}.tc-wp-tool-root .profile-modal-image{
    max-width: min(86vw, 820px);
    max-height: 82vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.16);
}.tc-wp-tool-root .profile-modal-close{
    top: 20px;
    right: 20px;
}.tc-wp-tool-root .profile-modal-download{
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-pink);
}.tc-wp-tool-root .download-progress{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    color: var(--ui-text);
    font-weight: 700;
    z-index: 1001;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 310px;
    max-width: calc(100vw - 40px);
    backdrop-filter: blur(14px);
}.tc-wp-tool-root .download-progress.show{
    display: flex;
}.tc-wp-tool-root .download-spinner{
    width: 22px;
    height: 22px;
    border: 2px solid rgba(37, 99, 235, 0.16);
    border-top-color: var(--brand-primary);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}.tc-wp-tool-root .download-info{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}.tc-wp-tool-root .download-text{
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}.tc-wp-tool-root .download-progress-bar{
    width: 100%;
    height: 5px;
    background: rgba(37, 99, 235, 0.14);
    border-radius: var(--radius-full);
    overflow: hidden;
}.tc-wp-tool-root .download-progress-fill{
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 0.25s ease;
}.tc-wp-tool-root .cancel-download-btn{
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    font-size: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.22);
}.tc-wp-tool-root .cancel-download-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}.tc-wp-tool-root .error-message{
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #b91c1c;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}.tc-wp-tool-root .error-message i{
    color: #ef4444;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@media (max-width: 1200px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        max-width: 1000px;
        padding: 34px 20px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
    }.tc-wp-tool-root .profile-header{
        gap: 25px;
    }.tc-wp-tool-root .profile-avatar{
        width: 110px;
        height: 110px;
    }.tc-wp-tool-root .profile-name{
        font-size: 28px;
    }}@media (max-width: 992px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        max-width: 820px;
        padding: 28px 18px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section{
        padding: 30px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }.tc-wp-tool-root .video-card{
        height: 360px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 240px;
    }.tc-wp-tool-root .profile-stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }.tc-wp-tool-root .stat-item{
        padding: 20px 16px;
    }.tc-wp-tool-root .stat-value{
        font-size: 24px;
    }.tc-wp-tool-root .videos-section-header{
        flex-direction: column;
        align-items: stretch;
    }.tc-wp-tool-root .videos-count{
        width: fit-content;
    }}@media (max-width: 768px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        padding: 22px 16px;
    }.tc-wp-tool-root .wrapper .header, .tc-wp-tool-root .header{
        margin-bottom: 34px;
    }.tc-wp-tool-root .logo-container{
        flex-direction: column;
        gap: 15px;
    }.tc-wp-tool-root .logo-text-container{
        text-align: center;
    }.tc-wp-tool-root .logo-icon{
        width: 62px;
        height: 62px;
        font-size: 30px;
    }.tc-wp-tool-root .features-card{
        gap: 10px;
        padding: 12px 20px;
        flex-wrap: wrap;
        max-width: 400px;
    }.tc-wp-tool-root .feature-item{
        padding: 10px 12px;
        min-width: 70px;
    }.tc-wp-tool-root .feature-item i{
        font-size: 16px;
    }.tc-wp-tool-root .feature-item span{
        font-size: 10px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section{
        padding: 24px 20px;
        border-radius: 22px;
        margin-bottom: 30px;
    }.tc-wp-tool-root .search-input{
        min-height: 58px !important;
        padding: 17px 18px !important;
        font-size: 15px !important;
    }.tc-wp-tool-root .search-box{
        flex-direction: column;
        gap: 12px;
    }.tc-wp-tool-root .search-button, .tc-wp-tool-root .search-again-btn{
        width: 100%;
        min-width: auto;
        padding: 16px 20px;
        font-size: 15px;
    }.tc-wp-tool-root .profile-header{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }.tc-wp-tool-root .profile-avatar{
        width: 100px;
        height: 100px;
    }.tc-wp-tool-root .profile-name{
        font-size: 24px;
    }.tc-wp-tool-root .profile-username{
        font-size: 16px;
    }.tc-wp-tool-root .profile-bio{
        font-size: 14px;
        text-align: center;
    }.tc-wp-tool-root .profile-stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }.tc-wp-tool-root .stat-item{
        padding: 18px 14px;
    }.tc-wp-tool-root .stat-value{
        font-size: 22px;
    }.tc-wp-tool-root .stat-label{
        font-size: 12px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
        gap: 16px;
    }.tc-wp-tool-root .video-card{
        height: 350px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 230px;
    }.tc-wp-tool-root .video-info{
        padding: 16px;
        height: 120px;
    }.tc-wp-tool-root .video-title{
        font-size: 12px;
        margin-bottom: 10px;
    }.tc-wp-tool-root .video-stats{
        gap: 6px;
    }.tc-wp-tool-root .stat{
        padding: 6px 4px;
        font-size: 10px;
    }.tc-wp-tool-root .stat i{
        font-size: 11px;
    }.tc-wp-tool-root .videos-section-header{
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
        margin-bottom: 24px;
    }.tc-wp-tool-root .videos-section-header > div:first-child{
        width: 100%;
        display: flex !important;
        align-items: stretch !important;
        gap: 12px !important;
    }.tc-wp-tool-root .videos-button, .tc-wp-tool-root .download-all-btn{
        flex: 1;
        justify-content: center;
        margin-left: 0;
        padding: 14px 18px;
        font-size: 14px;
    }.tc-wp-tool-root .videos-count{
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 18px;
    }.tc-wp-tool-root .control-buttons{
        flex-wrap: wrap;
        gap: 12px;
    }.tc-wp-tool-root .volume-controls{
        order: 3;
        width: 100%;
        justify-content: center;
    }.tc-wp-tool-root .volume-slider{
        width: 70px;
    }.tc-wp-tool-root .close-modal{
        top: -58px;
        right: 8px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }.tc-wp-tool-root .profile-modal-close{
        width: 45px;
        height: 45px;
        font-size: 20px;
    }.tc-wp-tool-root .profile-modal-download{
        right: 50%;
        transform: translateX(50%);
        bottom: 18px;
        padding: 12px 20px;
        font-size: 14px;
    }.tc-wp-tool-root .profile-modal-download:hover{
        transform: translateX(50%) translateY(-3px);
    }.tc-wp-tool-root .download-progress{
        left: 20px;
        right: 20px;
        width: auto;
        min-width: auto;
        padding: 14px 16px;
    }.tc-wp-tool-root .download-text{
        font-size: 13px;
    }.tc-wp-tool-root .cancel-download-btn{
        padding: 6px 10px;
        font-size: 11px;
    }.tc-wp-tool-root .title-tooltip{
        max-width: 280px;
        font-size: 13px;
        padding: 10px 16px;
    }.tc-wp-tool-root .modal-title{
        font-size: 16px;
        margin-bottom: 15px;
    }.tc-wp-tool-root .video-player-container{
        border-radius: var(--radius-lg);
    }.tc-wp-tool-root .video-controls{
        padding: 15px;
        opacity: 1;
    }.tc-wp-tool-root .control-button{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }.tc-wp-tool-root .play-pause{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }}@media (max-width: 640px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        padding: 16px 12px;
    }.tc-wp-tool-root .wrapper .header, .tc-wp-tool-root .header{
        margin-bottom: 28px;
    }.tc-wp-tool-root .logo-text{
        font-size: 28px;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 14px;
    }.tc-wp-tool-root .features-card{
        padding: 10px 16px;
        gap: 8px;
    }.tc-wp-tool-root .feature-item{
        padding: 8px 10px;
        min-width: 60px;
    }.tc-wp-tool-root .feature-item i{
        font-size: 14px;
    }.tc-wp-tool-root .feature-item span{
        font-size: 9px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section{
        padding: 20px 16px;
    }.tc-wp-tool-root .search-input{
        min-height: 54px !important;
        padding: 15px 16px !important;
        font-size: 14px !important;
    }.tc-wp-tool-root .paste-hint{
        font-size: 13px;
        margin-top: 10px;
    }.tc-wp-tool-root .paste-icon{
        width: 32px;
        height: 32px;
        padding: 8px;
        font-size: 14px;
    }.tc-wp-tool-root .search-button, .tc-wp-tool-root .search-again-btn{
        padding: 14px 18px;
        font-size: 14px;
    }.tc-wp-tool-root .profile-avatar{
        width: 90px;
        height: 90px;
    }.tc-wp-tool-root .profile-name{
        font-size: 22px;
    }.tc-wp-tool-root .profile-username{
        font-size: 15px;
    }.tc-wp-tool-root .profile-bio{
        font-size: 13px;
    }.tc-wp-tool-root .profile-stats{
        gap: 10px;
    }.tc-wp-tool-root .stat-item{
        padding: 16px 12px;
    }.tc-wp-tool-root .stat-value{
        font-size: 20px;
    }.tc-wp-tool-root .stat-label{
        font-size: 11px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 12px;
    }.tc-wp-tool-root .video-card{
        height: 320px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 210px;
    }.tc-wp-tool-root .video-info{
        padding: 14px;
        height: 110px;
    }.tc-wp-tool-root .video-title{
        font-size: 11px;
        margin-bottom: 8px;
    }.tc-wp-tool-root .video-stats{
        gap: 4px;
    }.tc-wp-tool-root .stat{
        padding: 5px 3px;
        font-size: 9px;
    }.tc-wp-tool-root .stat i{
        font-size: 10px;
    }.tc-wp-tool-root .play-overlay{
        width: 52px;
        height: 52px;
    }.tc-wp-tool-root .play-overlay::after{
        border-left: 15px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }.tc-wp-tool-root .video-download-btn{
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }}@media (max-width: 480px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        padding: 12px 10px;
    }.tc-wp-tool-root .wrapper .header, .tc-wp-tool-root .header{
        margin-bottom: 24px;
    }.tc-wp-tool-root .logo-text{
        font-size: 24px;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 13px;
    }.tc-wp-tool-root .features-card{
        padding: 8px 12px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }.tc-wp-tool-root .feature-item{
        padding: 6px 8px;
        min-width: 55px;
    }.tc-wp-tool-root .feature-item i{
        font-size: 13px;
    }.tc-wp-tool-root .feature-item span{
        font-size: 8px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section{
        padding: 16px 12px;
        border-radius: 18px;
    }.tc-wp-tool-root .search-input{
        min-height: 50px !important;
        padding: 13px 14px !important;
        font-size: 13px !important;
    }.tc-wp-tool-root .paste-hint{
        font-size: 12px;
        margin-top: 8px;
    }.tc-wp-tool-root .paste-icon{
        width: 30px;
        height: 30px;
        padding: 7px;
        font-size: 13px;
    }.tc-wp-tool-root .search-button, .tc-wp-tool-root .search-again-btn{
        padding: 12px 16px;
        font-size: 13px;
    }.tc-wp-tool-root .profile-header{
        gap: 15px;
        margin-bottom: 25px;
    }.tc-wp-tool-root .profile-avatar{
        width: 80px;
        height: 80px;
    }.tc-wp-tool-root .profile-name{
        font-size: 20px;
    }.tc-wp-tool-root .profile-username{
        font-size: 14px;
    }.tc-wp-tool-root .profile-bio{
        font-size: 12px;
    }.tc-wp-tool-root .profile-stats{
        grid-template-columns: 1fr;
        gap: 8px;
    }.tc-wp-tool-root .stat-item{
        padding: 14px 10px;
    }.tc-wp-tool-root .stat-value{
        font-size: 18px;
    }.tc-wp-tool-root .stat-label{
        font-size: 10px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: 1fr;
        gap: 12px;
    }.tc-wp-tool-root .video-card{
        height: auto;
        min-height: 300px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 210px;
    }.tc-wp-tool-root .video-info{
        padding: 12px;
        height: 110px;
    }.tc-wp-tool-root .video-title{
        font-size: 11px;
        margin-bottom: 6px;
    }.tc-wp-tool-root .video-stats{
        gap: 3px;
    }.tc-wp-tool-root .stat{
        padding: 6px 3px;
        font-size: 9px;
    }.tc-wp-tool-root .stat i{
        font-size: 9px;
    }.tc-wp-tool-root .play-overlay{
        width: 46px;
        height: 46px;
    }.tc-wp-tool-root .play-overlay::after{
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }.tc-wp-tool-root .video-download-btn{
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }.tc-wp-tool-root .videos-section-header{
        gap: 10px;
        margin-bottom: 20px;
    }.tc-wp-tool-root .videos-section-header > div:first-child{
        flex-direction: column;
    }.tc-wp-tool-root .videos-button, .tc-wp-tool-root .download-all-btn{
        width: 100%;
        padding: 11px 16px;
        font-size: 12px;
    }.tc-wp-tool-root .videos-count{
        font-size: 12px;
        padding: 8px 12px;
    }.tc-wp-tool-root .close-modal{
        top: -50px;
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }.tc-wp-tool-root .profile-modal-close{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }.tc-wp-tool-root .profile-modal-download{
        padding: 10px 16px;
        font-size: 13px;
    }.tc-wp-tool-root .download-progress{
        left: 10px;
        right: 10px;
        padding: 12px;
        gap: 10px;
    }.tc-wp-tool-root .download-text{
        font-size: 12px;
    }.tc-wp-tool-root .cancel-download-btn{
        padding: 5px 8px;
        font-size: 10px;
    }.tc-wp-tool-root .title-tooltip{
        max-width: 250px;
        font-size: 12px;
        padding: 8px 12px;
    }.tc-wp-tool-root .modal-title{
        font-size: 14px;
        margin-bottom: 12px;
    }.tc-wp-tool-root .video-controls{
        padding: 12px;
    }.tc-wp-tool-root .control-button{
        width: 36px;
        height: 36px;
        font-size: 14px;
    }.tc-wp-tool-root .play-pause{
        width: 45px;
        height: 45px;
        font-size: 18px;
    }.tc-wp-tool-root .volume-slider{
        width: 56px;
    }.tc-wp-tool-root .loading{
        padding: 40px 20px;
    }.tc-wp-tool-root .loading-animation{
        width: 100px;
        height: 100px;
    }.tc-wp-tool-root .loading-text{
        font-size: 18px;
    }.tc-wp-tool-root .loading-subtext{
        font-size: 13px;
    }.tc-wp-tool-root .error-message{
        padding: 12px 14px;
        font-size: 13px;
    }}@media (max-width: 360px) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        padding: 10px 8px;
    }.tc-wp-tool-root .logo-text{
        font-size: 22px;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 12px;
    }.tc-wp-tool-root .features-card{
        padding: 6px 10px;
        gap: 4px;
    }.tc-wp-tool-root .feature-item{
        padding: 5px 6px;
        min-width: 50px;
    }.tc-wp-tool-root .feature-item i{
        font-size: 12px;
    }.tc-wp-tool-root .feature-item span{
        font-size: 7px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section{
        padding: 12px 10px;
    }.tc-wp-tool-root .search-input{
        padding: 12px 13px !important;
        font-size: 12px !important;
    }.tc-wp-tool-root .search-button, .tc-wp-tool-root .search-again-btn{
        padding: 10px 14px;
        font-size: 12px;
    }.tc-wp-tool-root .profile-avatar{
        width: 70px;
        height: 70px;
    }.tc-wp-tool-root .profile-name{
        font-size: 18px;
    }.tc-wp-tool-root .profile-username{
        font-size: 13px;
    }.tc-wp-tool-root .profile-bio{
        font-size: 11px;
    }.tc-wp-tool-root .video-card{
        min-height: 280px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 180px;
    }.tc-wp-tool-root .video-info{
        padding: 10px;
        height: 100px;
    }.tc-wp-tool-root .video-title{
        font-size: 10px;
    }.tc-wp-tool-root .stat{
        font-size: 8px;
    }.tc-wp-tool-root .stat i{
        font-size: 8px;
    }.tc-wp-tool-root .play-overlay{
        width: 40px;
        height: 40px;
    }.tc-wp-tool-root .play-overlay::after{
        border-left: 10px solid white;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }.tc-wp-tool-root .video-download-btn{
        width: 28px;
        height: 28px;
        font-size: 11px;
    }.tc-wp-tool-root .videos-button, .tc-wp-tool-root .download-all-btn{
        padding: 9px 14px;
        font-size: 11px;
    }.tc-wp-tool-root .videos-count{
        font-size: 11px;
        padding: 6px 10px;
    }.tc-wp-tool-root .title-tooltip{
        max-width: 220px;
        font-size: 11px;
    }.tc-wp-tool-root .modal-title{
        font-size: 13px;
    }.tc-wp-tool-root .control-button{
        width: 32px;
        height: 32px;
        font-size: 13px;
    }.tc-wp-tool-root .play-pause{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }}@media (max-height: 500px) and (orientation: landscape) {.tc-wp-tool-root .wrapper .container, .tc-wp-tool-root .container{
        padding: 10px 15px;
    }.tc-wp-tool-root .wrapper .header, .tc-wp-tool-root .header{
        margin-bottom: 20px;
    }.tc-wp-tool-root .logo-container{
        flex-direction: row;
        gap: 15px;
    }.tc-wp-tool-root .logo-text-container{
        text-align: left;
    }.tc-wp-tool-root .logo-text{
        font-size: 20px;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 12px;
    }.tc-wp-tool-root .features-card{
        padding: 8px 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }.tc-wp-tool-root .search-section{
        padding: 15px 20px;
    }.tc-wp-tool-root .profile-header{
        flex-direction: row;
        gap: 15px;
        margin-bottom: 20px;
        text-align: left;
    }.tc-wp-tool-root .profile-avatar{
        width: 60px;
        height: 60px;
    }.tc-wp-tool-root .profile-name{
        font-size: 18px;
    }.tc-wp-tool-root .profile-username{
        font-size: 12px;
    }.tc-wp-tool-root .profile-bio{
        font-size: 11px;
        text-align: left;
    }.tc-wp-tool-root .profile-stats{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }.tc-wp-tool-root .stat-item{
        padding: 10px 8px;
    }.tc-wp-tool-root .stat-value{
        font-size: 16px;
    }.tc-wp-tool-root .stat-label{
        font-size: 9px;
    }.tc-wp-tool-root .video-grid{
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }.tc-wp-tool-root .video-card{
        height: 250px;
        min-height: 250px;
    }.tc-wp-tool-root .video-thumbnail-container{
        height: 160px;
    }.tc-wp-tool-root .video-info{
        padding: 8px;
        height: 90px;
    }.tc-wp-tool-root .video-title{
        font-size: 9px;
        margin-bottom: 4px;
    }.tc-wp-tool-root .video-stats{
        gap: 2px;
    }.tc-wp-tool-root .stat{
        padding: 3px 2px;
        font-size: 7px;
    }.tc-wp-tool-root .stat i{
        font-size: 8px;
    }.tc-wp-tool-root .play-overlay{
        width: 35px;
        height: 35px;
    }.tc-wp-tool-root .play-overlay::after{
        border-left: 8px solid white;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }.tc-wp-tool-root .video-download-btn{
        width: 25px;
        height: 25px;
        font-size: 10px;
    }.tc-wp-tool-root .videos-section-header{
        flex-direction: row;
        gap: 10px;
        margin-bottom: 15px;
        align-items: center;
    }.tc-wp-tool-root .videos-section-header > div:first-child{
        flex-direction: row;
        align-items: center !important;
    }.tc-wp-tool-root .videos-button{
        padding: 8px 12px;
        font-size: 11px;
    }.tc-wp-tool-root .download-all-btn{
        padding: 8px 12px;
        font-size: 10px;
        margin-left: 8px;
        margin-top: 0 !important;
    }.tc-wp-tool-root .videos-count{
        width: auto;
        font-size: 10px;
        padding: 4px 8px;
    }}@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {.tc-wp-tool-root .video-thumbnail, .tc-wp-tool-root .profile-avatar{
        image-rendering: -webkit-optimize-contrast;
    }}@media (prefers-reduced-motion: reduce) {.tc-wp-tool-root .wrapper *, .tc-wp-tool-root .wrapper *::before, .tc-wp-tool-root .wrapper *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }.tc-wp-tool-root .floating-shape, .tc-wp-tool-root .logo-icon::after, .tc-wp-tool-root .loading-spinner, .tc-wp-tool-root .loading-spinner::before, .tc-wp-tool-root .loading-spinner::after, .tc-wp-tool-root .download-spinner, .tc-wp-tool-root .fa-spin, .tc-wp-tool-root .fa-spinner{
        animation: none !important;
    }}@media (prefers-color-scheme: dark) {.tc-wp-tool-root .search-input::placeholder{
        color: rgba(100, 116, 139, 0.78);
    }.tc-wp-tool-root .title-tooltip{
        background: rgba(2, 6, 23, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }.tc-wp-tool-root .title-tooltip::before{
        background: rgba(2, 6, 23, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }}.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;
}