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

/* 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{
            
            --bg-gradient-1: #f8f9fa;
            --bg-gradient-2: #e9ecef;
            --bg-gradient-3: #dee2e6;
            --surface-dark: #ffffff;
            --surface-light: #ffffff;
            --glass-bg-dark: rgba(255, 255, 255, 0.95);

            
            --primary: #0d6efd;
            --secondary: #6c757d;
            --accent: #198754;
            --accent-secondary: #0dcaf0;
            --success: #198754;
            --warning: #ffc107;
            --error: #dc3545;

            
            --text-primary-light: #212529;
            --text-secondary-light: #495057;
            --text-muted-light: #6c757d;

            
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
            --shadow-glow-primary: 0 0 15px rgba(13, 110, 253, 0.3);
            --shadow-glow-accent: 0 0 15px rgba(25, 135, 84, 0.3);

            
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --border-line-light: 1px solid rgba(0, 0, 0, 0.1);
            --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --backdrop-blur: blur(10px);
        }.tc-wp-tool-root .instagram-story-viewer-wrapper{
	font-family: 'Outfit', sans-serif;
	background: linear-gradient(135deg, #f99a9a, #af79e6, #dd7bc4);
	color: var(--text-primary-light);
	line-height: 1.5;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	margin:0px auto;
	padding:20px;
}.tc-wp-tool-root .hidden{
            display: none !important;
        }.tc-wp-tool-root .app-container{
            display: flex;
            min-height: 100vh;
            max-width: 1400px;
            margin: 40px auto;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 100vh;
        }.tc-wp-tool-root .app-container::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, transparent 30%, rgba(13, 110, 253, 0.03) 60%, rgba(25, 135, 84, 0.05) 100%);
            animation: rotate 60s linear infinite;
            z-index: -1;
        }@keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }.tc-wp-tool-root .side-panel{
            width: 420px;
            background: var(--glass-bg-dark);
            backdrop-filter: var(--backdrop-blur);
            -webkit-backdrop-filter: var(--backdrop-blur);
            border-right: var(--border-line-light);
            display: flex;
            flex-direction: column;
            z-index: 10;
            position: relative;
            overflow: hidden;
            max-height: 100vh;
        }.tc-wp-tool-root .side-panel::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(13, 110, 253, 0.1), transparent);
            z-index: -1;
        }.tc-wp-tool-root .side-panel::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(25, 135, 84, 0.1), transparent);
            z-index: -1;
        }.tc-wp-tool-root .app-header{
            padding: 0.75rem;
            border-bottom: var(--border-line-light);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }.tc-wp-tool-root .app-header::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.1), transparent 70%);
            z-index: -1;
        }.tc-wp-tool-root .app-logo{
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
        }.tc-wp-tool-root .logo-icon{
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary), var(--accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
            position: relative;
            overflow: hidden;
            animation: pulse 3s infinite;
        }@keyframes pulse {
            0% {
                box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
            }

            50% {
                box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
            }

            100% {
                box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
            }
        }.tc-wp-tool-root .logo-icon::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
            animation: rotate 10s linear infinite;
        }.tc-wp-tool-root .logo-icon::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
        }.tc-wp-tool-root .app-title{
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--accent-secondary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
            position: relative;
        }.tc-wp-tool-root .search-container{
            padding: 2rem;
            position: relative;
            flex-shrink: 0;
        }.tc-wp-tool-root .search-container::before{
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle at top right, rgba(25, 135, 84, 0.1), transparent 70%);
            z-index: -1;
        }.tc-wp-tool-root #search-form{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }.tc-wp-tool-root .form-label{
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-secondary-light);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }.tc-wp-tool-root .form-label svg{
            width: 18px;
            height: 18px;
            stroke: var(--primary);
        }.tc-wp-tool-root .input-group{
            position: relative;
        }.tc-wp-tool-root #username-input{
            width: 100%;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--border-radius-lg);
            color: var(--text-primary-light);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: var(--transition-normal);
        }.tc-wp-tool-root #username-input:focus{
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
            background: rgba(255, 255, 255, 0.9);
        }.tc-wp-tool-root #username-input::placeholder{
            color: var(--text-muted-light);
        }.tc-wp-tool-root .input-icon{
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted-light);
        }.tc-wp-tool-root #search-btn{
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary), var(--accent));
            color: white;
            border: none;
            border-radius: var(--border-radius-lg);
            padding: 1.2rem 1.5rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            transition: var(--transition-normal);
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }.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: var(--transition-normal);
        }.tc-wp-tool-root #search-btn:hover{
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(13, 110, 253, 0.3);
        }.tc-wp-tool-root #search-btn:hover::before{
            left: 100%;
            transition: 0.7s;
        }.tc-wp-tool-root #search-btn:active{
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(13, 110, 253, 0.2);
        }.tc-wp-tool-root .profile-section{
            flex: 1;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            max-height: calc(100vh - 200px);
        }.tc-wp-tool-root .profile-section::-webkit-scrollbar{
            width: 6px;
        }.tc-wp-tool-root .profile-section::-webkit-scrollbar-track{
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }.tc-wp-tool-root .profile-section::-webkit-scrollbar-thumb{
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 10px;
        }.tc-wp-tool-root .loading-state{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem 0;
        }.tc-wp-tool-root .spinner{
            width: 60px;
            height: 60px;
            position: relative;
            margin-bottom: 2rem;
        }.tc-wp-tool-root .spinner::before, .tc-wp-tool-root .spinner::after{
            content: '';
            position: absolute;
            border-radius: 50%;
        }.tc-wp-tool-root .spinner::before{
            width: 100%;
            height: 100%;
            background-image: linear-gradient(var(--primary), var(--accent-secondary), var(--accent));
            animation: spin 1s linear infinite;
        }.tc-wp-tool-root .spinner::after{
            top: 10%;
            left: 10%;
            right: 10%;
            bottom: 10%;
            background: var(--surface-dark);
            border-radius: 50%;
        }@keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }.tc-wp-tool-root .loading-text{
            color: var(--text-secondary-light);
            font-size: 1.1rem;
            font-weight: 500;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 2s infinite;
            background-size: 200% 100%;
        }@keyframes shimmer {
            0% {
                background-position: -100% 0;
            }

            100% {
                background-position: 100% 0;
            }
        }.tc-wp-tool-root .profile-data{
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }.tc-wp-tool-root .profile-header{
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.8rem;
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .profile-header:hover{
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
        }.tc-wp-tool-root .profile-header::before{
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1), transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }.tc-wp-tool-root .profile-image-container{
            position: relative;
        }.tc-wp-tool-root .profile-image{
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid transparent;
            background:
                linear-gradient(var(--surface-dark), var(--surface-dark)) padding-box,
                linear-gradient(45deg, var(--primary), var(--accent-secondary), var(--accent)) border-box;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: var(--transition-normal);
            animation: float 6s ease-in-out infinite;
        }@keyframes float {

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

            50% {
                transform: translateY(-8px);
            }
        }.tc-wp-tool-root .profile-image:hover{
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), var(--shadow-glow-primary);
        }.tc-wp-tool-root .profile-image-aura{
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary), var(--accent));
            opacity: 0.15;
            filter: blur(10px);
            z-index: -1;
            animation: pulse-aura 3s ease-in-out infinite alternate;
        }@keyframes pulse-aura {
            0% {
                opacity: 0.1;
                transform: scale(1);
            }

            100% {
                opacity: 0.2;
                transform: scale(1.1);
            }
        }.tc-wp-tool-root .verified-indicator{
            position: absolute;
            bottom: 0;
            right: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(to right, var(--accent-secondary), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            border: 2px solid var(--surface-dark);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }.tc-wp-tool-root .profile-info{
            flex: 1;
        }.tc-wp-tool-root .profile-username{
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: 0.5px;
        }.tc-wp-tool-root .profile-fullname{
            font-size: 1rem;
            color: var(--text-secondary-light);
            font-weight: 500;
        }.tc-wp-tool-root .stories-section-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }.tc-wp-tool-root .stories-section-title{
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary-light);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            letter-spacing: 0.5px;
            position: relative;
        }.tc-wp-tool-root .stories-section-title svg{
            width: 20px;
            height: 20px;
            stroke: var(--accent);
        }.tc-wp-tool-root .stories-section-title::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 3px;
        }.tc-wp-tool-root .stories-count{
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-secondary-light);
            background: rgba(0, 0, 0, 0.05);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
        }.tc-wp-tool-root .stories-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }.tc-wp-tool-root .story-card{
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            cursor: pointer;
            transition: var(--transition-normal);
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }.tc-wp-tool-root .story-card:hover{
            transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
            box-shadow: var(--shadow-lg), var(--shadow-glow-accent);
            border-color: rgba(0, 0, 0, 0.15);
        }.tc-wp-tool-root .story-card::before{
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary), var(--accent));
            border-radius: calc(var(--border-radius-md) + 2px);
            z-index: -1;
            opacity: 0;
            transition: var(--transition-normal);
        }.tc-wp-tool-root .story-card:hover::before{
            opacity: 1;
        }.tc-wp-tool-root .story-preview{
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }.tc-wp-tool-root .story-preview img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
        }.tc-wp-tool-root .story-card:hover .story-preview img{
            transform: scale(1.1);
        }.tc-wp-tool-root .story-preview::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
            z-index: 1;
        }.tc-wp-tool-root .story-type-overlay{
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 30px;
            padding: 0.5rem 1rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }.tc-wp-tool-root .story-type-overlay.video{
            background: rgba(25, 135, 84, 0.7);
        }.tc-wp-tool-root .story-type-overlay.image{
            background: rgba(13, 110, 253, 0.7);
        }.tc-wp-tool-root .story-timestamp-overlay{
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 30px;
            padding: 0.5rem 1rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }.tc-wp-tool-root .story-meta{
            padding: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.05);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .story-meta::before{
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }.tc-wp-tool-root .story-info{
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }.tc-wp-tool-root .story-info svg{
            width: 18px;
            height: 18px;
            stroke: var(--accent);
        }.tc-wp-tool-root .story-time{
            font-size: 0.9rem;
            color: var(--text-secondary-light);
            font-weight: 500;
        }.tc-wp-tool-root .error-panel{
            padding: 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: var(--backdrop-blur);
            -webkit-backdrop-filter: var(--backdrop-blur);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .error-panel::before{
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle at center, rgba(220, 53, 69, 0.05), transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }.tc-wp-tool-root .error-icon{
            width: 80px;
            height: 80px;
            background: rgba(220, 53, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--error);
            margin-bottom: 2rem;
            position: relative;
        }.tc-wp-tool-root .error-icon::after{
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(220, 53, 69, 0.2);
            animation: pulse-error 2s infinite;
        }@keyframes pulse-error {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }.tc-wp-tool-root .error-message{
            color: var(--text-secondary-light);
            font-size: 1.1rem;
            max-width: 300px;
            line-height: 1.6;
            font-weight: 500;
        }.tc-wp-tool-root .error-action{
            margin-top: 2rem;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: var(--border-radius-md);
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-normal);
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
        }.tc-wp-tool-root .error-action:hover{
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
        }.tc-wp-tool-root .main-content{
            flex: 1;
            position: relative;
            background-color: var(--surface-dark);
            overflow: hidden;
            max-height: 100vh;
        }.tc-wp-tool-root .main-content::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(25, 135, 84, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(32, 201, 151, 0.03) 0%, transparent 60%);
            z-index: 0;
        }.tc-wp-tool-root .welcome-panel{
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
            overflow-y: auto;
            max-height: 100vh;
					  background: hsla(344, 97%, 63%, 1);

background: linear-gradient(90deg, hsla(344, 97%, 63%, 1) 0%, hsla(232, 90%, 59%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(344, 97%, 63%, 1) 0%, hsla(232, 90%, 59%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(344, 97%, 63%, 1) 0%, hsla(232, 90%, 59%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FC4778", endColorstr="#3952F5", GradientType=1 );
        }.tc-wp-tool-root .welcome-illustration{
            width: 320px;
            height: 320px;
            margin-bottom: 3rem;
            position: relative;
            flex-shrink: 0;
        }.tc-wp-tool-root .welcome-illustration::before{
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(25, 135, 84, 0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: pulse-illustration 5s ease-in-out infinite alternate;
        }@keyframes pulse-illustration {
            0% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(0.9);
            }

            100% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }.tc-wp-tool-root .circle-1, .tc-wp-tool-root .circle-2, .tc-wp-tool-root .circle-3{
            position: absolute;
            border-radius: 50%;
            opacity: 0.8;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(30px);
        }.tc-wp-tool-root .circle-1{
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary));
            animation: pulse-circle 8s ease-in-out infinite alternate;
        }.tc-wp-tool-root .circle-2{
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, var(--accent-secondary), var(--accent));
            animation: pulse-circle 6s ease-in-out infinite alternate-reverse;
        }.tc-wp-tool-root .circle-3{
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--accent), var(--warning));
            animation: pulse-circle 4s ease-in-out infinite alternate;
        }@keyframes pulse-circle {
            0% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(0.8);
            }

            100% {
                opacity: 0.7;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }.tc-wp-tool-root .illustration-icon{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            z-index: 2;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }.tc-wp-tool-root .welcome-title{
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #ccf1ff, var(--accent-secondary), #f2dc24);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -1px;
	position: relative;
}.tc-wp-tool-root .welcome-title::after{
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 4px;
        }.tc-wp-tool-root .welcome-description{
	color: #f4f9fd;
	font-size: 1.2rem;
	max-width: 600px;
	margin-bottom: 4rem;
	line-height: 1.8;
	font-weight: 500;
}.tc-wp-tool-root .instashot-features-list{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-shrink: 0;
        }.tc-wp-tool-root .instashot-feature-item{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: relative;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: var(--backdrop-blur);
            -webkit-backdrop-filter: var(--backdrop-blur);
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 180px;
            height: 180px;
            overflow: hidden;
        }.tc-wp-tool-root .instashot-feature-item:hover{
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
            border-color: rgba(0, 0, 0, 0.1);
        }.tc-wp-tool-root .instashot-feature-icon{
            width: 60px;
            height: 60px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
        }.tc-wp-tool-root .instashot-feature-icon-1{
            background: linear-gradient(45deg, var(--primary), var(--accent-secondary));
        }.tc-wp-tool-root .instashot-feature-icon-2{
            background: linear-gradient(45deg, var(--accent-secondary), var(--accent));
        }.tc-wp-tool-root .instashot-feature-icon-3{
            background: linear-gradient(45deg, var(--accent), var(--warning));
        }.tc-wp-tool-root .instashot-feature-icon::before{
            content: '';
            position: absolute;
            inset: -5px;
            background: inherit;
            border-radius: inherit;
            filter: blur(10px);
            opacity: 0.5;
            z-index: -1;
        }.tc-wp-tool-root .instashot-feature-text{
            font-size: 1rem;
            color: var(--text-primary-light);
            font-weight: 600;
            text-align: center;
        }.tc-wp-tool-root .story-player{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 5;
        }.tc-wp-tool-root .story-control-bar{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
            z-index: 15;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }.tc-wp-tool-root .story-user-data{
            display: flex;
            align-items: center;
            gap: 1rem;
        }.tc-wp-tool-root .story-user-image{
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .story-username{
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }.tc-wp-tool-root .story-timestamp{
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }.tc-wp-tool-root .story-actions{
            display: flex;
            gap: 1rem;
        }.tc-wp-tool-root .control-btn{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-normal);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }.tc-wp-tool-root .control-btn:hover{
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .progress-track{
            position: absolute;
            top: 90px;
            left: 0;
            right: 0;
            padding: 0 1.5rem;
            display: flex;
            gap: 8px;
            z-index: 10;
        }.tc-wp-tool-root .progress-indicator{
            height: 4px;
            flex: 1;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }.tc-wp-tool-root .app-logo{
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	flex-direction: column !important;
}.tc-wp-tool-root .app-title{
	font-size: 1.6rem;
	font-weight: 800;
	background: linear-gradient(to right, var(--primary), var(--accent-secondary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.5px;
	position: relative;
	text-align: center;
}.tc-wp-tool-root .progress-fill{
            height: 100%;
            width: 0;
            background: linear-gradient(to right, var(--primary), var(--accent-secondary), var(--accent));
            border-radius: 4px;
            transition: width 0.1s linear;
        }.tc-wp-tool-root .progress-indicator.completed .progress-fill{
            width: 100%;
            background: white;
        }.tc-wp-tool-root .media-container{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
        }.tc-wp-tool-root .media-container img, .tc-wp-tool-root .media-container video{
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }.tc-wp-tool-root .navigation-overlay{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            z-index: 5;
        }.tc-wp-tool-root .nav-area{
            flex: 1;
            background: transparent;
            border: none;
            cursor: pointer;
            position: relative;
        }.tc-wp-tool-root .nav-indicator{
            position: absolute;
            top: 50%;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%);
            opacity: 0;
            transition: var(--transition-normal);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .app-header{
	padding: 0.75rem;
	border-bottom: var(--border-line-light);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	background: #201b59;
}.tc-wp-tool-root .profile-section{
	flex: 1;
	overflow-y: auto;
	padding: 2rem;
	position: relative;
	max-height: calc(100vh - 200px);
	background: #29276d;
}.tc-wp-tool-root .search-container{
	padding: 2rem;
	position: relative;
	flex-shrink: 0;
	background: #0e1c55;
}.tc-wp-tool-root .prev-area .nav-indicator{
            left: 30px;
        }.tc-wp-tool-root .next-area .nav-indicator{
            right: 30px;
        }.tc-wp-tool-root .nav-area:hover .nav-indicator{
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }.tc-wp-tool-root .animate-fade-in-up{
            animation: fadeInUp 0.6s ease forwards;
        }.tc-wp-tool-root .story-card:nth-child(1){
            animation-delay: 0.1s;
        }.tc-wp-tool-root .story-card:nth-child(2){
            animation-delay: 0.2s;
        }.tc-wp-tool-root .story-card:nth-child(3){
            animation-delay: 0.3s;
        }.tc-wp-tool-root .story-card:nth-child(4){
            animation-delay: 0.4s;
        }.tc-wp-tool-root .form-label{
	font-size: 1rem;
	font-weight: 600;
	color: #eff5fb;
	margin-bottom: 0.5rem;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}@media (max-width: 1200px) {.tc-wp-tool-root .app-container{
                margin: 0;
                height: 100vh;
            }}@media (max-width: 992px) {.tc-wp-tool-root .app-container{
                flex-direction: column;
                height: 100vh;
                overflow: hidden;
            }.tc-wp-tool-root .side-panel{
                width: 100%;
                max-height: 50vh;
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }.tc-wp-tool-root .app-header, .tc-wp-tool-root .search-container, .tc-wp-tool-root .profile-section{
                padding: 1.5rem;
            }.tc-wp-tool-root .profile-section{
                max-height: calc(50vh - 200px);
                overflow-y: auto;
            }.tc-wp-tool-root .main-content{
                max-height: 50vh;
                overflow: hidden;
            }.tc-wp-tool-root .welcome-panel{
                max-height: 50vh;
                overflow-y: auto;
                padding: 1.5rem;
            }.tc-wp-tool-root .welcome-illustration{
                width: 200px;
                height: 200px;
                margin-bottom: 2rem;
            }.tc-wp-tool-root .welcome-title{
                font-size: 2.5rem;
            }.tc-wp-tool-root .welcome-description{
                font-size: 1rem;
                margin-bottom: 2rem;
            }.tc-wp-tool-root .instashot-features-list{
                gap: 1rem;
                margin-top: 1rem;
            }.tc-wp-tool-root .instashot-feature-item{
                width: 140px;
                height: 140px;
                padding: 1.5rem;
            }}@media (max-width: 768px) {.tc-wp-tool-root .app-logo{
                margin-bottom: 1rem;
            }.tc-wp-tool-root .app-title{
                font-size: 1.5rem;
            }.tc-wp-tool-root .profile-header{
                padding: 1.2rem;
            }.tc-wp-tool-root .profile-image{
                width: 60px;
                height: 60px;
            }.tc-wp-tool-root .welcome-title{
                font-size: 2.2rem;
            }.tc-wp-tool-root .welcome-description{
                font-size: 1rem;
            }.tc-wp-tool-root .instashot-features-list{
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }.tc-wp-tool-root .welcome-illustration{
                width: 250px;
                height: 250px;
                margin-bottom: 2rem;
            }.tc-wp-tool-root .side-panel{
                max-height: 60vh;
            }.tc-wp-tool-root .main-content{
                max-height: 40vh;
            }}@media (max-width: 576px) {.tc-wp-tool-root .stories-grid{
                grid-template-columns: 1fr;
            }.tc-wp-tool-root .story-preview{
                height: 220px;
            }.tc-wp-tool-root .story-control-bar{
                padding: 1.2rem;
            }.tc-wp-tool-root .story-user-image{
                width: 40px;
                height: 40px;
            }.tc-wp-tool-root .welcome-illustration{
                width: 200px;
                height: 200px;
                margin-bottom: 1.5rem;
            }.tc-wp-tool-root .welcome-title{
                font-size: 1.8rem;
            }.tc-wp-tool-root .welcome-description{
                font-size: 0.9rem;
                margin-bottom: 2.5rem;
            }.tc-wp-tool-root .progress-track{
                top: 80px;
            }.tc-wp-tool-root .instashot-feature-item{
                width: 150px;
                height: 150px;
                padding: 1.5rem;
            }.tc-wp-tool-root .instashot-feature-icon{
                width: 50px;
                height: 50px;
            }.tc-wp-tool-root .side-panel{
                max-height: 70vh;
            }.tc-wp-tool-root .main-content{
                max-height: 30vh;
            }.tc-wp-tool-root .welcome-panel{
                padding: 1rem;
            }.tc-wp-tool-root .search-container{
                padding: 1.5rem;
            }.tc-wp-tool-root .profile-section{
                padding: 1.5rem;
                max-height: calc(70vh - 250px);
            }}.tc-wp-tool-root .toast-container{
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }.tc-wp-tool-root .toast{
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--border-radius-md);
            padding: 1rem 1.5rem;
            color: var(--text-primary-light);
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            min-width: 300px;
        }.tc-wp-tool-root .toast.show{
            transform: translateX(0);
            opacity: 1;
        }.tc-wp-tool-root .toast.success{
            border-left: 4px solid var(--success);
        }.tc-wp-tool-root .toast.error{
            border-left: 4px solid var(--error);
        }.tc-wp-tool-root .toast.info{
            border-left: 4px solid var(--accent-secondary);
        }.tc-wp-tool-root .toast-icon{
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }.tc-wp-tool-root .toast-message{
            flex: 1;
        }.tc-wp-tool-root .toast-close{
            background: none;
            border: none;
            color: var(--text-muted-light);
            cursor: pointer;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }.tc-wp-tool-root .toast-close:hover{
            color: var(--text-primary-light);
        }.tc-wp-tool-root .no-stories-message{
            padding: 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: var(--backdrop-blur);
            -webkit-backdrop-filter: var(--backdrop-blur);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }.tc-wp-tool-root .no-stories-message::before{
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1), transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }.tc-wp-tool-root .no-stories-icon{
            width: 80px;
            height: 80px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--warning);
            margin-bottom: 2rem;
            position: relative;
        }.tc-wp-tool-root .no-stories-icon::after{
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(255, 193, 7, 0.2);
            animation: pulse-accent 2s infinite;
        }@keyframes pulse-accent {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }.tc-wp-tool-root .no-stories-title{
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary-light);
            margin-bottom: 1rem;
        }.tc-wp-tool-root .no-stories-description{
            color: var(--text-secondary-light);
            font-size: 1rem;
            max-width: 400px;
            line-height: 1.6;
            font-weight: 500;
        }.tc-wp-tool-root .play-pause-btn{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-normal);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }.tc-wp-tool-root .play-pause-btn:hover{
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .download-btn{
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-normal);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }.tc-wp-tool-root .download-btn:hover{
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }.tc-wp-tool-root .download-btn:active{
            transform: translateY(-1px) scale(0.95);
        }.tc-wp-tool-root *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.tc-wp-tool-root{
    --bg-gradient-1: #fff7fb;
    --bg-gradient-2: #f5f7ff;
    --bg-gradient-3: #eefdf8;
    --surface-dark: #ffffff;
    --surface-light: #ffffff;
    --glass-bg-dark: rgba(255, 255, 255, 0.84);

    --primary: #7c3aed;
    --secondary: #64748b;
    --accent: #10b981;
    --accent-secondary: #06b6d4;
    --success: #16a34a;
    --warning: #f59e0b;
    --error: #ef4444;

    --text-primary-light: #111827;
    --text-secondary-light: #475569;
    --text-muted-light: #6b7280;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.18);
    --shadow-glow-primary: 0 18px 45px rgba(124, 58, 237, 0.24);
    --shadow-glow-accent: 0 18px 45px rgba(16, 185, 129, 0.22);

    --border-radius-sm: 10px;
    --border-radius-md: 14px;
    --border-radius-lg: 22px;
    --border-line-light: 1px solid rgba(148, 163, 184, 0.22);
    --transition-normal: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    --backdrop-blur: blur(18px);
}.tc-wp-tool-root .instagram-story-viewer-wrapper{
    position: relative;
    font-family: 'Outfit', sans-serif;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.34), transparent 25%),
        radial-gradient(circle at 92% 18%, rgba(6, 182, 212, 0.22), transparent 28%),
        linear-gradient(135deg, #fb7185 0%, #8b5cf6 46%, #06b6d4 100%);
    color: var(--text-primary-light);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 auto;
    padding: 24px;
}.tc-wp-tool-root .hidden{
    display: none !important;
}.tc-wp-tool-root .app-container{
    display: flex;
    min-height: 720px;
    max-width: 1400px;
    margin: 24px auto;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: calc(100vh - 48px);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
    isolation: isolate;
}.tc-wp-tool-root .app-container::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 32%, rgba(124, 58, 237, 0.08) 62%, rgba(16, 185, 129, 0.08) 100%);
    animation: rotate 70s linear infinite;
    z-index: -1;
}@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}.tc-wp-tool-root .side-panel{
    width: 420px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.94));
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    z-index: 10;
    position: relative;
    overflow: hidden;
    max-height: 100%;
}.tc-wp-tool-root .side-panel::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.32), transparent);
    z-index: -1;
}.tc-wp-tool-root .side-panel::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(6, 182, 212, 0.18), transparent);
    z-index: -1;
}.tc-wp-tool-root .app-header{
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.68);
}.tc-wp-tool-root .app-header::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.22), transparent 70%);
    z-index: -1;
}.tc-wp-tool-root .app-logo{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
    position: relative;
    flex-direction: column !important;
}.tc-wp-tool-root .logo-icon{
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f43f5e, var(--primary), var(--accent-secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.38);
    position: relative;
    overflow: hidden;
    animation: pulse 3s infinite;
}@keyframes pulse {
    0%, 100% { box-shadow: 0 14px 32px rgba(124, 58, 237, 0.34); }
    50% { box-shadow: 0 18px 44px rgba(6, 182, 212, 0.38); }
}.tc-wp-tool-root .logo-icon::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 70%);
    animation: rotate 10s linear infinite;
}.tc-wp-tool-root .logo-icon::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 54%);
}.tc-wp-tool-root .app-title{
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #a5f3fc, #bbf7d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    position: relative;
    text-align: center;
    line-height: 1.2;
}.tc-wp-tool-root .search-container{
    padding: 1.5rem;
    position: relative;
    flex-shrink: 0;
    background: rgba(15, 23, 42, 0.56);
}.tc-wp-tool-root .search-container::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.2), transparent 70%);
    z-index: -1;
}.tc-wp-tool-root #search-form{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}.tc-wp-tool-root .form-label{
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.65rem;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}.tc-wp-tool-root .form-label svg{
    width: 18px;
    height: 18px;
    stroke: #67e8f9;
}.tc-wp-tool-root .input-group{
    position: relative;
}.tc-wp-tool-root #username-input{
    width: 100%;
    padding: 1.05rem 3.15rem 1.05rem 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(226, 232, 240, 0.86);
    border-radius: var(--border-radius-md);
    color: var(--text-primary-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(15, 23, 42, 0.08);
}.tc-wp-tool-root #username-input:focus{
    outline: none;
    border-color: rgba(6, 182, 212, 0.85);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.18), 0 14px 30px rgba(15, 23, 42, 0.14);
    background: #ffffff;
}.tc-wp-tool-root #username-input::placeholder{
    color: #94a3b8;
}.tc-wp-tool-root .input-icon{
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}.tc-wp-tool-root #search-btn{
    background: linear-gradient(135deg, #f43f5e 0%, var(--primary) 48%, var(--accent-secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1.08rem 1.35rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    box-shadow: 0 15px 34px rgba(124, 58, 237, 0.36);
    position: relative;
    overflow: hidden;
    letter-spacing: 0;
}.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.34), transparent);
    transition: var(--transition-normal);
}.tc-wp-tool-root #search-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(124, 58, 237, 0.46);
}.tc-wp-tool-root #search-btn:hover::before{
    left: 110%;
    transition: 0.7s;
}.tc-wp-tool-root #search-btn:active{
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.32);
}.tc-wp-tool-root .profile-section{
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
    max-height: calc(100vh - 220px);
    background: rgba(17, 24, 39, 0.5);
}.tc-wp-tool-root .profile-section::-webkit-scrollbar{
    width: 7px;
}.tc-wp-tool-root .profile-section::-webkit-scrollbar-track{
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}.tc-wp-tool-root .profile-section::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, var(--primary), var(--accent-secondary));
    border-radius: 10px;
}.tc-wp-tool-root .loading-state{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}.tc-wp-tool-root .spinner{
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 2rem;
}.tc-wp-tool-root .spinner::before, .tc-wp-tool-root .spinner::after{
    content: '';
    position: absolute;
    border-radius: 50%;
}.tc-wp-tool-root .spinner::before{
    width: 100%;
    height: 100%;
    background-image: conic-gradient(var(--primary), var(--accent-secondary), var(--accent), var(--primary));
    animation: spin 0.9s linear infinite;
}.tc-wp-tool-root .spinner::after{
    top: 12%;
    left: 12%;
    right: 12%;
    bottom: 12%;
    background: #111827;
    border-radius: 50%;
}@keyframes spin {
    to { transform: rotate(360deg); }
}.tc-wp-tool-root .loading-text{
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #67e8f9, #bbf7d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
    background-size: 200% 100%;
}@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}.tc-wp-tool-root .profile-data{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}.tc-wp-tool-root .profile-header{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.72);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .profile-header:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
}.tc-wp-tool-root .profile-header::before{
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1), transparent 70%);
    animation: rotate 24s linear infinite;
    z-index: -1;
}.tc-wp-tool-root .profile-image-container{
    position: relative;
    flex-shrink: 0;
}.tc-wp-tool-root .profile-image{
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background:
        linear-gradient(var(--surface-dark), var(--surface-dark)) padding-box,
        linear-gradient(135deg, #f43f5e, var(--primary), var(--accent-secondary)) border-box;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    transition: var(--transition-normal);
    animation: float 6s ease-in-out infinite;
}@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}.tc-wp-tool-root .profile-image:hover{
    transform: scale(1.06);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2), var(--shadow-glow-primary);
}.tc-wp-tool-root .profile-image-aura{
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f43f5e, var(--primary), var(--accent-secondary));
    opacity: 0.2;
    filter: blur(12px);
    z-index: -1;
    animation: pulse-aura 3s ease-in-out infinite alternate;
}@keyframes pulse-aura {
    0% { opacity: 0.12; transform: scale(1); }
    100% { opacity: 0.28; transform: scale(1.08); }
}.tc-wp-tool-root .verified-indicator{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    border: 2px solid var(--surface-dark);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}.tc-wp-tool-root .profile-info{
    flex: 1;
    min-width: 0;
}.tc-wp-tool-root .profile-username{
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--text-primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .profile-fullname{
    font-size: 0.98rem;
    color: var(--text-secondary-light);
    font-weight: 600;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .stories-section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}.tc-wp-tool-root .stories-section-title{
    font-size: 1.08rem;
    font-weight: 800;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 0;
    position: relative;
}.tc-wp-tool-root .stories-section-title svg{
    width: 20px;
    height: 20px;
    stroke: #67e8f9;
}.tc-wp-tool-root .stories-section-title::after{
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(to right, #f43f5e, var(--accent-secondary));
    border-radius: 999px;
}.tc-wp-tool-root .stories-count{
    font-size: 0.82rem;
    font-weight: 800;
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    white-space: nowrap;
}.tc-wp-tool-root .stories-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}.tc-wp-tool-root .story-card{
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.75);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}.tc-wp-tool-root .story-card:hover{
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-accent);
    border-color: rgba(6, 182, 212, 0.45);
}.tc-wp-tool-root .story-card::before{
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #f43f5e, var(--primary), var(--accent-secondary));
    border-radius: calc(var(--border-radius-md) + 2px);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}.tc-wp-tool-root .story-card:hover::before{
    opacity: 1;
}.tc-wp-tool-root .story-preview{
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #020617;
}.tc-wp-tool-root .story-preview img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}.tc-wp-tool-root .story-card:hover .story-preview img{
    transform: scale(1.08);
}.tc-wp-tool-root .story-preview::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(2, 6, 23, 0.82));
    z-index: 1;
}.tc-wp-tool-root .story-type-overlay{
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 0.48rem 0.8rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
}.tc-wp-tool-root .story-type-overlay.video{
    background: rgba(16, 185, 129, 0.78);
}.tc-wp-tool-root .story-type-overlay.image{
    background: rgba(124, 58, 237, 0.78);
}.tc-wp-tool-root .story-timestamp-overlay{
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 0.48rem 0.8rem;
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
}.tc-wp-tool-root .story-meta{
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 250, 252, 0.94);
    border-top: 1px solid rgba(226, 232, 240, 0.86);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .story-meta::before{
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.06), transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}.tc-wp-tool-root .story-info{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}.tc-wp-tool-root .story-info svg{
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}.tc-wp-tool-root .story-time{
    font-size: 0.88rem;
    color: var(--text-secondary-light);
    font-weight: 700;
}.tc-wp-tool-root .error-panel{
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.78);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .error-panel::before{
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.08), transparent 70%);
    animation: rotate 22s linear infinite;
    z-index: -1;
}.tc-wp-tool-root .error-icon{
    width: 76px;
    height: 76px;
    background: rgba(239, 68, 68, 0.11);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--error);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 800;
}.tc-wp-tool-root .error-icon::after{
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.22);
    animation: pulse-error 2s infinite;
}@keyframes pulse-error {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}.tc-wp-tool-root .error-message{
    color: var(--text-secondary-light);
    font-size: 1rem;
    max-width: 320px;
    line-height: 1.6;
    font-weight: 600;
}.tc-wp-tool-root .error-action{
    margin-top: 1.5rem;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(135deg, var(--error), #f97316);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 12px 26px rgba(239, 68, 68, 0.24);
}.tc-wp-tool-root .error-action:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.32);
}.tc-wp-tool-root .main-content{
    flex: 1;
    position: relative;
    background-color: var(--surface-dark);
    overflow: hidden;
    max-height: 100%;
    min-width: 0;
}.tc-wp-tool-root .main-content::before{
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.11) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.11) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    z-index: 0;
}.tc-wp-tool-root .welcome-panel{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 30%),
        linear-gradient(135deg, #fb7185 0%, #8b5cf6 48%, #2563eb 100%);
}.tc-wp-tool-root .welcome-illustration{
    width: 300px;
    height: 300px;
    margin-bottom: 2.5rem;
    position: relative;
    flex-shrink: 0;
}.tc-wp-tool-root .welcome-illustration::before{
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(6, 182, 212, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-illustration 5s ease-in-out infinite alternate;
}@keyframes pulse-illustration {
    0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
    100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}.tc-wp-tool-root .circle-1, .tc-wp-tool-root .circle-2, .tc-wp-tool-root .circle-3{
    position: absolute;
    border-radius: 50%;
    opacity: 0.82;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(28px);
}.tc-wp-tool-root .circle-1{
    width: 210px;
    height: 210px;
    background: linear-gradient(135deg, #f43f5e, var(--primary));
    animation: pulse-circle 8s ease-in-out infinite alternate;
}.tc-wp-tool-root .circle-2{
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
    animation: pulse-circle 6s ease-in-out infinite alternate-reverse;
}.tc-wp-tool-root .circle-3{
    width: 105px;
    height: 105px;
    background: linear-gradient(135deg, #facc15, #fb7185);
    animation: pulse-circle 4s ease-in-out infinite alternate;
}@keyframes pulse-circle {
    0% { opacity: 0.42; transform: translate(-50%, -50%) scale(0.82); }
    100% { opacity: 0.76; transform: translate(-50%, -50%) scale(1.18); }
}.tc-wp-tool-root .illustration-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
    filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.28));
}.tc-wp-tool-root .welcome-title{
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 1.35rem;
    background: linear-gradient(to right, #ffffff, #cffafe, #fef08a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    position: relative;
    line-height: 1.05;
}.tc-wp-tool-root .welcome-title::after{
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #f43f5e, #67e8f9);
    border-radius: 999px;
}.tc-wp-tool-root .welcome-description{
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.75;
    font-weight: 500;
}.tc-wp-tool-root .instashot-features-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    flex-shrink: 0;
}.tc-wp-tool-root .instashot-feature-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.62);
    width: 176px;
    min-height: 168px;
    overflow: hidden;
}.tc-wp-tool-root .instashot-feature-item:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
    border-color: rgba(255, 255, 255, 0.85);
}.tc-wp-tool-root .instashot-feature-icon{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.28);
}.tc-wp-tool-root .instashot-feature-icon-1{
    background: linear-gradient(135deg, #f43f5e, var(--primary));
}.tc-wp-tool-root .instashot-feature-icon-2{
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}.tc-wp-tool-root .instashot-feature-icon-3{
    background: linear-gradient(135deg, var(--accent), var(--warning));
}.tc-wp-tool-root .instashot-feature-icon::before{
    content: '';
    position: absolute;
    inset: -5px;
    background: inherit;
    border-radius: inherit;
    filter: blur(12px);
    opacity: 0.45;
    z-index: -1;
}.tc-wp-tool-root .instashot-feature-text{
    font-size: 0.98rem;
    color: var(--text-primary-light);
    font-weight: 800;
    text-align: center;
}.tc-wp-tool-root .story-player{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020617;
    z-index: 5;
}.tc-wp-tool-root .story-control-bar{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.08));
    z-index: 15;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}.tc-wp-tool-root .story-user-data{
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}.tc-wp-tool-root .story-user-image{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
    object-fit: cover;
    flex-shrink: 0;
}.tc-wp-tool-root .story-username{
    font-size: 1.05rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    overflow-wrap: anywhere;
}.tc-wp-tool-root .story-timestamp{
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}.tc-wp-tool-root .story-actions{
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}.tc-wp-tool-root .control-btn{
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: white;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}.tc-wp-tool-root .control-btn:hover{
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}.tc-wp-tool-root .progress-track{
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    padding: 0 1.4rem;
    display: flex;
    gap: 8px;
    z-index: 10;
}.tc-wp-tool-root .progress-indicator{
    height: 4px;
    flex: 1;
    background-color: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}.tc-wp-tool-root .progress-fill{
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #f43f5e, var(--primary), var(--accent-secondary));
    border-radius: 999px;
    transition: width 0.1s linear;
}.tc-wp-tool-root .progress-indicator.completed .progress-fill{
    width: 100%;
    background: white;
}.tc-wp-tool-root .media-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #020617;
}.tc-wp-tool-root .media-container img, .tc-wp-tool-root .media-container video{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}.tc-wp-tool-root .navigation-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 5;
}.tc-wp-tool-root .nav-area{
    flex: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}.tc-wp-tool-root .prev-area{
    cursor: w-resize;
}.tc-wp-tool-root .next-area{
    cursor: e-resize;
}.tc-wp-tool-root .nav-indicator{
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}.tc-wp-tool-root .prev-area .nav-indicator{
    left: 30px;
}.tc-wp-tool-root .next-area .nav-indicator{
    right: 30px;
}.tc-wp-tool-root .nav-area:hover .nav-indicator{
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}.tc-wp-tool-root .animate-fade-in-up{
    animation: fadeInUp 0.6s ease forwards;
}.tc-wp-tool-root .story-card:nth-child(1){
    animation-delay: 0.1s;
}.tc-wp-tool-root .story-card:nth-child(2){
    animation-delay: 0.2s;
}.tc-wp-tool-root .story-card:nth-child(3){
    animation-delay: 0.3s;
}.tc-wp-tool-root .story-card:nth-child(4){
    animation-delay: 0.4s;
}.tc-wp-tool-root .toast-container{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}.tc-wp-tool-root .toast{
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary-light);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 300px;
    max-width: min(420px, calc(100vw - 40px));
}.tc-wp-tool-root .toast.show{
    transform: translateX(0);
    opacity: 1;
}.tc-wp-tool-root .toast.success{
    border-left: 4px solid var(--success);
}.tc-wp-tool-root .toast.error{
    border-left: 4px solid var(--error);
}.tc-wp-tool-root .toast.info{
    border-left: 4px solid var(--accent-secondary);
}.tc-wp-tool-root .toast-icon{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}.tc-wp-tool-root .toast-message{
    flex: 1;
}.tc-wp-tool-root .toast-close{
    background: none;
    border: none;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}.tc-wp-tool-root .toast-close:hover{
    color: var(--text-primary-light);
}.tc-wp-tool-root .no-stories-message{
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.78);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .no-stories-message::before{
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.11), transparent 70%);
    animation: rotate 22s linear infinite;
    z-index: -1;
}.tc-wp-tool-root .no-stories-icon{
    width: 76px;
    height: 76px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: var(--warning);
    margin-bottom: 1.5rem;
    position: relative;
}.tc-wp-tool-root .no-stories-icon::after{
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.24);
    animation: pulse-accent 2s infinite;
}@keyframes pulse-accent {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.45); opacity: 0; }
}.tc-wp-tool-root .no-stories-title{
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary-light);
    margin-bottom: 0.85rem;
}.tc-wp-tool-root .no-stories-description{
    color: var(--text-secondary-light);
    font-size: 0.98rem;
    max-width: 420px;
    line-height: 1.65;
    font-weight: 600;
}.tc-wp-tool-root .play-pause-btn{
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: white;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}.tc-wp-tool-root .play-pause-btn:hover{
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}.tc-wp-tool-root .mute-btn{
    width: 44px;
    height: 44px;
}.tc-wp-tool-root .mute-btn:hover{
    background: rgba(6, 182, 212, 0.26);
}.tc-wp-tool-root .download-btn{
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    color: white;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}.tc-wp-tool-root .download-btn:hover{
    background-color: rgba(16, 185, 129, 0.28);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}.tc-wp-tool-root .download-btn:active{
    transform: translateY(-1px) scale(0.95);
}.tc-wp-tool-root .close-btn{
    width: 44px;
    height: 44px;
}.tc-wp-tool-root .close-btn:hover{
    background: rgba(239, 68, 68, 0.28);
}.tc-wp-tool-root .\$\{story\.is_video {
    display: inline-flex;
}

.\? {
    display: inline-flex;
}

@media (max-width: 1200px) {
    .instagram-story-viewer-wrapper {
        padding: 0;
    }

    .app-container {
        margin: 0;
        height: 100vh;
        border-radius: 0;
        min-height: 100vh;
    }
}

@media (max-width: 992px) {
    .app-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .side-panel {
        width: 100%;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        overflow: visible;
    }

    .app-header,
    .search-container,
    .profile-section {
        padding: 1.25rem;
    }

    .profile-section {
        max-height: none;
        overflow-y: visible;
    }

    .main-content {
        min-height: 560px;
        max-height: none;
        overflow: hidden;
    }

    .welcome-panel {
        max-height: none;
        min-height: 560px;
        overflow-y: auto;
        padding: 2rem 1.25rem;
    }

    .welcome-illustration {
        width: 220px;
        height: 220px;
        margin-bottom: 2rem;
    }

    .welcome-illustration::before {
        width: 300px;
        height: 300px;
    }

    .welcome-title {
        font-size: 2.4rem;
    }

    .welcome-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .instashot-features-list {
        gap: 1rem;
        margin-top: 1rem;
    }

    .instashot-feature-item {
        width: 150px;
        min-height: 145px;
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .app-logo {
        margin-bottom: 0;
    }

    .app-title {
        font-size: 1.28rem;
    }

    .profile-header {
        padding: 1rem;
    }

    .profile-image {
        width: 62px;
        height: 62px;
    }

    .stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .story-preview {
        height: 190px;
    }

    .welcome-title {
        font-size: 2.1rem;
    }

    .welcome-description {
        font-size: 0.98rem;
    }

    .instashot-features-list {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;
    }

    .welcome-illustration {
        width: 220px;
        height: 220px;
        margin-bottom: 1.5rem;
    }

    .side-panel {
        max-height: none;
    }

    .main-content {
        min-height: 520px;
    }

    .story-control-bar {
        align-items: flex-start;
    }

    .story-actions {
        gap: 0.45rem;
    }

    .control-btn,
    .play-pause-btn,
    .mute-btn,
    .download-btn,
    .close-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .instagram-story-viewer-wrapper {
        padding: 0;
    }

    .app-container {
        width: 100%;
    }

    .app-header,
    .search-container,
    .profile-section {
        padding: 1rem;
    }

    .stories-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-preview {
        height: 240px;
    }

    .story-control-bar {
        padding: 1rem;
        gap: 0.75rem;
    }

    .story-user-image {
        width: 38px;
        height: 38px;
    }

    .story-username {
        font-size: 0.95rem;
    }

    .story-timestamp {
        font-size: 0.78rem;
    }

    .welcome-illustration {
        width: 185px;
        height: 185px;
        margin-bottom: 1.35rem;
    }

    .welcome-illustration::before {
        width: 250px;
        height: 250px;
    }

    .welcome-title {
        font-size: 1.75rem;
    }

    .welcome-description {
        font-size: 0.92rem;
        margin-bottom: 1.75rem;
    }

    .progress-track {
        top: 76px;
        padding: 0 1rem;
    }

    .instashot-features-list {
        flex-direction: column;
        align-items: center;
    }

    .instashot-feature-item {
        width: 100%;
        max-width: 260px;
        min-height: 132px;
        padding: 1.25rem;
    }

    .instashot-feature-icon {
        width: 52px;
        height: 52px;
    }

    .side-panel {
        max-height: none;
    }

    .main-content {
        min-height: 500px;
    }

    .welcome-panel {
        padding: 1.25rem 1rem;
        min-height: 500px;
    }

    .search-container {
        padding: 1rem;
    }

    .profile-section {
        padding: 1rem;
        max-height: none;
    }

    .toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
    }

    .toast {
        min-width: 0;
        width: 100%;
        max-width: none;
    }

    .nav-indicator {
        width: 44px;
        height: 44px;
    }

    .prev-area .nav-indicator {
        left: 14px;
    }

    .next-area .nav-indicator {
        right: 14px;
    }
}

.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;
}