@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.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{
    --primary: #ff0050;
    --secondary: #00f2ea;
    --accent: #ff4081;
    --purple: #8b5cf6;
    --orange: #ff8800;
    --green: #00ff88;
    --blue: #0ea5e9;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: rgba(30, 41, 59, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border: #475569;
    --border-light: #64748b;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
    --glow-primary: 0 0 30px rgba(255, 0, 80, 0.3);
    --glow-secondary: 0 0 30px rgba(0, 242, 234, 0.3);
    --gradient-primary: linear-gradient(135deg, #ff0050, #ff4081, #ff6b9d);
    --gradient-secondary: linear-gradient(135deg, #00f2ea, #00d4aa, #00ff88);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}.tc-wp-tool-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}.tc-wp-tool-root .tiktok_body{
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}.tc-wp-tool-root .tiktok_body::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 242, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}.tc-wp-tool-root .container_tiktok{
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}.tc-wp-tool-root .header{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}.tc-wp-tool-root .header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}.tc-wp-tool-root .logo{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}.tc-wp-tool-root .logo-icon{
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .logo-icon::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: logoShine 3s ease-in-out infinite;
}.tc-wp-tool-root .logo-text{
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}.tc-wp-tool-root .logo-subtitle{
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}.tc-wp-tool-root .search-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 700px;
    width: 100%;
}.tc-wp-tool-root .search-form{
    display: flex;
    gap: 1rem;
    position: relative;
    width: 100%;
}.tc-wp-tool-root .search-input{
    flex: 1 !important;
    padding: 1rem 1.5rem !important;
    background: rgba(30, 41, 59, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border: 2px solid var(--border) !important;
    border-radius: 16px !important;
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}.tc-wp-tool-root .search-input:focus{
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.1), var(--glow-primary), inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
    background: rgba(30, 41, 59, 0.95) !important;
}.tc-wp-tool-root .search-input::placeholder{
    color: var(--text-muted);
    font-weight: 400;
}.tc-wp-tool-root .search-input:not(:placeholder-shown){
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--border-light);
    font-weight: 600;
}.tc-wp-tool-root .search-btn{
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}.tc-wp-tool-root .search-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}.tc-wp-tool-root .search-btn:hover:not(:disabled)::before{
    left: 100%;
}.tc-wp-tool-root .search-btn:hover:not(:disabled){
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}.tc-wp-tool-root .search-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}.tc-wp-tool-root .search-another-btn{
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}.tc-wp-tool-root .search-another-btn:hover{
    background: var(--bg-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}.tc-wp-tool-root .button-group{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}.tc-wp-tool-root .main-content{
    flex: 1;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 1.5rem;
    min-height: 0;
}.tc-wp-tool-root .video-section{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}.tc-wp-tool-root .video-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-secondary);
}.tc-wp-tool-root .video-stats-bar{
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}.tc-wp-tool-root .video-stat-item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}.tc-wp-tool-root .video-stat-item i{
    font-size: 1rem;
}.tc-wp-tool-root .video-stat-item .fa-eye{
    color: #ec4899;
}.tc-wp-tool-root .video-stat-item .fa-heart{
    color: #ef4444;
}.tc-wp-tool-root .video-stat-item .fa-comment{
    color: #3b82f6;
}.tc-wp-tool-root .video-stat-item .fa-share{
    color: #10b981;
}.tc-wp-tool-root .video-stat-value{
    font-weight: 700;
    color: var(--text-primary);
}.tc-wp-tool-root .video-header{
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}.tc-wp-tool-root .video-title{
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--text-primary);
}.tc-wp-tool-root .video-author{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(0, 242, 234, 0.2);
    box-shadow: var(--shadow);
}.tc-wp-tool-root .author-avatar{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: var(--shadow);
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}.tc-wp-tool-root .author-info{
    flex: 1;
}.tc-wp-tool-root .author-info h4{
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}.tc-wp-tool-root .author-username{
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}.tc-wp-tool-root .author-verified{
    color: var(--blue);
    font-size: 0.9rem;
}.tc-wp-tool-root .video-player-container{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}.tc-wp-tool-root .video-player-wrapper{
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}.tc-wp-tool-root .video-thumbnail{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}.tc-wp-tool-root .video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}.tc-wp-tool-root .video-overlay:hover{
    background: rgba(0, 0, 0, 0.6);
}.tc-wp-tool-root .play-button{
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--glow-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .play-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}.tc-wp-tool-root .play-button:hover::before{
    transform: translateX(100%);
}.tc-wp-tool-root .play-button:hover{
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}.tc-wp-tool-root .video-player{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}.tc-wp-tool-root .video-player.playing{
    display: block;
}.tc-wp-tool-root .video-controls{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10;
}.tc-wp-tool-root .video-player-wrapper:hover .video-controls{
    transform: translateY(0);
}.tc-wp-tool-root .progress-container{
    margin-bottom: 1rem;
}.tc-wp-tool-root .progress-bar{
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .progress-fill{
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.5);
}.tc-wp-tool-root .control-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
}.tc-wp-tool-root .control-group{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}.tc-wp-tool-root .control-btn{
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}.tc-wp-tool-root .control-btn:hover{
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: var(--shadow);
}.tc-wp-tool-root .play-control-btn{
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    font-size: 1.2rem;
    border: none;
    box-shadow: var(--shadow-lg), var(--glow-primary);
}.tc-wp-tool-root .volume-control{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}.tc-wp-tool-root .volume-slider{
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .volume-fill{
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 3px;
    width: 100%;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(0, 242, 234, 0.4);
}.tc-wp-tool-root .time-display{
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
}.tc-wp-tool-root .loading-state{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}.tc-wp-tool-root .loading-spinner{
    width: 60px;
    height: 60px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}.tc-wp-tool-root .loading-text{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .loading-subtext{
    color: var(--text-secondary);
    font-size: 0.9rem;
}.tc-wp-tool-root .comments-section{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}.tc-wp-tool-root .comments-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple);
}.tc-wp-tool-root .comments-header{
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 64, 129, 0.1));
}.tc-wp-tool-root .comments-title{
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}.tc-wp-tool-root .comments-count{
    background: var(--gradient-purple);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    min-width: 40px;
    text-align: center;
}.tc-wp-tool-root .comments-container{
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: calc(100vh - 300px);
    min-height: 400px;
    position: relative;
}.tc-wp-tool-root .comments-container::-webkit-scrollbar{
    width: 12px;
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-track{
    background: var(--bg-secondary);
    border-radius: 6px;
    margin: 4px;
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-thumb{
    background: var(--gradient-purple);
    border-radius: 6px;
    border: 2px solid var(--bg-secondary);
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-thumb:hover{
    background: var(--purple);
}.tc-wp-tool-root .comments-container{
    scrollbar-width: auto;
    scrollbar-color: var(--purple) var(--bg-secondary);
}.tc-wp-tool-root .scroll-indicator{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: scrollPulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}.tc-wp-tool-root .scroll-indicator:hover{
    transform: translateX(-50%) translateY(-5px);
    box-shadow: var(--shadow-xl);
}.tc-wp-tool-root .scroll-indicator.show{
    display: flex;
}.tc-wp-tool-root .scroll-indicator i{
    animation: scrollBounce 1.5s ease-in-out infinite;
}.tc-wp-tool-root .comments-list{
    padding: 0;
}.tc-wp-tool-root .comment-item{
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    animation: commentSlideIn 0.5s ease-out;
}.tc-wp-tool-root .comment-item:hover{
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(5px);
}.tc-wp-tool-root .comment-item::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-purple);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}.tc-wp-tool-root .comment-item:hover::before{
    transform: scaleY(1);
}.tc-wp-tool-root .comment-header{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}.tc-wp-tool-root .comment-avatar{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: 700;
}.tc-wp-tool-root .comment-avatar:hover{
    border-color: var(--purple);
    transform: scale(1.05);
}.tc-wp-tool-root .comment-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .comment-user-info{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}.tc-wp-tool-root .comment-author{
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}.tc-wp-tool-root .comment-username{
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}.tc-wp-tool-root .comment-verified{
    color: var(--blue);
    font-size: 0.8rem;
}.tc-wp-tool-root .comment-region{
    background: rgba(0, 242, 234, 0.1);
    color: var(--secondary);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}.tc-wp-tool-root .comment-text{
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    word-wrap: break-word;
    margin-bottom: 0.75rem;
}.tc-wp-tool-root .comment-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}.tc-wp-tool-root .comment-stats{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}.tc-wp-tool-root .comment-stat{
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}.tc-wp-tool-root .comment-stat:hover{
    color: var(--primary);
    transform: scale(1.05);
}.tc-wp-tool-root .comment-stat i{
    font-size: 0.9rem;
}.tc-wp-tool-root .comment-meta{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}.tc-wp-tool-root .comment-time{
    font-weight: 500;
}.tc-wp-tool-root .comment-id{
    font-family: 'Courier New', monospace;
    background: rgba(107, 114, 128, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}.tc-wp-tool-root .empty-state{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}.tc-wp-tool-root .empty-state i{
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .empty-state h3{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}.tc-wp-tool-root .error-message{
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem 1.5rem;
    margin: 1rem;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}.tc-wp-tool-root .error-message.show{
    display: flex;
    animation: errorSlideIn 0.3s ease-out;
}@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}@keyframes commentSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}.tc-wp-tool-root .button-group{
display: flex;
gap: 1rem;
flex-wrap: wrap;
flex-shrink: 0;
justify-content: center;
}.tc-wp-tool-root .header-content{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1.5rem;
flex-direction: column;
}.tc-wp-tool-root .search-container{
display: flex;
flex-direction: column;
gap: 1rem;
flex: 1;
max-width: 700px;
width: 100%;
}.tc-wp-tool-root .search-form{
display: flex;
gap: 1rem;
position: relative;
width: 100%;
flex-direction: column;
}@media (max-height: 500px) and (orientation: landscape) {.tc-wp-tool-root .container{
        padding: 0.5rem;
    }.tc-wp-tool-root .header{
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }.tc-wp-tool-root .main-content{
        gap: 0.75rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 200px;
    }.tc-wp-tool-root .comments-container{
        max-height: calc(100vh - 150px);
        min-height: 200px;
    }.tc-wp-tool-root .comment-item{
        padding: 0.75rem 1rem;
    }}.tc-wp-tool-root .search-input{
    flex: 1;
    min-width: 0;
    
    width: 100%;
    
    box-sizing: border-box;
}.tc-wp-tool-root .search-form{
    display: flex;
    gap: 1rem;
    position: relative;
    width: 100%;
    
}.tc-wp-tool-root .search-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 700px;
    width: 100%;
    
}.tc-wp-tool-root .button-group{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    
}.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
    white-space: nowrap;
    flex-shrink: 0;
    
}.tc-wp-tool-root .search-input:focus, .tc-wp-tool-root .search-input:not(:placeholder-shown), .tc-wp-tool-root .search-input:disabled{
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 !important;
}.tc-wp-tool-root .search-form:has(.search-input:focus), .tc-wp-tool-root .search-form:has(.search-input:not(:placeholder-shown)){
    width: 100% !important;
    display: flex !important;
    gap: 1rem !important;
}.tc-wp-tool-root .search-container:has(.search-btn:disabled) .search-input, .tc-wp-tool-root .search-container:has(.search-btn:disabled) .search-form{
    width: 100% !important;
    min-width: 0 !important;
}@media (max-width: 992px) {.tc-wp-tool-root .main-content{
grid-template-columns: 1fr; 
}.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
margin-bottom: 1.5rem; 
}.tc-wp-tool-root .comments-container{
max-height: 600px; 
min-height: 300px;
}}@media (max-width: 768px) {.tc-wp-tool-root .container_tiktok{
padding: 1rem;
}.tc-wp-tool-root .header{
padding: 1.5rem;
}.tc-wp-tool-root .header-content{
flex-direction: column; 
align-items: center;
text-align: center;
}.tc-wp-tool-root .logo{
flex-direction: column;
gap: 0.75rem;
margin-bottom: 1rem;
}.tc-wp-tool-root .logo-icon{
width: 50px;
height: 50px;
font-size: 1.5rem;
}.tc-wp-tool-root .logo-text{
font-size: 1.8rem;
}.tc-wp-tool-root .logo-subtitle{
font-size: 0.8rem;
}.tc-wp-tool-root .search-container{
max-width: 100%; 
}.tc-wp-tool-root .search-form{
flex-direction: column; 
gap: 0.75rem;
}.tc-wp-tool-root .search-input{
padding: 0.75rem 1rem !important;
font-size: 0.9rem !important;
}.tc-wp-tool-root .search-btn{
padding: 0.75rem 1.5rem;
font-size: 0.9rem;
width: 100%; 
}.tc-wp-tool-root .button-group{
width: 100%; 
justify-content: center; 
gap: 0.75rem;
}.tc-wp-tool-root .search-another-btn{
padding: 0.75rem 1rem;
font-size: 0.9rem;
flex-grow: 1; 
}.tc-wp-tool-root .video-stats-bar{
padding: 0.75rem 1rem;
gap: 0.75rem;
}.tc-wp-tool-root .video-stat-item{
padding: 0.4rem 0.8rem;
font-size: 0.8rem;
}.tc-wp-tool-root .video-header{
padding: 1rem;
}.tc-wp-tool-root .video-title{
font-size: 1rem;
}.tc-wp-tool-root .video-author{
padding: 0.75rem;
gap: 0.75rem;
}.tc-wp-tool-root .author-avatar{
width: 40px;
height: 40px;
font-size: 1rem;
}.tc-wp-tool-root .author-info h4{
font-size: 1rem;
}.tc-wp-tool-root .author-username{
font-size: 0.8rem;
}.tc-wp-tool-root .video-player-container{
padding: 1rem;
}.tc-wp-tool-root .video-player-wrapper{
max-width: 280px; 
}.tc-wp-tool-root .play-button{
width: 60px;
height: 60px;
font-size: 1.5rem;
}.tc-wp-tool-root .video-controls{
padding: 1rem;
}.tc-wp-tool-root .control-btn{
width: 36px;
height: 36px;
font-size: 0.9rem;
}.tc-wp-tool-root .play-control-btn{
width: 42px;
height: 42px;
font-size: 1rem;
}.tc-wp-tool-root .volume-slider{
width: 60px;
}.tc-wp-tool-root .time-display{
font-size: 0.75rem;
}.tc-wp-tool-root .comments-header{
padding: 1rem;
}.tc-wp-tool-root .comments-title{
font-size: 1.1rem;
gap: 0.5rem;
}.tc-wp-tool-root .comments-count{
padding: 0.25rem 0.6rem;
font-size: 0.75rem;
min-width: 35px;
}.tc-wp-tool-root .comment-item{
padding: 1rem 1.25rem;
}.tc-wp-tool-root .comment-avatar{
width: 38px;
height: 38px;
font-size: 0.9rem;
}.tc-wp-tool-root .comment-user-info{
flex-direction: column; 
align-items: flex-start;
gap: 0.25rem;
}.tc-wp-tool-root .comment-author{
font-size: 0.9rem;
}.tc-wp-tool-root .comment-username{
font-size: 0.8rem;
}.tc-wp-tool-root .comment-text{
font-size: 0.9rem;
}.tc-wp-tool-root .comment-footer{
flex-direction: column; 
align-items: flex-start;
gap: 0.75rem;
}.tc-wp-tool-root .comment-stats{
gap: 1rem;
}.tc-wp-tool-root .comment-stat{
font-size: 0.8rem;
}.tc-wp-tool-root .comment-meta{
font-size: 0.7rem;
}}@media (max-width: 600px) {.tc-wp-tool-root .container_tiktok{
padding: 0.75rem;
}.tc-wp-tool-root .header{
padding: 1rem;
border-radius: 15px;
}.tc-wp-tool-root .logo-text{
font-size: 1.6rem;
}.tc-wp-tool-root .search-input{
font-size: 0.85rem !important;
}.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
font-size: 0.85rem;
padding: 0.65rem 1.25rem;
border-radius: 12px;
}.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
border-radius: 15px;
}.tc-wp-tool-root .video-stat-item{
font-size: 0.75rem;
padding: 0.3rem 0.6rem;
}.tc-wp-tool-root .video-title{
font-size: 0.95rem;
}.tc-wp-tool-root .author-info h4{
font-size: 0.95rem;
}.tc-wp-tool-root .author-username{
font-size: 0.75rem;
}.tc-wp-tool-root .video-player-wrapper{
max-width: 250px; 
}.tc-wp-tool-root .play-button{
width: 50px;
height: 50px;
font-size: 1.2rem;
}.tc-wp-tool-root .control-btn{
width: 32px;
height: 32px;
font-size: 0.8rem;
}.tc-wp-tool-root .play-control-btn{
width: 38px;
height: 38px;
font-size: 0.9rem;
}.tc-wp-tool-root .comments-title{
font-size: 1rem;
}.tc-wp-tool-root .comment-item{
padding: 0.9rem 1rem;
}.tc-wp-tool-root .comment-avatar{
width: 34px;
height: 34px;
font-size: 0.8rem;
}.tc-wp-tool-root .comment-author{
font-size: 0.85rem;
}.tc-wp-tool-root .comment-username{
font-size: 0.75rem;
}.tc-wp-tool-root .comment-text{
font-size: 0.85rem;
}.tc-wp-tool-root .comment-stat{
font-size: 0.75rem;
}.tc-wp-tool-root .scroll-indicator{
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-purple);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
box-shadow: var(--shadow-lg);
z-index: 100;
display: none !important;
align-items: center;
gap: 0.5rem;
animation: scrollPulse 2s ease-in-out infinite;
cursor: pointer;
transition: all 0.3s ease;
}}@media (max-width: 400px) {.tc-wp-tool-root .container_tiktok{
padding: 0.5rem;
}.tc-wp-tool-root .header{
padding: 0.75rem;
border-radius: 12px;
}.tc-wp-tool-root .logo-icon{
width: 45px;
height: 45px;
font-size: 1.3rem;
}.tc-wp-tool-root .logo-text{
font-size: 1.4rem;
}.tc-wp-tool-root .search-input{
padding: 0.6rem 0.8rem !important;
font-size: 0.8rem !important;
}.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
font-size: 0.8rem;
padding: 0.5rem 1rem;
border-radius: 10px;
}.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
border-radius: 12px;
}.tc-wp-tool-root .video-stat-item{
font-size: 0.7rem;
padding: 0.25rem 0.5rem;
flex-shrink: 0; 
}.tc-wp-tool-root .video-title{
font-size: 0.9rem;
}.tc-wp-tool-root .author-avatar{
width: 35px;
height: 35px;
font-size: 0.9rem;
}.tc-wp-tool-root .author-info h4{
font-size: 0.9rem;
}.tc-wp-tool-root .author-username{
font-size: 0.7rem;
}.tc-wp-tool-root .video-player-wrapper{
max-width: 220px; 
}.tc-wp-tool-root .play-button{
width: 45px;
height: 45px;
font-size: 1.1rem;
}.tc-wp-tool-root .control-btn{
width: 30px;
height: 30px;
font-size: 0.75rem;
}.tc-wp-tool-root .play-control-btn{
width: 35px;
height: 35px;
font-size: 0.85rem;
}.tc-wp-tool-root .volume-control{
gap: 0.5rem;
}.tc-wp-tool-root .volume-slider{
width: 50px;
}.tc-wp-tool-root .time-display{
font-size: 0.7rem;
}.tc-wp-tool-root .comments-header{
padding: 0.75rem;
}.tc-wp-tool-root .comments-title{
font-size: 0.9rem;
}.tc-wp-tool-root .comments-count{
padding: 0.2rem 0.5rem;
font-size: 0.7rem;
min-width: 30px;
}.tc-wp-tool-root .comment-item{
padding: 0.8rem 0.9rem;
}.tc-wp-tool-root .comment-avatar{
width: 30px;
height: 30px;
font-size: 0.75rem;
}.tc-wp-tool-root .comment-author{
font-size: 0.8rem;
}.tc-wp-tool-root .comment-username{
font-size: 0.7rem;
}.tc-wp-tool-root .comment-text{
font-size: 0.8rem;
}.tc-wp-tool-root .comment-stats{
gap: 0.8rem;
}.tc-wp-tool-root .comment-stat{
font-size: 0.7rem;
}.tc-wp-tool-root .scroll-indicator{
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-purple);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
box-shadow: var(--shadow-lg);
z-index: 100;
display: none !important;
align-items: center;
gap: 0.5rem;
animation: scrollPulse 2s ease-in-out infinite;
cursor: pointer;
transition: all 0.3s ease;
}}@media (max-width: 375px) {.tc-wp-tool-root .container_tiktok{
padding: 0.4rem;
}.tc-wp-tool-root .header{
padding: 0.6rem;
border-radius: 10px;
}.tc-wp-tool-root .logo-icon{
width: 40px;
height: 40px;
font-size: 1.2rem;
}.tc-wp-tool-root .logo-text{
font-size: 1.3rem;
}.tc-wp-tool-root .logo-subtitle{
font-size: 0.7rem;
}.tc-wp-tool-root .search-input{
padding: 0.5rem 0.7rem !important;
font-size: 0.75rem !important;
}.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
font-size: 0.75rem;
padding: 0.45rem 0.9rem;
border-radius: 8px;
}.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
border-radius: 10px;
}.tc-wp-tool-root .video-stats-bar{
padding: 0.6rem 0.7rem;
gap: 0.5rem;
}.tc-wp-tool-root .video-stat-item{
font-size: 0.65rem;
padding: 0.2rem 0.4rem;
}.tc-wp-tool-root .video-title{
font-size: 0.85rem;
margin-bottom: 0.75rem;
}.tc-wp-tool-root .author-avatar{
width: 32px;
height: 32px;
font-size: 0.8rem;
}.tc-wp-tool-root .author-info h4{
font-size: 0.85rem;
}.tc-wp-tool-root .author-username{
font-size: 0.65rem;
}.tc-wp-tool-root .video-player-wrapper{
max-width: 190px; 
}.tc-wp-tool-root .play-button{
width: 40px;
height: 40px;
font-size: 1rem;
}.tc-wp-tool-root .control-btn{
width: 28px;
height: 28px;
font-size: 0.7rem;
}.tc-wp-tool-root .play-control-btn{
width: 32px;
height: 32px;
font-size: 0.8rem;
}.tc-wp-tool-root .volume-slider{
width: 45px;
}.tc-wp-tool-root .time-display{
font-size: 0.65rem;
}.tc-wp-tool-root .comments-header{
padding: 0.6rem;
}.tc-wp-tool-root .comments-title{
font-size: 0.85rem;
gap: 0.4rem;
}.tc-wp-tool-root .comments-count{
padding: 0.15rem 0.4rem;
font-size: 0.65rem;
min-width: 28px;
}.tc-wp-tool-root .comment-item{
padding: 0.7rem 0.8rem;
}.tc-wp-tool-root .comment-avatar{
width: 28px;
height: 28px;
font-size: 0.7rem;
}.tc-wp-tool-root .comment-author{
font-size: 0.75rem;
}.tc-wp-tool-root .comment-username{
font-size: 0.65rem;
}.tc-wp-tool-root .comment-text{
font-size: 0.75rem;
margin-bottom: 0.6rem;
}.tc-wp-tool-root .comment-stats{
gap: 0.7rem;
}.tc-wp-tool-root .comment-stat{
font-size: 0.65rem;
}.tc-wp-tool-root .comment-meta{
font-size: 0.6rem;
gap: 0.7rem;
}.tc-wp-tool-root .scroll-indicator{
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: var(--gradient-purple);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 600;
box-shadow: var(--shadow-lg);
z-index: 100;
display: none !important;
align-items: center;
gap: 0.5rem;
animation: scrollPulse 2s ease-in-out infinite;
cursor: pointer;
transition: all 0.3s ease;
}}.tc-wp-tool-root{
    --primary: #ff2d68;
    --secondary: #13f4df;
    --accent: #ff5c93;
    --purple: #9b7cff;
    --orange: #ff9f1c;
    --green: #22c55e;
    --blue: #38bdf8;
    --bg-primary: #07111f;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --bg-card: rgba(15, 23, 42, 0.78);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: rgba(148, 163, 184, 0.22);
    --border-light: rgba(203, 213, 225, 0.38);
    --shadow: 0 14px 35px rgba(2, 6, 23, 0.28);
    --shadow-lg: 0 24px 60px rgba(2, 6, 23, 0.38);
    --shadow-xl: 0 32px 90px rgba(2, 6, 23, 0.52);
    --glow-primary: 0 0 34px rgba(255, 45, 104, 0.28);
    --glow-secondary: 0 0 34px rgba(19, 244, 223, 0.24);
    --gradient-primary: linear-gradient(135deg, #ff2d68 0%, #ff5c93 45%, #9b7cff 100%);
    --gradient-secondary: linear-gradient(135deg, #13f4df 0%, #38bdf8 52%, #22c55e 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #9b7cff 48%, #ff5c93 100%);
    --gradient-bg: radial-gradient(circle at 18% 10%, rgba(255, 45, 104, 0.18), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(19, 244, 223, 0.14), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #111827 48%, #182033 100%);
}.tc-wp-tool-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}.tc-wp-tool-root .tiktok_body{
    font-family: 'Inter', Arial, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}.tc-wp-tool-root .tiktok_body::before{
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
}.tc-wp-tool-root .container_tiktok{
    max-width: 1480px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}.tc-wp-tool-root .header{
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.86), rgba(30, 41, 59, 0.66));
    backdrop-filter: blur(22px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .header::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--gradient-primary);
}.tc-wp-tool-root .header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex-direction: column;
}.tc-wp-tool-root .logo{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    justify-content: center;
    text-align: center;
}.tc-wp-tool-root .logo-icon{
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}.tc-wp-tool-root .logo-icon::before{
    content: '';
    position: absolute;
    top: -55%;
    left: -55%;
    width: 210%;
    height: 210%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    animation: logoShine 3.2s ease-in-out infinite;
}.tc-wp-tool-root .logo-text{
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff8fb5 44%, #13f4df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    line-height: 1.12;
    max-width: 980px;
}.tc-wp-tool-root .logo-subtitle{
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.45rem;
}.tc-wp-tool-root .search-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    max-width: 820px;
    width: 100%;
}.tc-wp-tool-root .search-form{
    display: flex;
    gap: 1rem;
    position: relative;
    width: 100%;
    flex-direction: column;
}.tc-wp-tool-root .search-input{
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.05rem 1.25rem !important;
    background: rgba(2, 6, 23, 0.46) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    outline: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 34px rgba(2, 6, 23, 0.16) !important;
}.tc-wp-tool-root .search-input:focus{
    border-color: rgba(255, 92, 147, 0.9) !important;
    box-shadow: 0 0 0 4px rgba(255, 45, 104, 0.14), var(--glow-primary), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-1px) !important;
    background: rgba(15, 23, 42, 0.88) !important;
}.tc-wp-tool-root .search-input::placeholder{
    color: #9ca3af;
    font-weight: 500;
}.tc-wp-tool-root .search-input:not(:placeholder-shown){
    background: rgba(15, 23, 42, 0.88);
    border-color: var(--border-light);
    font-weight: 700;
}.tc-wp-tool-root .search-input:disabled{
    opacity: 0.7;
    cursor: not-allowed;
}.tc-wp-tool-root .search-btn{
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 1.65rem;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: var(--shadow), var(--glow-primary);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 52px;
}.tc-wp-tool-root .search-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transition: left 0.55s ease;
}.tc-wp-tool-root .search-btn:hover:not(:disabled)::before{
    left: 110%;
}.tc-wp-tool-root .search-btn:hover:not(:disabled){
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}.tc-wp-tool-root .search-btn:active:not(:disabled){
    transform: translateY(-1px) scale(0.99);
}.tc-wp-tool-root .search-btn:focus-visible, .tc-wp-tool-root .search-another-btn:focus-visible, .tc-wp-tool-root .control-btn:focus-visible, .tc-wp-tool-root .play-button:focus-visible{
    outline: 3px solid rgba(19, 244, 223, 0.35);
    outline-offset: 3px;
}.tc-wp-tool-root .search-btn:disabled{
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}.tc-wp-tool-root .search-another-btn{
    background: rgba(15, 23, 42, 0.76);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 1rem 1.4rem;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    white-space: nowrap;
    min-height: 52px;
    box-shadow: var(--shadow);
}.tc-wp-tool-root .search-another-btn:hover{
    background: rgba(30, 41, 59, 0.92);
    border-color: rgba(19, 244, 223, 0.55);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-secondary);
}.tc-wp-tool-root .button-group{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: center;
}.tc-wp-tool-root .main-content{
    flex: 1;
    display: grid;
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
    gap: 1.5rem;
    min-height: 0;
}.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.84), rgba(30, 41, 59, 0.62));
    backdrop-filter: blur(22px);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}.tc-wp-tool-root .video-section::before, .tc-wp-tool-root .comments-section::before{
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
}.tc-wp-tool-root .video-section::before{
    background: var(--gradient-secondary);
}.tc-wp-tool-root .comments-section::before{
    background: var(--gradient-purple);
}.tc-wp-tool-root .video-stats-bar{
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 45, 104, 0.13), rgba(155, 124, 255, 0.1));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}.tc-wp-tool-root .video-stat-item{
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0.55rem 0.85rem;
    background: rgba(255, 255, 255, 0.055);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.09);
}.tc-wp-tool-root .video-stat-item:hover{
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}.tc-wp-tool-root .video-stat-item i{
    font-size: 1rem;
}.tc-wp-tool-root .video-stat-item .fa-eye{
    color: #ec4899;
}.tc-wp-tool-root .video-stat-item .fa-heart{
    color: #ef4444;
}.tc-wp-tool-root .video-stat-item .fa-comment{
    color: #38bdf8;
}.tc-wp-tool-root .video-stat-item .fa-share{
    color: #22c55e;
}.tc-wp-tool-root .video-stat-value{
    font-weight: 800;
    color: var(--text-primary);
}.tc-wp-tool-root .video-header{
    padding: 1.35rem;
    border-bottom: 1px solid var(--border);
}.tc-wp-tool-root .video-title{
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.45;
    color: var(--text-primary);
}.tc-wp-tool-root .video-author{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem;
    background: linear-gradient(135deg, rgba(19, 244, 223, 0.12), rgba(56, 189, 248, 0.08));
    border-radius: 18px;
    border: 1px solid rgba(19, 244, 223, 0.22);
    box-shadow: var(--shadow);
}.tc-wp-tool-root .author-avatar, .tc-wp-tool-root .comment-avatar{
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}.tc-wp-tool-root .author-avatar{
    width: 52px;
    height: 52px;
    border: 3px solid rgba(19, 244, 223, 0.85);
    background: var(--gradient-secondary);
    font-size: 1.2rem;
}.tc-wp-tool-root .author-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .author-info h4{
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}.tc-wp-tool-root .author-username{
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}.tc-wp-tool-root .author-verified, .tc-wp-tool-root .comment-verified{
    color: var(--blue);
    font-size: 0.9rem;
}.tc-wp-tool-root .video-player-container{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.35rem;
    position: relative;
}.tc-wp-tool-root .video-player-wrapper{
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: #000;
}.tc-wp-tool-root .video-thumbnail{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}.tc-wp-tool-root .video-overlay{
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}.tc-wp-tool-root .video-overlay:hover{
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}.tc-wp-tool-root .play-button{
    width: 78px;
    height: 78px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), var(--glow-primary);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .play-button::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: translateX(-110%);
    transition: transform 0.55s ease;
}.tc-wp-tool-root .play-button:hover::before{
    transform: translateX(110%);
}.tc-wp-tool-root .play-button:hover{
    transform: scale(1.08);
}.tc-wp-tool-root .video-player{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}.tc-wp-tool-root .video-player.playing{
    display: block;
}.tc-wp-tool-root .video-controls{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    padding: 1.35rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10;
}.tc-wp-tool-root .video-player-wrapper:hover .video-controls{
    transform: translateY(0);
}.tc-wp-tool-root .progress-container{
    margin-bottom: 1rem;
}.tc-wp-tool-root .progress-bar, .tc-wp-tool-root .volume-slider{
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .progress-bar{
    width: 100%;
    height: 7px;
}.tc-wp-tool-root .progress-fill{
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 999px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 45, 104, 0.6);
}.tc-wp-tool-root .control-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}.tc-wp-tool-root .control-group{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}.tc-wp-tool-root .control-btn{
    background: rgba(255, 255, 255, 0.14);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}.tc-wp-tool-root .control-btn:hover{
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px) scale(1.06);
    box-shadow: var(--shadow);
}.tc-wp-tool-root .play-control-btn{
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    font-size: 1.15rem;
    border: none;
    box-shadow: var(--shadow-lg), var(--glow-primary);
}.tc-wp-tool-root .volume-control{
    display: flex;
    align-items: center;
    gap: 0.7rem;
}.tc-wp-tool-root .volume-slider{
    width: 82px;
    height: 7px;
}.tc-wp-tool-root .volume-fill{
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 999px;
    width: 100%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(19, 244, 223, 0.5);
}.tc-wp-tool-root .time-display{
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
    white-space: nowrap;
}.tc-wp-tool-root .loading-state{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}.tc-wp-tool-root .loading-spinner{
    width: 62px;
    height: 62px;
    border: 3px solid rgba(148, 163, 184, 0.24);
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--secondary);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-primary);
}.tc-wp-tool-root .loading-text{
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .loading-subtext{
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}.tc-wp-tool-root .comments-header{
    padding: 1.25rem 1.4rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(155, 124, 255, 0.12), rgba(255, 92, 147, 0.08));
}.tc-wp-tool-root .comments-title{
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-primary);
}.tc-wp-tool-root .comments-count{
    background: var(--gradient-purple);
    color: white;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: var(--shadow);
    min-width: 42px;
    text-align: center;
}.tc-wp-tool-root .comments-container{
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    max-height: calc(100vh - 300px);
    min-height: 400px;
    position: relative;
    scrollbar-width: auto;
    scrollbar-color: var(--purple) var(--bg-secondary);
}.tc-wp-tool-root .comments-container::-webkit-scrollbar{
    width: 12px;
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-track{
    background: rgba(15, 23, 42, 0.85);
    border-radius: 999px;
    margin: 6px;
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-thumb{
    background: var(--gradient-purple);
    border-radius: 999px;
    border: 2px solid rgba(15, 23, 42, 0.85);
}.tc-wp-tool-root .comments-container::-webkit-scrollbar-thumb:hover{
    background: var(--purple);
}.tc-wp-tool-root .scroll-indicator{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: scrollPulse 2s ease-in-out infinite;
    cursor: pointer;
}.tc-wp-tool-root .scroll-indicator:hover{
    transform: translateX(-50%) translateY(-4px);
    box-shadow: var(--shadow-xl);
}.tc-wp-tool-root .scroll-indicator.show{
    display: flex;
}.tc-wp-tool-root .scroll-indicator i{
    animation: scrollBounce 1.5s ease-in-out infinite;
}.tc-wp-tool-root .comments-list{
    padding: 0;
}.tc-wp-tool-root .comment-item{
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    animation: commentSlideIn 0.42s ease-out;
}.tc-wp-tool-root .comment-item:hover{
    background: rgba(155, 124, 255, 0.07);
    transform: translateX(4px);
}.tc-wp-tool-root .comment-item::before{
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: var(--gradient-purple);
    transform: scaleY(0);
    transition: transform 0.24s ease;
}.tc-wp-tool-root .comment-item:hover::before{
    transform: scaleY(1);
}.tc-wp-tool-root .comment-header{
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin-bottom: 0.7rem;
}.tc-wp-tool-root .comment-avatar{
    width: 44px;
    height: 44px;
    border: 2px solid var(--border-light);
    background: var(--gradient-purple);
    font-size: 1rem;
}.tc-wp-tool-root .comment-avatar:hover{
    border-color: var(--purple);
    transform: scale(1.05);
}.tc-wp-tool-root .comment-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .comment-user-info{
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.45rem;
    flex-wrap: wrap;
}.tc-wp-tool-root .comment-author{
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
}.tc-wp-tool-root .comment-username{
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}.tc-wp-tool-root .comment-region{
    background: rgba(19, 244, 223, 0.12);
    color: var(--secondary);
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(19, 244, 223, 0.2);
}.tc-wp-tool-root .comment-text{
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: anywhere;
    margin-bottom: 0.75rem;
}.tc-wp-tool-root .comment-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
}.tc-wp-tool-root .comment-stats{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}.tc-wp-tool-root .comment-stat{
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-secondary);
    cursor: pointer;
}.tc-wp-tool-root .comment-stat:hover{
    color: var(--primary);
    transform: translateY(-1px);
}.tc-wp-tool-root .comment-stat i{
    font-size: 0.9rem;
}.tc-wp-tool-root .comment-meta{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}.tc-wp-tool-root .comment-time{
    font-weight: 600;
}.tc-wp-tool-root .comment-id{
    font-family: 'Courier New', monospace;
    background: rgba(148, 163, 184, 0.12);
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
}.tc-wp-tool-root .empty-state{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    min-height: 260px;
}.tc-wp-tool-root .empty-state i{
    font-size: 4rem;
    margin-bottom: 1.35rem;
    opacity: 0.72;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.tc-wp-tool-root .empty-state h3{
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
    color: var(--text-primary);
}.tc-wp-tool-root .empty-state p{
    line-height: 1.55;
}.tc-wp-tool-root .error-message{
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.36);
    color: #fecaca;
    padding: 1rem 1.25rem;
    margin: 1rem;
    border-radius: 14px;
    display: none;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(127, 29, 29, 0.2);
}.tc-wp-tool-root .error-message.show{
    display: flex;
    animation: errorSlideIn 0.3s ease-out;
}.tc-wp-tool-root .fas{
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    line-height: 1;
}.tc-wp-tool-root .fab{
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1;
}.tc-wp-tool-root .fa-check-circle, .tc-wp-tool-root .fa-chevron-down, .tc-wp-tool-root .fa-comment-slash, .tc-wp-tool-root .fa-comments, .tc-wp-tool-root .fa-exclamation-triangle, .tc-wp-tool-root .fa-pause, .tc-wp-tool-root .fa-play, .tc-wp-tool-root .fa-redo, .tc-wp-tool-root .fa-reply, .tc-wp-tool-root .fa-search, .tc-wp-tool-root .fa-spin, .tc-wp-tool-root .fa-spinner, .tc-wp-tool-root .fa-tiktok, .tc-wp-tool-root .fa-user, .tc-wp-tool-root .fa-users, .tc-wp-tool-root .fa-video, .tc-wp-tool-root .fa-volume-mute, .tc-wp-tool-root .fa-volume-up{
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}.tc-wp-tool-root .fa-spin, .tc-wp-tool-root .fa-spinner{
    animation: spin 1s linear infinite;
}.tc-wp-tool-root .hidden{
    display: none !important;
}.tc-wp-tool-root .search-input:focus, .tc-wp-tool-root .search-input:not(:placeholder-shown), .tc-wp-tool-root .search-input:disabled{
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 !important;
}.tc-wp-tool-root .search-form:has(.search-input:focus), .tc-wp-tool-root .search-form:has(.search-input:not(:placeholder-shown)){
    width: 100% !important;
    display: flex !important;
    gap: 1rem !important;
}.tc-wp-tool-root .search-container:has(.search-btn:disabled) .search-input, .tc-wp-tool-root .search-container:has(.search-btn:disabled) .search-form{
    width: 100% !important;
    min-width: 0 !important;
}@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}@keyframes commentSlideIn {
    from {
        opacity: 0;
        transform: translateX(-18px);
    }

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.84;
    }

    50% {
        opacity: 1;
    }
}@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}@media (max-width: 992px) {.tc-wp-tool-root .main-content{
        grid-template-columns: 1fr;
    }.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
        margin-bottom: 1.5rem;
    }.tc-wp-tool-root .comments-container{
        max-height: 600px;
        min-height: 300px;
    }}@media (max-width: 768px) {.tc-wp-tool-root .container_tiktok{
        padding: 1rem;
    }.tc-wp-tool-root .header{
        padding: 1.5rem;
    }.tc-wp-tool-root .header-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }.tc-wp-tool-root .logo{
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }.tc-wp-tool-root .logo-icon{
        width: 54px;
        height: 54px;
        font-size: 1.55rem;
    }.tc-wp-tool-root .logo-text{
        font-size: 1.75rem;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 0.82rem;
    }.tc-wp-tool-root .search-container{
        max-width: 100%;
    }.tc-wp-tool-root .search-form{
        flex-direction: column;
        gap: 0.75rem;
    }.tc-wp-tool-root .search-input{
        padding: 0.85rem 1rem !important;
        font-size: 0.92rem !important;
    }.tc-wp-tool-root .search-btn{
        padding: 0.85rem 1.25rem;
        font-size: 0.92rem;
        width: 100%;
    }.tc-wp-tool-root .button-group{
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }.tc-wp-tool-root .search-another-btn{
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
        flex-grow: 1;
    }.tc-wp-tool-root .video-stats-bar{
        padding: 0.75rem 1rem;
        gap: 0.65rem;
    }.tc-wp-tool-root .video-stat-item{
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }.tc-wp-tool-root .video-header, .tc-wp-tool-root .video-player-container, .tc-wp-tool-root .comments-header{
        padding: 1rem;
    }.tc-wp-tool-root .video-title{
        font-size: 1rem;
    }.tc-wp-tool-root .video-author{
        padding: 0.75rem;
        gap: 0.75rem;
    }.tc-wp-tool-root .author-avatar{
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }.tc-wp-tool-root .author-info h4{
        font-size: 1rem;
    }.tc-wp-tool-root .author-username{
        font-size: 0.8rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 280px;
    }.tc-wp-tool-root .play-button{
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }.tc-wp-tool-root .video-controls{
        padding: 1rem;
    }.tc-wp-tool-root .control-btn{
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }.tc-wp-tool-root .play-control-btn{
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }.tc-wp-tool-root .volume-slider{
        width: 60px;
    }.tc-wp-tool-root .time-display{
        font-size: 0.75rem;
    }.tc-wp-tool-root .comments-title{
        font-size: 1.1rem;
        gap: 0.5rem;
    }.tc-wp-tool-root .comments-count{
        padding: 0.25rem 0.6rem;
        font-size: 0.75rem;
        min-width: 35px;
    }.tc-wp-tool-root .comment-item{
        padding: 1rem 1.15rem;
    }.tc-wp-tool-root .comment-avatar{
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }.tc-wp-tool-root .comment-user-info{
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }.tc-wp-tool-root .comment-author{
        font-size: 0.9rem;
    }.tc-wp-tool-root .comment-username{
        font-size: 0.8rem;
    }.tc-wp-tool-root .comment-text{
        font-size: 0.9rem;
    }.tc-wp-tool-root .comment-footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }.tc-wp-tool-root .comment-stats{
        gap: 1rem;
    }.tc-wp-tool-root .comment-stat{
        font-size: 0.8rem;
    }.tc-wp-tool-root .comment-meta{
        font-size: 0.7rem;
    }}@media (max-width: 600px) {.tc-wp-tool-root .container_tiktok{
        padding: 0.75rem;
    }.tc-wp-tool-root .header{
        padding: 1rem;
        border-radius: 18px;
    }.tc-wp-tool-root .logo-text{
        font-size: 1.52rem;
    }.tc-wp-tool-root .search-input{
        font-size: 0.85rem !important;
    }.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
        font-size: 0.85rem;
        padding: 0.72rem 1rem;
        border-radius: 13px;
        min-height: 46px;
    }.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
        border-radius: 18px;
    }.tc-wp-tool-root .video-stat-item{
        font-size: 0.75rem;
        padding: 0.32rem 0.58rem;
    }.tc-wp-tool-root .video-title{
        font-size: 0.95rem;
    }.tc-wp-tool-root .author-info h4{
        font-size: 0.95rem;
    }.tc-wp-tool-root .author-username{
        font-size: 0.75rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 250px;
        border-radius: 20px;
    }.tc-wp-tool-root .play-button{
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }.tc-wp-tool-root .control-btn{
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }.tc-wp-tool-root .play-control-btn{
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }.tc-wp-tool-root .comments-title{
        font-size: 1rem;
    }.tc-wp-tool-root .comment-item{
        padding: 0.9rem 1rem;
    }.tc-wp-tool-root .comment-avatar{
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }.tc-wp-tool-root .comment-author{
        font-size: 0.85rem;
    }.tc-wp-tool-root .comment-username, .tc-wp-tool-root .comment-stat{
        font-size: 0.75rem;
    }.tc-wp-tool-root .comment-text{
        font-size: 0.85rem;
    }.tc-wp-tool-root .scroll-indicator{
        display: none !important;
    }}@media (max-width: 400px) {.tc-wp-tool-root .container_tiktok{
        padding: 0.5rem;
    }.tc-wp-tool-root .header{
        padding: 0.75rem;
        border-radius: 14px;
    }.tc-wp-tool-root .logo-icon{
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }.tc-wp-tool-root .logo-text{
        font-size: 1.32rem;
    }.tc-wp-tool-root .search-input{
        padding: 0.65rem 0.8rem !important;
        font-size: 0.8rem !important;
    }.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
        font-size: 0.8rem;
        padding: 0.6rem 0.85rem;
        border-radius: 11px;
    }.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
        border-radius: 14px;
    }.tc-wp-tool-root .video-stat-item{
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        flex-shrink: 0;
    }.tc-wp-tool-root .video-title{
        font-size: 0.9rem;
    }.tc-wp-tool-root .author-avatar{
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }.tc-wp-tool-root .author-info h4{
        font-size: 0.9rem;
    }.tc-wp-tool-root .author-username{
        font-size: 0.7rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 220px;
    }.tc-wp-tool-root .play-button{
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }.tc-wp-tool-root .control-btn{
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }.tc-wp-tool-root .play-control-btn{
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }.tc-wp-tool-root .volume-control{
        gap: 0.5rem;
    }.tc-wp-tool-root .volume-slider{
        width: 50px;
    }.tc-wp-tool-root .time-display{
        font-size: 0.7rem;
    }.tc-wp-tool-root .comments-header{
        padding: 0.75rem;
    }.tc-wp-tool-root .comments-title{
        font-size: 0.9rem;
    }.tc-wp-tool-root .comments-count{
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
        min-width: 30px;
    }.tc-wp-tool-root .comment-item{
        padding: 0.8rem 0.9rem;
    }.tc-wp-tool-root .comment-avatar{
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }.tc-wp-tool-root .comment-author{
        font-size: 0.8rem;
    }.tc-wp-tool-root .comment-username, .tc-wp-tool-root .comment-stat{
        font-size: 0.7rem;
    }.tc-wp-tool-root .comment-text{
        font-size: 0.8rem;
    }.tc-wp-tool-root .comment-stats{
        gap: 0.8rem;
    }.tc-wp-tool-root .scroll-indicator{
        display: none !important;
    }}@media (max-width: 375px) {.tc-wp-tool-root .container_tiktok{
        padding: 0.4rem;
    }.tc-wp-tool-root .header{
        padding: 0.6rem;
        border-radius: 12px;
    }.tc-wp-tool-root .logo-icon{
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }.tc-wp-tool-root .logo-text{
        font-size: 1.22rem;
    }.tc-wp-tool-root .logo-subtitle{
        font-size: 0.7rem;
    }.tc-wp-tool-root .search-input{
        padding: 0.55rem 0.7rem !important;
        font-size: 0.75rem !important;
    }.tc-wp-tool-root .search-btn, .tc-wp-tool-root .search-another-btn{
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        border-radius: 9px;
    }.tc-wp-tool-root .video-section, .tc-wp-tool-root .comments-section{
        border-radius: 12px;
    }.tc-wp-tool-root .video-stats-bar{
        padding: 0.6rem 0.7rem;
        gap: 0.5rem;
    }.tc-wp-tool-root .video-stat-item{
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }.tc-wp-tool-root .video-title{
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }.tc-wp-tool-root .author-avatar{
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }.tc-wp-tool-root .author-info h4{
        font-size: 0.85rem;
    }.tc-wp-tool-root .author-username{
        font-size: 0.65rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 190px;
    }.tc-wp-tool-root .play-button{
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }.tc-wp-tool-root .control-btn{
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }.tc-wp-tool-root .play-control-btn{
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }.tc-wp-tool-root .volume-slider{
        width: 45px;
    }.tc-wp-tool-root .time-display{
        font-size: 0.65rem;
    }.tc-wp-tool-root .comments-header{
        padding: 0.6rem;
    }.tc-wp-tool-root .comments-title{
        font-size: 0.85rem;
        gap: 0.4rem;
    }.tc-wp-tool-root .comments-count{
        padding: 0.15rem 0.4rem;
        font-size: 0.65rem;
        min-width: 28px;
    }.tc-wp-tool-root .comment-item{
        padding: 0.7rem 0.8rem;
    }.tc-wp-tool-root .comment-avatar{
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }.tc-wp-tool-root .comment-author{
        font-size: 0.75rem;
    }.tc-wp-tool-root .comment-username{
        font-size: 0.65rem;
    }.tc-wp-tool-root .comment-text{
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }.tc-wp-tool-root .comment-stats{
        gap: 0.7rem;
    }.tc-wp-tool-root .comment-stat{
        font-size: 0.65rem;
    }.tc-wp-tool-root .comment-meta{
        font-size: 0.6rem;
        gap: 0.7rem;
    }.tc-wp-tool-root .scroll-indicator{
        display: none !important;
    }}@media (max-height: 500px) and (orientation: landscape) {.tc-wp-tool-root .container_tiktok{
        padding: 0.5rem;
    }.tc-wp-tool-root .header{
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }.tc-wp-tool-root .main-content{
        gap: 0.75rem;
    }.tc-wp-tool-root .video-player-wrapper{
        max-width: 200px;
    }.tc-wp-tool-root .comments-container{
        max-height: calc(100vh - 150px);
        min-height: 200px;
    }.tc-wp-tool-root .comment-item{
        padding: 0.75rem 1rem;
    }}.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;
}