@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.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 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }.tc-wp-tool-root{
            --primary-color: #ff0050;
            --primary-light: #ff4081;
            --secondary-color: #9c27b0;
            --tertiary-color: #673ab7;
            --quaternary-color: #3f51b5;
            --text-dark: #2d3748;
            --text-light: #718096;
            --white: #ffffff;
            --white-transparent: rgba(255, 255, 255, 0.95);
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
            --shadow-heavy: rgba(0, 0, 0, 0.15);
            --border-light: #e2e8f0;
            --border-hover: rgba(255, 0, 80, 0.2);
            --success-bg: #c6f6d5;
            --success-color: #2f855a;
            --error-bg: #fed7d7;
            --error-color: #c53030;
        }.tc-wp-tool-root .tiktok_body{
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 25%, var(--secondary-color) 50%, var(--tertiary-color) 75%, var(--quaternary-color) 100%);
            background-attachment: fixed;
           padding:20px;
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
					 min-height:60vh;
        }.tc-wp-tool-root .container_tiktok{
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: clamp(15px, 3vw, 30px);
        }.tc-wp-tool-root .header{
            text-align: center;
            margin-bottom: clamp(30px, 5vw, 50px);
        }.tc-wp-tool-root .logo{
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: clamp(10px, 2vw, 15px);
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(8px, 2vw, 15px);
            flex-wrap: wrap;
        }.tc-wp-tool-root .logo-icon{
            font-size: clamp(2.5rem, 7vw, 4rem);
            animation: followerBounce 2s ease-in-out infinite;
            flex-shrink: 0;
        }@keyframes followerBounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            40% {
                transform: translateY(-10px) rotate(-5deg);
            }

            60% {
                transform: translateY(-5px) rotate(5deg);
            }
        }.tc-wp-tool-root .subtitle{
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            color: rgba(255, 255, 255, 0.95);
            font-weight: 400;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            margin: 0 auto;
        }.tc-wp-tool-root .search-section{
            background: var(--white-transparent);
            border-radius: clamp(15px, 3vw, 25px);
            padding: clamp(25px, 5vw, 45px);
            margin-bottom: clamp(25px, 4vw, 40px);
            box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 0 1px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }.tc-wp-tool-root .input-group{
            display: flex;
            gap: clamp(10px, 2vw, 20px);
            margin-bottom: clamp(20px, 3vw, 30px);
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
        }.tc-wp-tool-root .input-field{
            flex: 1 !important;
            min-width: min(300px, 100%) !important;
            padding: clamp(12px, 2.5vw, 18px) clamp(16px, 3vw, 28px) !important;
            border: 2px solid var(--border-light) !important;
            border-radius: clamp(10px, 2vw, 15px) !important;
            font-size: clamp(14px, 2.5vw, 16px) !important;
            outline: none !important;
            background: var(--white) !important;
            transition: all 0.3s ease !important;
            font-weight: 500 !important;
            box-shadow: 0 4px 15px var(--shadow-light) !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            appearance: none !important;
            width: 100% !important;
        }.tc-wp-tool-root .input-field:focus{
            border-color: var(--primary-color) !important;
            background: var(--white) !important;
            box-shadow: none !important;
            transform: translateY(-2px) !important;
            outline: none !important;
        }.tc-wp-tool-root .btn{
            padding: clamp(12px, 2.5vw, 18px) clamp(20px, 4vw, 35px);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            border: none;
            border-radius: clamp(10px, 2vw, 15px);
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: min(200px, 100%);
            width: 100%;
            box-shadow: 0 8px 25px rgba(255, 0, 80, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
        }.tc-wp-tool-root .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 .btn:hover::before{
            left: 100%;
        }.tc-wp-tool-root .btn:hover{
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 80, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
        }.tc-wp-tool-root .btn:active{
            transform: translateY(-1px);
        }.tc-wp-tool-root .btn:disabled{
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }.tc-wp-tool-root .loading{
            display: none;
            text-align: center;
            padding: clamp(20px, 4vw, 30px);
            color: var(--primary-color);
        }.tc-wp-tool-root .spinner{
            width: clamp(40px, 8vw, 60px);
            height: clamp(40px, 8vw, 60px);
            border: 5px solid rgba(255, 0, 80, 0.1);
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto clamp(15px, 3vw, 20px);
            box-shadow: 0 0 20px rgba(255, 0, 80, 0.2);
        }@keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }.tc-wp-tool-root .loading-text{
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            font-weight: 600;
        }.tc-wp-tool-root .profile-section{
            display: none;
            background: var(--white-transparent);
            border-radius: clamp(15px, 3vw, 25px);
            padding: clamp(25px, 5vw, 45px);
            margin-bottom: clamp(25px, 4vw, 40px);
            box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 0 1px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }.tc-wp-tool-root .profile-header{
            display: flex;
            align-items: center;
            gap: clamp(15px, 3vw, 30px);
            margin-bottom: clamp(20px, 4vw, 35px);
            flex-wrap: wrap;
        }.tc-wp-tool-root .profile-avatar{
            width: clamp(80px, 15vw, 120px);
            height: clamp(80px, 15vw, 120px);
            border-radius: 50%;
            border: 5px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(255, 0, 80, 0.3), 0 10px 30px var(--shadow-medium);
            object-fit: cover;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }.tc-wp-tool-root .profile-avatar:hover{
            transform: scale(1.05);
        }.tc-wp-tool-root .profile-info{
            flex: 1;
            min-width: 0;
        }.tc-wp-tool-root .profile-info h2{
            color: var(--text-dark);
            margin-bottom: clamp(5px, 1vw, 8px);
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 800;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }.tc-wp-tool-root .profile-info p{
            color: var(--text-light);
            margin-bottom: clamp(5px, 1vw, 8px);
            font-weight: 500;
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }.tc-wp-tool-root .stats-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
            gap: clamp(15px, 3vw, 25px);
            margin-top: clamp(20px, 4vw, 35px);
        }.tc-wp-tool-root .stat-card{
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: clamp(20px, 4vw, 30px);
            border-radius: clamp(12px, 2.5vw, 20px);
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(255, 0, 80, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .stat-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }.tc-wp-tool-root .stat-card:hover::before{
            left: 100%;
        }.tc-wp-tool-root .stat-card:hover{
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(255, 0, 80, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
        }.tc-wp-tool-root .stat-number{
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 900;
            display: block;
            margin-bottom: clamp(5px, 1vw, 8px);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .stat-label{
            font-size: clamp(0.8rem, 2vw, 1rem);
            opacity: 0.95;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }.tc-wp-tool-root .followers-section{
            display: none;
            background: var(--white-transparent);
            border-radius: clamp(15px, 3vw, 25px);
            padding: clamp(25px, 5vw, 45px);
            box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 0 1px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }.tc-wp-tool-root .section-title{
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            color: var(--text-dark);
            margin-bottom: clamp(20px, 4vw, 35px);
            text-align: center;
            font-weight: 800;
        }.tc-wp-tool-root .followers-grid{
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
            gap: clamp(10px, 2vw, 15px);
            margin-top: clamp(15px, 3vw, 25px);
        }.tc-wp-tool-root .follower-card{
            background: var(--white);
            border: 1px solid #f1f5f9;
            border-radius: clamp(10px, 2vw, 15px);
            padding: clamp(10px, 2vw, 15px);
            box-shadow: 0 5px 15px var(--shadow-light), 0 0 0 1px rgba(255, 255, 255, 0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: tikTokSlideIn 0.6s ease-out;
        }@keyframes tikTokSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }.tc-wp-tool-root .follower-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--secondary-color));
        }.tc-wp-tool-root .follower-card:hover{
            transform: translateY(-5px);
            box-shadow: 0 12px 30px var(--shadow-medium), 0 0 0 1px rgba(255, 0, 80, 0.1);
            border-color: var(--border-hover);
        }.tc-wp-tool-root .follower-header{
            display: flex;
            align-items: center;
            gap: clamp(8px, 1.5vw, 10px);
            margin-bottom: clamp(8px, 1.5vw, 12px);
        }.tc-wp-tool-root .follower-avatar{
            width: clamp(30px, 6vw, 40px);
            height: clamp(30px, 6vw, 40px);
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            object-fit: cover;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(255, 0, 80, 0.15);
            flex-shrink: 0;
        }.tc-wp-tool-root .follower-card:hover .follower-avatar{
            transform: scale(1.1);
            border-color: var(--primary-light);
            box-shadow: 0 5px 15px rgba(255, 0, 80, 0.25);
        }.tc-wp-tool-root .follower-info{
            flex: 1;
            min-width: 0;
        }.tc-wp-tool-root .follower-name{
            color: var(--text-dark);
            font-size: clamp(0.7rem, 2vw, 0.9rem);
            margin-bottom: 2px;
            font-weight: 700;
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }.tc-wp-tool-root .follower-username{
            color: var(--text-light);
            font-size: clamp(0.6rem, 1.8vw, 0.75rem);
            font-weight: 500;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }.tc-wp-tool-root .follower-stats{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(5px, 1vw, 8px);
            padding-top: clamp(8px, 1.5vw, 10px);
            border-top: 1px solid #f1f5f9;
        }.tc-wp-tool-root .follower-stat{
            text-align: center;
            padding: clamp(4px, 1vw, 6px) clamp(3px, 0.8vw, 4px);
            background: #f8fafc;
            border-radius: clamp(5px, 1.5vw, 8px);
            transition: all 0.3s ease;
        }.tc-wp-tool-root .follower-stat:hover{
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 80, 0.15);
        }.tc-wp-tool-root .follower-stat-number{
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            font-size: clamp(0.6rem, 1.8vw, 0.8rem);
            line-height: 1;
            margin-bottom: clamp(2px, 0.5vw, 3px);
            transition: color 0.3s ease;
        }.tc-wp-tool-root .follower-stat:hover .follower-stat-number{
            color: var(--white);
        }.tc-wp-tool-root .follower-stat-label{
            font-size: clamp(0.5rem, 1.5vw, 0.6rem);
            color: var(--text-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }.tc-wp-tool-root .follower-stat:hover .follower-stat-label{
            color: rgba(255, 255, 255, 0.9);
        }.tc-wp-tool-root .verified-badge{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(10px, 2.5vw, 14px);
            height: clamp(10px, 2.5vw, 14px);
            background: linear-gradient(135deg, #1da1f2 0%, #0d8ecf 100%);
            border-radius: 50%;
            margin-left: clamp(3px, 1vw, 5px);
            color: var(--white);
            font-size: clamp(6px, 1.5vw, 8px);
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(29, 161, 242, 0.3);
            flex-shrink: 0;
        }.tc-wp-tool-root .error-message{
            background: linear-gradient(135deg, var(--error-bg) 0%, #feb2b2 100%);
            color: var(--error-color);
            padding: clamp(12px, 2.5vw, 18px);
            border-radius: clamp(10px, 2vw, 15px);
            margin: clamp(15px, 3vw, 20px) 0;
            border-left: 5px solid #e53e3e;
            display: none;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(197, 48, 48, 0.1);
        }.tc-wp-tool-root .success-message{
            background: linear-gradient(135deg, var(--success-bg) 0%, #9ae6b4 100%);
            color: var(--success-color);
            padding: clamp(12px, 2.5vw, 18px);
            border-radius: clamp(10px, 2vw, 15px);
            margin: clamp(15px, 3vw, 20px) 0;
            border-left: 5px solid #38a169;
            display: none;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(47, 133, 90, 0.1);
        }.tc-wp-tool-root .empty-state{
            text-align: center;
            padding: clamp(50px, 10vw, 80px) clamp(15px, 3vw, 20px);
            color: var(--text-light);
        }.tc-wp-tool-root .empty-state-icon{
            font-size: clamp(3rem, 8vw, 5rem);
            margin-bottom: clamp(15px, 3vw, 25px);
            opacity: 0.6;
            animation: followerBounce 2s ease-in-out infinite;
        }.tc-wp-tool-root .empty-state-text{
            font-size: clamp(0.9rem, 2.5vw, 1.2rem);
            font-weight: 600;
        }.tc-wp-tool-root .floating-hearts{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }.tc-wp-tool-root .heart{
            position: absolute;
            color: var(--primary-color);
            font-size: clamp(12px, 3vw, 20px);
            animation: floatHeart 4s ease-in-out infinite;
            opacity: 0;
            pointer-events: none;
        }.tc-wp-tool-root .search-section{
	background: var(--white-transparent);
	border-radius: clamp(15px, 3vw, 25px);
	padding: clamp(25px, 5vw, 45px) !important;
	margin-bottom: clamp(25px, 4vw, 40px) !important;
	box-shadow: 0 25px 80px var(--shadow-heavy), 0 0 0 1px rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}@keyframes floatHeart {
            0% {
                opacity: 0;
                transform: translateY(100vh) scale(0);
            }

            10% {
                opacity: 1;
                transform: translateY(90vh) scale(1);
            }

            90% {
                opacity: 1;
                transform: translateY(10vh) scale(1);
            }

            100% {
                opacity: 0;
                transform: translateY(0vh) scale(0);
            }
        }@media (max-width: 320px) {.tc-wp-tool-root .container{
                padding: 10px;
            }.tc-wp-tool-root .logo{
                font-size: 1.8rem;
                flex-direction: column;
            }.tc-wp-tool-root .logo-icon{
                font-size: 2rem;
            }.tc-wp-tool-root .input-group{
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }.tc-wp-tool-root .input-field{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .btn{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .profile-header{
                flex-direction: column;
                text-align: center;
            }.tc-wp-tool-root .stats-grid{
                grid-template-columns: 1fr;
                gap: 10px;
            }.tc-wp-tool-root .followers-grid{
                grid-template-columns: 1fr;
                gap: 8px;
            }.tc-wp-tool-root .follower-stats{
                grid-template-columns: 1fr;
            }.tc-wp-tool-root .followers-grid{
	grid-template-columns: repeat(1, 1fr) !important;
	gap: 10px !important;
}.tc-wp-tool-root .stats-grid{
	grid-template-columns: repeat(1, 1fr);
	gap: 12px;
}.tc-wp-tool-root .profile-header{
	display: flex;
	align-items: center;
	gap: clamp(15px, 3vw, 30px);
	margin-bottom: clamp(20px, 4vw, 35px);
	flex-wrap: wrap;
	flex-direction: column !important;
}}@media (min-width: 321px) and (max-width: 480px) {.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
                padding: clamp(20px, 4vw, 30px);
            }.tc-wp-tool-root .input-group{
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }.tc-wp-tool-root .input-field{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .btn{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .stats-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }.tc-wp-tool-root .followers-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }.tc-wp-tool-root .follower-stats{
                grid-template-columns: repeat(2, 1fr);
            }.tc-wp-tool-root .followers-grid{
	grid-template-columns: repeat(1, 1fr) !important;
	gap: 10px !important;
}.tc-wp-tool-root .stats-grid{
	grid-template-columns: repeat(1, 1fr);
	gap: 12px;
}.tc-wp-tool-root .profile-header{
	display: flex;
	align-items: center;
	gap: clamp(15px, 3vw, 30px);
	margin-bottom: clamp(20px, 4vw, 35px);
	flex-wrap: wrap;
	flex-direction: column !important;
}}@media (min-width: 481px) and (max-width: 768px) {.tc-wp-tool-root .container{
                padding: clamp(15px, 3vw, 25px);
            }.tc-wp-tool-root .input-group{
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }.tc-wp-tool-root .input-field{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .btn{
                width: 100%;
                min-width: 100%;
                flex: none;
            }.tc-wp-tool-root .profile-header{
                flex-direction: column;
                text-align: center;
            }.tc-wp-tool-root .stats-grid{
                grid-template-columns: repeat(2, 1fr);
            }.tc-wp-tool-root .followers-grid{
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }.tc-wp-tool-root .followers-grid{
	grid-template-columns: repeat(1, 1fr) !important;
	gap: 10px !important;
}}@media (min-width: 769px) and (max-width: 1024px) {.tc-wp-tool-root .input-group{
                flex-direction: row;
                gap: clamp(10px, 2vw, 20px);
            }.tc-wp-tool-root .input-field{
                flex: 1;
                min-width: min(300px, 100%);
                width: auto;
            }.tc-wp-tool-root .btn{
                min-width: min(200px, 100%);
                width: auto;
                flex-shrink: 0;
            }.tc-wp-tool-root .followers-grid{
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }.tc-wp-tool-root .followers-grid{
	grid-template-columns: repeat(1, 1fr) !important;
	gap: 10px !important;
}}@media (min-width: 1025px) {.tc-wp-tool-root .input-group{
                flex-direction: row;
                gap: clamp(10px, 2vw, 20px);
            }.tc-wp-tool-root .input-field{
                flex: 1;
                min-width: min(300px, 100%);
                width: auto;
            }.tc-wp-tool-root .btn{
                min-width: min(200px, 100%);
                width: auto;
                flex-shrink: 0;
            }.tc-wp-tool-root .followers-grid{
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }}@media (orientation: landscape) and (max-height: 600px) {.tc-wp-tool-root .header{
                margin-bottom: 20px;
            }.tc-wp-tool-root .logo{
                font-size: 2rem;
            }.tc-wp-tool-root .logo-icon{
                font-size: 2.5rem;
            }.tc-wp-tool-root .subtitle{
                font-size: 0.9rem;
            }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
                padding: 20px;
                margin-bottom: 20px;
            }.tc-wp-tool-root .followers-grid{
	grid-template-columns: repeat(1, 1fr) !important;
	gap: 10px !important;
}}@media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {.tc-wp-tool-root .profile-avatar, .tc-wp-tool-root .follower-avatar{
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }}@media (prefers-reduced-motion: reduce) {.tc-wp-tool-root *, .tc-wp-tool-root *::before, .tc-wp-tool-root *::after{
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }.tc-wp-tool-root .floating-hearts{
                display: none;
            }}@media (prefers-color-scheme: dark) {.tc-wp-tool-root{
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 25%, var(--secondary-color) 50%, var(--tertiary-color) 75%, var(--quaternary-color) 100%);
                color: var(--text-dark);
            }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
                background: var(--white-transparent);
                color: var(--text-dark);
            }.tc-wp-tool-root .follower-card{
                background: var(--white);
                color: var(--text-dark);
            }}@media print {.tc-wp-tool-root .floating-hearts, .tc-wp-tool-root .btn, .tc-wp-tool-root .loading{
                display: none !important;
            }.tc-wp-tool-root{
                background: white !important;
                color: black !important;
            }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
                background: white !important;
                box-shadow: none !important;
                border: 1px solid #ccc !important;
            }}.tc-wp-tool-root .btn:focus, .tc-wp-tool-root .input-field:focus{
            outline: none;
        }.tc-wp-tool-root .btn:focus-visible, .tc-wp-tool-root .input-field:focus-visible{
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }@media (hover: none) and (pointer: coarse) {.tc-wp-tool-root .btn:hover, .tc-wp-tool-root .stat-card:hover, .tc-wp-tool-root .follower-card:hover, .tc-wp-tool-root .follower-stat:hover{
                transform: none;
            }.tc-wp-tool-root .btn:active, .tc-wp-tool-root .stat-card:active, .tc-wp-tool-root .follower-card:active, .tc-wp-tool-root .follower-stat:active{
                transform: scale(0.98);
            }}.tc-wp-tool-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.tc-wp-tool-root{
    --primary-color: #ff0050;
    --primary-light: #ff4f8b;
    --secondary-color: #7c3aed;
    --tertiary-color: #2563eb;
    --quaternary-color: #06b6d4;
    --text-dark: #121826;
    --text-light: #64748b;
    --white: #ffffff;
    --white-transparent: rgba(255, 255, 255, 0.88);
    --shadow-light: rgba(15, 23, 42, 0.06);
    --shadow-medium: rgba(15, 23, 42, 0.12);
    --shadow-heavy: rgba(15, 23, 42, 0.2);
    --border-light: rgba(148, 163, 184, 0.28);
    --border-hover: rgba(255, 0, 80, 0.28);
    --success-bg: #dcfce7;
    --success-color: #166534;
    --error-bg: #fee2e2;
    --error-color: #991b1b;
    --surface-soft: rgba(248, 250, 252, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.96);
    --focus-glow: rgba(255, 0, 80, 0.28);
    --premium-gradient: linear-gradient(135deg, #ff0050 0%, #ff4f8b 32%, #7c3aed 68%, #06b6d4 100%);
    --premium-gradient-hover: linear-gradient(135deg, #e60048 0%, #ff367c 30%, #6d28d9 68%, #0891b2 100%);
}.tc-wp-tool-root .tiktok_body{
    position: relative;
    isolation: isolate;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.26) 0, transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(6, 182, 212, 0.28) 0, transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.24) 0, transparent 36%),
        linear-gradient(135deg, #ff0050 0%, #ff4f8b 24%, #7c3aed 56%, #2563eb 78%, #06b6d4 100%);
    background-attachment: fixed;
    padding: clamp(18px, 3vw, 34px);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 60vh;
}.tc-wp-tool-root .container_tiktok{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(1180px, 100%);
    margin: 0 auto;
    padding: clamp(14px, 2.5vw, 28px);
}.tc-wp-tool-root .header{
    text-align: center;
    margin-bottom: clamp(28px, 5vw, 52px);
}.tc-wp-tool-root .logo{
    font-size: clamp(2rem, 6vw, 3.65rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: clamp(10px, 2vw, 16px);
    text-shadow: 0 8px 32px rgba(15, 23, 42, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 16px);
    flex-wrap: wrap;
    letter-spacing: 0;
}.tc-wp-tool-root .logo-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(58px, 9vw, 82px);
    height: clamp(58px, 9vw, 82px);
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 18px 44px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: followerBounce 2s ease-in-out infinite;
    flex-shrink: 0;
}@keyframes followerBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    40% {
        transform: translateY(-10px) rotate(-5deg);
    }

    60% {
        transform: translateY(-5px) rotate(5deg);
    }
}.tc-wp-tool-root .subtitle{
    font-size: clamp(0.95rem, 2.5vw, 1.18rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0;
    text-shadow: 0 2px 14px rgba(15, 23, 42, 0.24);
    max-width: 660px;
    margin: 0 auto;
}.tc-wp-tool-root .search-section{
    background: var(--white-transparent);
    border-radius: clamp(18px, 3vw, 28px);
    padding: clamp(24px, 5vw, 46px) !important;
    margin-bottom: clamp(24px, 4vw, 40px) !important;
    box-shadow: 0 28px 90px var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.38);
}.tc-wp-tool-root .input-group{
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    margin-bottom: clamp(18px, 3vw, 28px);
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}.tc-wp-tool-root .input-field{
    flex: 1 1 360px !important;
    min-width: min(300px, 100%) !important;
    padding: clamp(14px, 2.5vw, 18px) clamp(16px, 3vw, 24px) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: clamp(14px, 2vw, 18px) !important;
    font-size: clamp(14px, 2.5vw, 16px) !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.92) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease !important;
    font-weight: 550 !important;
    color: var(--text-dark) !important;
    box-shadow: 0 12px 28px var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    min-height: 56px !important;
}.tc-wp-tool-root .input-field::placeholder{
    color: #94a3b8;
    font-weight: 500;
}.tc-wp-tool-root .input-field:focus{
    border-color: var(--primary-color) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 4px var(--focus-glow), 0 18px 38px rgba(15, 23, 42, 0.1) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}.tc-wp-tool-root .btn{
    padding: clamp(14px, 2.5vw, 18px) clamp(22px, 4vw, 34px);
    background: var(--premium-gradient);
    color: var(--white);
    border: none;
    border-radius: clamp(14px, 2vw, 18px);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease;
    min-width: min(210px, 100%);
    width: auto;
    box-shadow: 0 16px 34px rgba(255, 0, 80, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    letter-spacing: 0;
}.tc-wp-tool-root .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transition: left 0.55s ease;
}.tc-wp-tool-root .btn:hover::before{
    left: 120%;
}.tc-wp-tool-root .btn:hover{
    background: var(--premium-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(255, 0, 80, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.22);
    filter: saturate(1.06);
}.tc-wp-tool-root .btn:active{
    transform: translateY(-1px) scale(0.99);
}.tc-wp-tool-root .btn:disabled{
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(0.1);
}.tc-wp-tool-root .loading{
    display: none;
    text-align: center;
    padding: clamp(22px, 4vw, 34px);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}.tc-wp-tool-root .spinner{
    width: clamp(42px, 8vw, 62px);
    height: clamp(42px, 8vw, 62px);
    border: 5px solid rgba(255, 0, 80, 0.12);
    border-top: 5px solid var(--primary-color);
    border-right-color: rgba(124, 58, 237, 0.8);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    margin: 0 auto clamp(14px, 3vw, 20px);
    box-shadow: 0 0 28px rgba(255, 0, 80, 0.24);
}@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}.tc-wp-tool-root .loading-text{
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 750;
    color: var(--text-dark);
}.tc-wp-tool-root .profile-section{
    display: none;
    background: var(--white-transparent);
    border-radius: clamp(18px, 3vw, 28px);
    padding: clamp(24px, 5vw, 46px);
    margin-bottom: clamp(24px, 4vw, 40px);
    box-shadow: 0 28px 90px var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.38);
}.tc-wp-tool-root .profile-header{
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 32px);
    margin-bottom: clamp(22px, 4vw, 36px);
    flex-wrap: wrap;
}.tc-wp-tool-root .profile-avatar{
    width: clamp(84px, 15vw, 124px);
    height: clamp(84px, 15vw, 124px);
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.94);
    outline: 3px solid var(--primary-color);
    box-shadow: 0 0 34px rgba(255, 0, 80, 0.28), 0 16px 34px var(--shadow-medium);
    object-fit: cover;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}.tc-wp-tool-root .profile-avatar:hover{
    transform: scale(1.045);
    box-shadow: 0 0 42px rgba(255, 0, 80, 0.34), 0 20px 42px var(--shadow-medium);
}.tc-wp-tool-root .profile-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .profile-info h2{
    color: var(--text-dark);
    margin-bottom: clamp(5px, 1vw, 8px);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0;
}.tc-wp-tool-root .profile-info p{
    color: var(--text-light);
    margin-bottom: clamp(5px, 1vw, 8px);
    font-weight: 550;
    font-size: clamp(0.95rem, 2.5vw, 1.08rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}.tc-wp-tool-root .stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
    gap: clamp(14px, 3vw, 24px);
    margin-top: clamp(22px, 4vw, 36px);
}.tc-wp-tool-root .stat-card{
    background: var(--premium-gradient);
    color: var(--white);
    padding: clamp(22px, 4vw, 32px);
    border-radius: clamp(16px, 2.5vw, 22px);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 18px 44px rgba(255, 0, 80, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .stat-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.55s ease;
}.tc-wp-tool-root .stat-card:hover::before{
    left: 120%;
}.tc-wp-tool-root .stat-card:hover{
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 26px 62px rgba(255, 0, 80, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.32);
    filter: saturate(1.05);
}.tc-wp-tool-root .stat-number{
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 950;
    display: block;
    margin-bottom: clamp(5px, 1vw, 8px);
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.24);
    line-height: 1.1;
}.tc-wp-tool-root .stat-label{
    font-size: clamp(0.78rem, 2vw, 0.95rem);
    opacity: 0.96;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}.tc-wp-tool-root .followers-section{
    display: none;
    background: var(--white-transparent);
    border-radius: clamp(18px, 3vw, 28px);
    padding: clamp(24px, 5vw, 46px);
    box-shadow: 0 28px 90px var(--shadow-heavy), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.38);
}.tc-wp-tool-root .section-title{
    font-size: clamp(1.45rem, 4vw, 2.18rem);
    color: var(--text-dark);
    margin-bottom: clamp(20px, 4vw, 34px);
    text-align: center;
    font-weight: 900;
    letter-spacing: 0;
}.tc-wp-tool-root .followers-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
    gap: clamp(12px, 2vw, 18px);
    margin-top: clamp(16px, 3vw, 26px);
}.tc-wp-tool-root .follower-card{
    background: var(--surface-strong);
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: clamp(14px, 2vw, 18px);
    padding: clamp(14px, 2vw, 18px);
    box-shadow: 0 10px 28px var(--shadow-light), inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    animation: tikTokSlideIn 0.6s ease-out;
}@keyframes tikTokSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}.tc-wp-tool-root .follower-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--premium-gradient);
}.tc-wp-tool-root .follower-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px var(--shadow-medium), 0 0 0 1px rgba(255, 0, 80, 0.08);
    border-color: var(--border-hover);
}.tc-wp-tool-root .follower-header{
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 12px);
    margin-bottom: clamp(10px, 1.5vw, 14px);
}.tc-wp-tool-root .follower-avatar{
    width: clamp(36px, 6vw, 46px);
    height: clamp(36px, 6vw, 46px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.95);
    outline: 2px solid var(--primary-color);
    object-fit: cover;
    transition: transform 0.25s ease, box-shadow 0.25s ease, outline-color 0.25s ease;
    box-shadow: 0 6px 16px rgba(255, 0, 80, 0.16);
    flex-shrink: 0;
}.tc-wp-tool-root .follower-card:hover .follower-avatar{
    transform: scale(1.08);
    outline-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(255, 0, 80, 0.26);
}.tc-wp-tool-root .follower-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .follower-name{
    color: var(--text-dark);
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    margin-bottom: 2px;
    font-weight: 800;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
}.tc-wp-tool-root .follower-username{
    color: var(--text-light);
    font-size: clamp(0.68rem, 1.8vw, 0.78rem);
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}.tc-wp-tool-root .follower-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(7px, 1vw, 10px);
    padding-top: clamp(10px, 1.5vw, 12px);
    border-top: 1px solid rgba(226, 232, 240, 0.92);
}.tc-wp-tool-root .follower-stat{
    text-align: center;
    padding: clamp(7px, 1vw, 9px) clamp(5px, 0.8vw, 7px);
    background: var(--surface-soft);
    border: 1px solid rgba(226, 232, 240, 0.72);
    border-radius: clamp(9px, 1.5vw, 12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}.tc-wp-tool-root .follower-stat:hover{
    background: var(--premium-gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(255, 0, 80, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}.tc-wp-tool-root .follower-stat-number{
    font-weight: 850;
    color: var(--primary-color);
    display: block;
    font-size: clamp(0.72rem, 1.8vw, 0.84rem);
    line-height: 1;
    margin-bottom: clamp(3px, 0.5vw, 4px);
    transition: color 0.25s ease;
}.tc-wp-tool-root .follower-stat:hover .follower-stat-number{
    color: var(--white);
}.tc-wp-tool-root .follower-stat-label{
    font-size: clamp(0.56rem, 1.5vw, 0.64rem);
    color: var(--text-light);
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.25s ease;
}.tc-wp-tool-root .follower-stat:hover .follower-stat-label{
    color: rgba(255, 255, 255, 0.9);
}.tc-wp-tool-root .verified-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(11px, 2.5vw, 15px);
    height: clamp(11px, 2.5vw, 15px);
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    border-radius: 50%;
    margin-left: clamp(3px, 1vw, 5px);
    color: var(--white);
    font-size: clamp(6px, 1.5vw, 8px);
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.32);
    flex-shrink: 0;
}.tc-wp-tool-root .error-message{
    background: linear-gradient(135deg, var(--error-bg) 0%, #fecaca 100%);
    color: var(--error-color);
    padding: clamp(14px, 2.5vw, 18px);
    border-radius: clamp(14px, 2vw, 18px);
    margin: clamp(15px, 3vw, 20px) 0;
    border-left: 5px solid #ef4444;
    display: none;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(153, 27, 27, 0.12);
}.tc-wp-tool-root .success-message{
    background: linear-gradient(135deg, var(--success-bg) 0%, #bbf7d0 100%);
    color: var(--success-color);
    padding: clamp(14px, 2.5vw, 18px);
    border-radius: clamp(14px, 2vw, 18px);
    margin: clamp(15px, 3vw, 20px) 0;
    border-left: 5px solid #22c55e;
    display: none;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(22, 101, 52, 0.12);
}.tc-wp-tool-root .empty-state{
    text-align: center;
    padding: clamp(46px, 10vw, 78px) clamp(16px, 3vw, 22px);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.58);
    border: 1px dashed rgba(148, 163, 184, 0.42);
    border-radius: 22px;
}.tc-wp-tool-root .empty-state-icon{
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: clamp(15px, 3vw, 24px);
    opacity: 0.72;
    animation: followerBounce 2s ease-in-out infinite;
}.tc-wp-tool-root .empty-state-text{
    font-size: clamp(0.95rem, 2.5vw, 1.18rem);
    font-weight: 700;
    color: var(--text-dark);
}.tc-wp-tool-root .floating-hearts{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}.tc-wp-tool-root .heart{
    position: absolute;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(12px, 3vw, 20px);
    animation: floatHeart 4s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
    text-shadow: 0 4px 16px rgba(255, 0, 80, 0.32);
}@keyframes floatHeart {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(0vh) scale(0);
    }
}@media (max-width: 320px) {.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: 10px;
    }.tc-wp-tool-root .tiktok_body{
        padding: 12px;
    }.tc-wp-tool-root .logo{
        font-size: 1.75rem;
        flex-direction: column;
    }.tc-wp-tool-root .logo-icon{
        width: 52px;
        height: 52px;
        font-size: 2rem;
        border-radius: 18px;
    }.tc-wp-tool-root .subtitle{
        font-size: 0.88rem;
    }.tc-wp-tool-root .input-group{
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }.tc-wp-tool-root .input-field{
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
    }.tc-wp-tool-root .btn{
        width: 100%;
        min-width: 100%;
        flex: none;
    }.tc-wp-tool-root .profile-header{
        flex-direction: column !important;
        text-align: center;
    }.tc-wp-tool-root .stats-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 10px !important;
    }.tc-wp-tool-root .follower-stats{
        grid-template-columns: 1fr;
    }}@media (min-width: 321px) and (max-width: 480px) {.tc-wp-tool-root .tiktok_body{
        padding: 14px;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
        padding: clamp(20px, 4vw, 30px) !important;
        border-radius: 20px;
    }.tc-wp-tool-root .input-group{
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }.tc-wp-tool-root .input-field{
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
    }.tc-wp-tool-root .btn{
        width: 100%;
        min-width: 100%;
        flex: none;
    }.tc-wp-tool-root .profile-header{
        display: flex;
        align-items: center;
        gap: clamp(15px, 3vw, 30px);
        margin-bottom: clamp(20px, 4vw, 35px);
        flex-wrap: wrap;
        flex-direction: column !important;
        text-align: center;
    }.tc-wp-tool-root .stats-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 10px !important;
    }.tc-wp-tool-root .follower-stats{
        grid-template-columns: repeat(2, 1fr);
    }}@media (min-width: 481px) and (max-width: 768px) {.tc-wp-tool-root .container, .tc-wp-tool-root .container_tiktok{
        padding: clamp(15px, 3vw, 25px);
    }.tc-wp-tool-root .input-group{
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }.tc-wp-tool-root .input-field{
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
    }.tc-wp-tool-root .btn{
        width: 100%;
        min-width: 100%;
        flex: none;
    }.tc-wp-tool-root .profile-header{
        flex-direction: column;
        text-align: center;
    }.tc-wp-tool-root .stats-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 12px !important;
    }}@media (min-width: 769px) and (max-width: 1024px) {.tc-wp-tool-root .input-group{
        flex-direction: row;
        gap: clamp(12px, 2vw, 18px);
    }.tc-wp-tool-root .input-field{
        flex: 1 1 360px !important;
        min-width: min(300px, 100%) !important;
        width: auto !important;
    }.tc-wp-tool-root .btn{
        min-width: min(200px, 100%);
        width: auto;
        flex-shrink: 0;
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
    }}@media (min-width: 1025px) {.tc-wp-tool-root .input-group{
        flex-direction: row;
        gap: clamp(12px, 2vw, 18px);
    }.tc-wp-tool-root .input-field{
        flex: 1 1 360px !important;
        min-width: min(300px, 100%) !important;
        width: auto !important;
    }.tc-wp-tool-root .btn{
        min-width: min(210px, 100%);
        width: auto;
        flex-shrink: 0;
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }}@media (orientation: landscape) and (max-height: 600px) {.tc-wp-tool-root .header{
        margin-bottom: 20px;
    }.tc-wp-tool-root .logo{
        font-size: 2rem;
    }.tc-wp-tool-root .logo-icon{
        width: 54px;
        height: 54px;
        font-size: 2.35rem;
    }.tc-wp-tool-root .subtitle{
        font-size: 0.9rem;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
        padding: 20px !important;
        margin-bottom: 20px !important;
    }.tc-wp-tool-root .followers-grid{
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
        gap: 12px !important;
    }}@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {.tc-wp-tool-root .profile-avatar, .tc-wp-tool-root .follower-avatar{
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }}@media (prefers-reduced-motion: reduce) {.tc-wp-tool-root *, .tc-wp-tool-root *::before, .tc-wp-tool-root *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }.tc-wp-tool-root .floating-hearts{
        display: none;
    }}@media (prefers-color-scheme: dark) {.tc-wp-tool-root{
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 25%, var(--secondary-color) 50%, var(--tertiary-color) 75%, var(--quaternary-color) 100%);
        color: var(--text-dark);
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
        background: var(--white-transparent);
        color: var(--text-dark);
    }.tc-wp-tool-root .follower-card{
        background: var(--white);
        color: var(--text-dark);
    }}@media print {.tc-wp-tool-root .floating-hearts, .tc-wp-tool-root .btn, .tc-wp-tool-root .loading{
        display: none !important;
    }.tc-wp-tool-root{
        background: white !important;
        color: black !important;
    }.tc-wp-tool-root .search-section, .tc-wp-tool-root .profile-section, .tc-wp-tool-root .followers-section{
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }}.tc-wp-tool-root .btn:focus, .tc-wp-tool-root .input-field:focus{
    outline: none;
}.tc-wp-tool-root .btn:focus-visible, .tc-wp-tool-root .input-field:focus-visible{
    outline: 3px solid rgba(255, 255, 255, 0.82);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--focus-glow), 0 16px 34px rgba(255, 0, 80, 0.28);
}@media (hover: none) and (pointer: coarse) {.tc-wp-tool-root .btn:hover, .tc-wp-tool-root .stat-card:hover, .tc-wp-tool-root .follower-card:hover, .tc-wp-tool-root .follower-stat:hover{
        transform: none;
    }.tc-wp-tool-root .btn:active, .tc-wp-tool-root .stat-card:active, .tc-wp-tool-root .follower-card:active, .tc-wp-tool-root .follower-stat:active{
        transform: scale(0.98);
    }}.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;
}