@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");

.tiktok_body, .tiktok_body * {
            box-sizing: border-box !important;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #FF0050 0%, #00F2EA 100%);
            --secondary-gradient: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
            --accent-gradient: linear-gradient(135deg, #FF0050 0%, #FF4081 100%);
            --card-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --stats-gradient-1: linear-gradient(135deg, #2D1B69 0%, #11998e 100%);
            --stats-gradient-2: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
            --stats-gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --stats-gradient-4: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
            --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.3);
            --shadow-neon: 0 0 20px rgba(255, 0, 80, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

       .tiktok_body {
            background: linear-gradient(135deg, #0f172a 0%, #1c1917 50%, #0f172a 100%);
            min-height: 60vh;
            color: var(--text-primary);
            line-height: 1.6;
            position: relative;
            overflow-x: hidden;
        }

        .tiktok_body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(238, 29, 82, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(105, 201, 208, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .container_tiktok {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 16px;
            position: relative;
            z-index: 1;
        }

        /* Header Styles */
        .header {
            text-align: center;
            margin-bottom: 48px;
            animation: fadeInDown 1s ease-out;
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 900;
            box-shadow: var(--shadow-xl), var(--shadow-neon);
            position: relative;
            overflow: hidden;
            animation: pulse 2s ease-in-out infinite;
        }

        .logo-text {
            font-size: clamp(32px, 6vw, 60px);
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
        }

        /* Search Section */
        .search-section {
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            padding: clamp(24px, 5vw, 48px);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            margin-bottom: 32px;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .input-container {
            position: relative;
            margin-bottom: 20px;
        }

        .search-input {
            width: 100% !important;
            padding: clamp(16px, 3vw, 20px) clamp(20px, 4vw, 24px)  !important;
            border: 2px solid rgba(255, 255, 255, 0.2)  !important;
            border-radius: 16px  !important;
            font-size: clamp(14px, 2.5vw, 16px)  !important;
            font-weight: 500  !important;
            background: rgba(255, 255, 255, 0.1)  !important;
            color: var(--text-primary)  !important;
            transition: all 0.3s ease  !important;
        }

        .search-input:focus {
            outline: none  !important;
            border-color: #FF0050  !important;
            box-shadow: 0 0 0 4px rgba(255, 0, 80, 0.2)  !important;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .paste-hint {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            margin-top: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .paste-icon {
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .paste-icon:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            transform: scale(1.1);
        }

        .search-box {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .search-button {
            flex: 1;
            min-width: 200px;
            padding: clamp(16px, 3vw, 20px) clamp(24px, 5vw, 32px);
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg), var(--shadow-neon);
        }

        .search-button::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;
        }

        .search-button:hover:not(:disabled)::before {
            left: 100%;
        }

        .search-button:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 0, 80, 0.5);
        }

        .search-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .search-again-btn {
            background: var(--secondary-gradient);
            color: white;
            margin-top: 16px;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .search-again-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        /* Profile Section */
        .profile-section {
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease-out;
            box-shadow: var(--shadow-xl);
        }

        .profile-header {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }

        .profile-avatar-container {
            position: relative;
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid transparent;
            background: var(--primary-gradient);
            padding: 2px;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .profile-avatar:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl), var(--shadow-neon);
        }

        .fullscreen-icon {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .fullscreen-icon:hover {
            transform: scale(1.1);
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 8px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .profile-username {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        /* Enhanced Stats Section - Darker Theme */
        .profile-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            padding: 0;
            background: transparent;
            border-radius: 0;
            backdrop-filter: none;
        }

        .stat-item {
            text-align: center;
            padding: 24px 20px;
            border-radius: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .stat-item:nth-child(1) {
            background: var(--stats-gradient-1);
            box-shadow: 0 8px 32px rgba(45, 27, 105, 0.4);
        }

        .stat-item:nth-child(2) {
            background: var(--stats-gradient-2);
            box-shadow: 0 8px 32px rgba(142, 45, 226, 0.4);
        }

        .stat-item:nth-child(3) {
            background: var(--stats-gradient-3);
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
        }

        .stat-item:nth-child(4) {
            background: var(--stats-gradient-4);
            box-shadow: 0 8px 32px rgba(240, 147, 251, 0.4);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }

        .stat-value {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        /* Videos Section Header */
        .videos-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding: 20px 0;
        }

        .videos-button {
            padding: 16px 32px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 16px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .videos-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .videos-count {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .download-all-btn {
            padding: 12px 24px;
            background: var(--secondary-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 16px;
        }

        .download-all-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .download-all-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Video Grid - Enhanced with Gradients */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .video-card {
            background: linear-gradient(135deg,
                    rgba(255, 0, 80, 0.1) 0%,
                    rgba(0, 242, 234, 0.1) 50%,
                    rgba(105, 201, 208, 0.1) 100%);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow:
                var(--shadow-lg),
                0 0 20px rgba(255, 0, 80, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            cursor: pointer;
            height: 480px;
        }

        .video-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow:
                var(--shadow-xl),
                0 0 40px rgba(255, 0, 80, 0.3),
                0 0 60px rgba(0, 242, 234, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 0, 80, 0.5);
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(255, 0, 80, 0.05) 0%,
                    transparent 50%,
                    rgba(0, 242, 234, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }

        .video-card:hover::before {
            opacity: 1;
        }

        .video-thumbnail-container {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-card:hover .video-thumbnail {
            transform: scale(1.1);
        }

        /* Fixed Play Icon - Visible Triangle */
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: rgba(255, 0, 80, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .play-overlay::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 16px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .video-card:hover .play-overlay {
            transform: translate(-50%, -50%) scale(1.2);
            background: rgba(255, 0, 80, 1);
            box-shadow: 0 12px 35px rgba(255, 0, 80, 0.6);
        }

        /* Always Visible Download Button */
        .video-download-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            opacity: 1;
            cursor: pointer;
            z-index: 10;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .video-download-btn:hover {
            background: var(--primary-gradient);
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Video Info - Below Thumbnail */
        .video-info {
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .video-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .video-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .stat {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .stat:hover {
            background: rgba(255, 0, 80, 0.1);
            color: var(--text-primary);
        }

        /* ============================= */
        /* VIDEO MODAL - FIXED ALIGNMENT */
        /* ============================= */
        .modal {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 2147483647 !important;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
            padding: 20px;
            overflow-y: auto;
            margin: 0 !important;
            transform: none !important;
        }

        .modal.active {
            display: flex !important;
        }

        .modal-content {
            position: relative !important;
            width: 100%;
            max-width: 420px;
            margin: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            top: auto !important;
        }

        .modal-title {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
            padding: 0 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
            width: 100%;
        }

        .video-player-container {
            position: relative !important;
            width: 100%;
            max-height: 80vh;
            aspect-ratio: 9 / 16;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            top: auto !important;
        }

        /* Fallback for browsers/themes without aspect-ratio support */
        @supports not (aspect-ratio: 9 / 16) {
            .video-player-container {
                height: 70vh;
            }
        }

        .video-player {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            display: block !important;
            max-width: 100% !important;
        }

        .close-modal {
            position: absolute !important;
            top: -50px !important;
            right: 0 !important;
            width: 44px;
            height: 44px;
            background: rgba(255, 0, 80, 0.2);
            border: 2px solid rgba(255, 0, 80, 0.5);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            z-index: 20;
            box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
        }

        .close-modal:hover {
            background: rgba(255, 0, 80, 0.4);
            transform: rotate(90deg) scale(1.1);
            border-color: rgba(255, 0, 80, 0.8);
            box-shadow: 0 6px 20px rgba(255, 0, 80, 0.5);
        }

        /* Video Controls */
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .progress-container {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            position: relative;
            transition: width 0.1s linear;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .control-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .control-button {
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 50%;
            background: var(--glass-bg);
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
        }

        .control-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .play-pause {
            width: 56px;
            height: 56px;
            background: var(--primary-gradient);
            font-size: 24px;
            border: none;
        }

        .play-pause:hover {
            background: var(--secondary-gradient);
        }

        /* Volume Controls */
        .volume-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .volume-fill {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            transition: width 0.1s ease;
        }

        /* Advanced Loading Animation */
        .loading {
            display: none;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            background: var(--glass-bg);
            backdrop-filter: blur(30px);
            border-radius: 24px;
            margin: 32px 0;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-xl);
        }

        .loading-content {
            text-align: center;
        }

        .loading-animation {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
        }

        .loading-ring {
            position: absolute;
            border: 4px solid transparent;
            border-radius: 50%;
            animation: spin 2s linear infinite;
        }

        .loading-ring:nth-child(1) {
            width: 120px;
            height: 120px;
            border-top-color: #FF0050;
            animation-duration: 2s;
        }

        .loading-ring:nth-child(2) {
            width: 90px;
            height: 90px;
            top: 15px;
            left: 15px;
            border-right-color: #00F2EA;
            animation-duration: 1.5s;
            animation-direction: reverse;
        }

        .loading-ring:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 30px;
            left: 30px;
            border-bottom-color: #FF4081;
            animation-duration: 1s;
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .loading-dot {
            width: 12px;
            height: 12px;
            background: var(--primary-gradient);
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite both;
        }

        .loading-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .loading-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        .loading-dot:nth-child(3) {
            animation-delay: 0s;
        }

        @keyframes bounce {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .loading-subtext {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Profile Picture Modal */
        .profile-modal {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 2147483647 !important;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease-out;
            padding: 20px;
            margin: 0 !important;
            transform: none !important;
        }

        .profile-modal.active {
            display: flex !important;
        }

        .profile-modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-modal-image {
            max-width: 80%;
            max-height: 80%;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
        }

        .profile-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
            background: rgba(255, 0, 80, 0.2);
            border: 2px solid rgba(255, 0, 80, 0.5);
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .profile-modal-download {
            position: absolute;
            bottom: 20px;
            right: 20px;
            padding: 12px 24px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .profile-modal-download:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Download Progress Indicator */
        .download-progress {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 16px 20px;
            color: white;
            font-weight: 600;
            z-index: 1001;
            display: none;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-lg);
            min-width: 300px;
        }

        .download-progress.show {
            display: flex;
        }

        .download-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: #FF0050;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }

        .download-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .download-text {
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .download-progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .download-progress-fill {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            width: 0%;
            transition: width 0.3s ease;
        }

        .cancel-download-btn {
            background: rgba(255, 0, 80, 0.2);
            border: 1px solid rgba(255, 0, 80, 0.4);
            color: white;
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cancel-download-btn:hover {
            background: rgba(255, 0, 80, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Error Message */
        .error-message {
            background: rgba(255, 0, 80, 0.1);
            border: 1px solid rgba(255, 0, 80, 0.2);
            color: #FF0050;
            padding: 16px 24px;
            border-radius: 12px;
            margin-top: 16px;
            display: none;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 16px;
            }

            .video-card {
                height: 440px;
            }

            .video-thumbnail-container {
                height: 280px;
            }

            .search-box {
                flex-direction: column;
            }

            .search-button {
                width: 100%;
            }

            .control-buttons {
                flex-wrap: wrap;
                gap: 12px;
            }

            .volume-controls {
                order: 3;
                width: 100%;
                justify-content: center;
            }

            .modal-content {
                max-width: 100%;
                padding: 0 10px;
            }

            .close-modal {
                top: -46px !important;
                right: 10px !important;
            }

            .videos-section-header {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }

            .download-all-btn {
                margin-left: 0;
                margin-top: 8px;
            }

            .download-progress {
                left: 20px;
                right: 20px;
                width: auto;
            }
			.logo-container {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 24px;
				margin-bottom: 24px;
				flex-direction: column;
			}
			.logo-icon {
				width: 60px;
				height: 60px;
				font-size: 28px;
				margin-top: 40px;
			}
        }

        @media (max-width: 480px) {
            .profile-stats {
                grid-template-columns: 1fr;
            }

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

            .logo-container {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 24px;
				margin-bottom: 24px;
				flex-direction: column;
			}
			.logo-icon {
				width: 60px;
				height: 60px;
				font-size: 28px;
				margin-top: 40px;
			}

			.videos-section-header {
				display: flex !important;
				align-items: center !important;
				justify-content: space-between;
				margin-bottom: 24px;
				padding: 20px 0;
			}
			.download-all-btn {
				padding: 12px 24px;
				background: var(--secondary-gradient);
				color: white;
				border: none;
				border-radius: 12px;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
				box-shadow: var(--shadow-md);
				display: flex;
				align-items: center;
				gap: 8px;
				margin-left: 16px;
				width: 100%;
				font-size: 12px;
			}
			.buttons_flex{
				flex-direction:column;
			}

            .video-player-container {
                max-height: 75vh;
            }
        }

        @media (max-width: 500px) {
            .logo-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .logo-text {
                font-size: clamp(24px, 5vw, 40px);
            }

			.logo-container {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 24px;
				margin-bottom: 24px;
				flex-direction: column;
			}
			.logo-icon {
				width: 60px;
				height: 60px;
				font-size: 28px;
				margin-top: 40px;
			}
			.videos-section-header {
				display: flex !important;
				align-items: center !important;
				justify-content: space-between;
				margin-bottom: 24px;
				padding: 20px 0;
			}
			.download-all-btn {
				padding: 12px 24px;
				background: var(--secondary-gradient);
				color: white;
				border: none;
				border-radius: 12px;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
				box-shadow: var(--shadow-md);
				display: flex;
				align-items: center;
				gap: 8px;
				margin-left: 16px;
				width: 100%;
				font-size: 13px;
			}
			.buttons_flex{
				flex-direction:column;
			}
        }

/* --- Codex CSS updates --- */
.tiktok_body, .tiktok_body * {
    box-sizing: border-box !important;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff2a68 0%, #8b5cf6 52%, #06d6d6 100%);
    --secondary-gradient: linear-gradient(135deg, #14b8a6 0%, #3b82f6 48%, #ec4899 100%);
    --accent-gradient: linear-gradient(135deg, #ff0050 0%, #ff5f8f 100%);
    --card-gradient: linear-gradient(135deg, #18233f 0%, #271c4d 100%);
    --stats-gradient-1: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
    --stats-gradient-2: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    --stats-gradient-3: linear-gradient(135deg, #0891b2 0%, #4f46e5 100%);
    --stats-gradient-4: linear-gradient(135deg, #f97316 0%, #e11d48 100%);
    --glass-bg: rgba(15, 23, 42, 0.68);
    --glass-border: rgba(255, 255, 255, 0.14);
    --text-primary: #ffffff;
    --text-secondary: #d8e0ef;
    --text-muted: #a8b3c7;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 10px rgba(2, 6, 23, 0.18);
    --shadow-md: 0 8px 24px rgba(2, 6, 23, 0.22);
    --shadow-lg: 0 16px 42px rgba(2, 6, 23, 0.28);
    --shadow-xl: 0 28px 70px rgba(2, 6, 23, 0.38);
    --shadow-neon: 0 0 28px rgba(255, 42, 104, 0.26);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.tiktok_body {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 42, 104, 0.22) 0, transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(6, 214, 214, 0.18) 0, transparent 32%),
        linear-gradient(135deg, #070b17 0%, #101827 50%, #080b14 100%);
    min-height: 60vh;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    isolation: isolate;
}

.tiktok_body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent);
}

.container_tiktok {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 72px) 16px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: clamp(24px, 5vw, 42px);
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 0;
}

.logo-icon {
    width: 66px;
    height: 66px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    box-shadow: var(--shadow-lg), var(--shadow-neon);
    position: relative;
    overflow: hidden;
    animation: pulse 2.6s ease-in-out infinite;
    flex: 0 0 auto;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 46%);
    pointer-events: none;
}

.logo-text {
    max-width: 920px;
    font-size: clamp(26px, 3.8vw, 40px);
    line-height: 1.18;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    letter-spacing: 0;
    text-transform: capitalize !important;
}

.search-section {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.54));
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    padding: clamp(20px, 4vw, 36px);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.search-input {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    line-height: 56px !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    resize: none !important;
    overflow: hidden !important;
}

.search-input:focus {
    outline: none !important;
    border-color: rgba(255, 42, 104, 0.9) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 0 0 4px rgba(255, 42, 104, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.search-input::placeholder {
    color: rgba(222, 232, 246, 0.62);
}

.paste-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.paste-icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 9px;
    transition: all 0.25s ease;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.07);
}

.paste-icon:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.search-box {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.search-button {
    flex: 1 1 220px;
    min-width: 200px;
    height: 54px;
    padding: 0 26px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-neon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize !important;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.55s ease;
}

.search-button:hover:not(:disabled)::before {
    left: 120%;
}

.search-button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: var(--shadow-xl), 0 0 34px rgba(255, 42, 104, 0.38);
}

.search-button:active:not(:disabled) {
    transform: translateY(0);
}

.search-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.28);
    outline-offset: 3px;
}

.search-button:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

.search-again-btn {
    background: var(--secondary-gradient);
    color: white;
    margin-top: 14px;
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-transform: capitalize !important;
}

.search-again-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.results-container {
    width: 100%;
    max-width: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.profile-section {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.54));
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 32px);
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease-out;
    box-shadow: var(--shadow-xl);
}

.profile-header {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    align-items: center;
}

.profile-avatar-container {
    position: relative;
    flex: 0 0 auto;
}

.profile-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: var(--primary-gradient);
    padding: 2px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.25s ease;
}

.profile-avatar:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-xl), var(--shadow-neon);
}

.fullscreen-icon {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fullscreen-icon:hover {
    transform: scale(1.1);
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow-wrap: anywhere;
}

.profile-username {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    overflow-wrap: anywhere;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin-top: 8px;
    max-width: 760px;
    overflow-wrap: anywhere;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: 18px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.stat-item:nth-child(1) {
    background: var(--stats-gradient-1);
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.28);
}

.stat-item:nth-child(2) {
    background: var(--stats-gradient-2);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.28);
}

.stat-item:nth-child(3) {
    background: var(--stats-gradient-3);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.28);
}

.stat-item:nth-child(4) {
    background: var(--stats-gradient-4);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.28);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, transparent 52%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.38);
}

.stat-value {
    font-size: clamp(23px, 3vw, 28px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 7px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 650;
    text-transform: capitalize !important;
    letter-spacing: 0;
}

.videos-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 8px 0;
}

.buttons_flex {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.videos-button {
    min-height: 48px;
    padding: 0 24px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: capitalize !important;
}

.videos-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.videos-count {
    font-size: 15px;
    font-weight: 650;
    color: var(--text-secondary);
    white-space: nowrap;
}

.download-all-btn {
    min-height: 48px;
    padding: 0 22px;
    background: var(--secondary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 0;
    text-transform: capitalize !important;
}

.download-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-all-btn:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.video-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(15, 23, 42, 0.72));
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    height: 460px;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 36px rgba(255, 42, 104, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 42, 104, 0.42);
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 42, 104, 0.08) 0%, transparent 52%, rgba(6, 214, 214, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.video-card:hover::before {
    opacity: 1;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #050816;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.06);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: rgba(255, 42, 104, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
    box-shadow: 0 12px 28px rgba(255, 42, 104, 0.36);
    border: 2px solid rgba(255, 255, 255, 0.28);
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(255, 42, 104, 1);
}

.video-download-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: rgba(8, 13, 27, 0.78);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.25s ease;
    opacity: 1;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-download-btn:hover {
    background: var(--primary-gradient);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.video-info {
    padding: 18px;
    background: rgba(2, 6, 23, 0.38);
    backdrop-filter: blur(12px);
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    font-size: 14px;
    font-weight: 650;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
    line-height: 1.45;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: all 0.25s ease;
    min-width: 0;
}

.stat:hover {
    background: rgba(255, 42, 104, 0.14);
    color: var(--text-primary);
}

.modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(2, 6, 23, 0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 2147483647 !important;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease-out;
    padding: 20px;
    overflow-y: auto;
    margin: 0 !important;
    transform: none !important;
}

.modal.active {
    display: flex !important;
}

.modal-content {
    position: relative !important;
    width: 100%;
    max-width: 420px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: auto !important;
}

.modal-title {
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    width: 100%;
}

.video-player-container {
    position: relative !important;
    width: 100%;
    max-height: 80vh;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.12);
    top: auto !important;
}

@supports not (aspect-ratio: 9 / 16) {
    .video-player-container {
        height: 70vh;
    }
}

.video-player {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    max-width: 100% !important;
}

.close-modal {
    position: absolute !important;
    top: -52px !important;
    right: 0 !important;
    width: 44px;
    height: 44px;
    background: rgba(255, 42, 104, 0.18);
    border: 1px solid rgba(255, 42, 104, 0.48);
    border-radius: 50%;
    color: white;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    z-index: 20;
    box-shadow: 0 8px 22px rgba(255, 42, 104, 0.24);
}

.close-modal:hover {
    background: rgba(255, 42, 104, 0.36);
    transform: rotate(90deg) scale(1.06);
    border-color: rgba(255, 42, 104, 0.75);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 999px;
    position: relative;
    transition: width 0.1s linear;
}

.control-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.control-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}

.control-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.25);
    outline-offset: 3px;
}

.play-pause {
    width: 54px;
    height: 54px;
    background: var(--primary-gradient);
    font-size: 22px;
    border: none;
    box-shadow: var(--shadow-md);
}

.play-pause:hover {
    background: var(--secondary-gradient);
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-slider {
    width: 82px;
    height: 5px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.volume-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 999px;
    transition: width 0.1s ease;
}

.loading {
    display: none;
    justify-content: center;
    align-items: center;
    padding: clamp(34px, 6vw, 56px) 24px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.56));
    backdrop-filter: blur(28px);
    border-radius: 22px;
    margin: 28px 0 0;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.loading-content {
    text-align: center;
}

.loading-animation {
    position: relative;
    width: 104px;
    height: 104px;
    margin: 0 auto 22px;
}

.loading-ring {
    position: absolute;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.loading-ring:nth-child(1) {
    width: 104px;
    height: 104px;
    border-top-color: #ff2a68;
    animation-duration: 2s;
}

.loading-ring:nth-child(2) {
    width: 78px;
    height: 78px;
    top: 13px;
    left: 13px;
    border-right-color: #06d6d6;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.loading-ring:nth-child(3) {
    width: 52px;
    height: 52px;
    top: 26px;
    left: 26px;
    border-bottom-color: #8b5cf6;
    animation-duration: 1s;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.loading-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 17px;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 14px;
    color: var(--text-secondary);
}

.profile-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(2, 6, 23, 0.94);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 2147483647 !important;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease-out;
    padding: 20px;
    margin: 0 !important;
    transform: none !important;
}

.profile-modal.active {
    display: flex !important;
}

.profile-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-modal-image {
    max-width: min(86%, 720px);
    max-height: 82%;
    border-radius: 22px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.12);
    object-fit: contain;
}

.profile-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: rgba(255, 42, 104, 0.18);
    border: 1px solid rgba(255, 42, 104, 0.48);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}

.profile-modal-close:hover {
    background: rgba(255, 42, 104, 0.36);
    transform: rotate(90deg) scale(1.06);
}

.profile-modal-download {
    position: absolute;
    bottom: 20px;
    right: 20px;
    min-height: 48px;
    padding: 0 22px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.profile-modal-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.download-progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.86);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-weight: 650;
    z-index: 1001;
    display: none;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 300px;
    max-width: calc(100vw - 40px);
}

.download-progress.show {
    display: flex;
}

.download-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ff2a68;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    flex-shrink: 0;
}

.download-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.download-text {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.download-progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 999px;
    width: 0%;
    transition: width 0.3s ease;
}

.cancel-download-btn {
    background: rgba(255, 42, 104, 0.18);
    border: 1px solid rgba(255, 42, 104, 0.42);
    color: white;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cancel-download-btn:hover {
    background: rgba(255, 42, 104, 0.36);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}

.error-message {
    background: rgba(255, 42, 104, 0.12);
    border: 1px solid rgba(255, 42, 104, 0.28);
    color: #ff9ab8;
    padding: 14px 16px;
    border-radius: 14px;
    margin-top: 14px;
    display: none;
    align-items: center;
    gap: 10px;
    font-weight: 650;
    box-shadow: 0 10px 26px rgba(255, 42, 104, 0.1);
}

.fas,
.fab,
.fa-search,
.fa-paste,
.fa-exclamation-circle,
.fa-video,
.fa-download,
.fa-times,
.fa-volume-up,
.fa-play,
.fa-expand,
.fa-stop,
.fa-spinner,
.fa-spin,
.fa-tiktok,
.fa-heart,
.fa-comment,
.fa-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-style: normal;
    text-rendering: auto;
    flex-shrink: 0;
}

.fas {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome !important;
    font-weight: 900 !important;
}

.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", FontAwesome !important;
    font-weight: 400 !important;
}

.fa-spin,
.fa-spinner {
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .container_tiktok {
        padding: 28px 14px;
    }

    .logo-container {
        flex-direction: column;
        gap: 14px;
    }

    .logo-icon {
        width: 58px;
        height: 58px;
        font-size: 27px;
        margin-top: 0;
        border-radius: 16px;
    }

    .logo-text {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.22;
    }

    .search-section {
        padding: 18px;
        border-radius: 20px;
    }

    .search-input {
        height: 54px !important;
        min-height: 54px !important;
        max-height: 54px !important;
        line-height: 54px !important;
        font-size: 15px !important;
        padding: 0 15px !important;
    }

    .paste-hint {
        justify-content: center;
    }

    .search-box {
        flex-direction: column;
        gap: 12px;
    }

    .search-button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 52px;
        padding: 0 18px;
    }

    .search-again-btn {
        min-height: 52px;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .profile-avatar {
        width: 104px;
        height: 104px;
    }

    .profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .videos-section-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .buttons_flex {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }

    .videos-button,
    .download-all-btn {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }

    .videos-count {
        text-align: center;
        white-space: normal;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }

    .video-card {
        height: 430px;
    }

    .video-thumbnail-container {
        height: 270px;
    }

    .control-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .volume-controls {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        max-width: 100%;
        padding: 0 8px;
    }

    .close-modal {
        top: -48px !important;
        right: 8px !important;
    }

    .download-progress {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 500px) {
    .container_tiktok {
        padding: 24px 12px;
    }

    .header {
        margin-bottom: 22px;
    }

    .logo-icon {
        width: 54px;
        height: 54px;
        font-size: 25px;
        margin-top: 0;
    }

    .logo-text {
        font-size: 24px;
        line-height: 1.24;
    }

    .search-section,
    .profile-section {
        border-radius: 18px;
        padding: 16px;
    }

    .search-input {
        height: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
        line-height: 52px !important;
        font-size: 15px !important;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

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

    .video-card {
        height: 410px;
        border-radius: 18px;
    }

    .video-thumbnail-container {
        height: 252px;
    }

    .video-info {
        height: 158px;
        padding: 16px;
    }

    .videos-section-header {
        display: flex !important;
        align-items: stretch !important;
        justify-content: flex-start;
        margin-bottom: 18px;
        padding: 8px 0;
    }

    .download-all-btn {
        width: 100%;
        margin-left: 0;
        font-size: 14px;
    }

    .buttons_flex {
        flex-direction: column;
    }

    .video-player-container {
        max-height: 75vh;
        border-radius: 18px;
    }

    .control-button {
        width: 40px;
        height: 40px;
    }

    .play-pause {
        width: 50px;
        height: 50px;
    }

    .profile-modal-download {
        left: 20px;
        right: 20px;
        width: auto;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 22px;
    }

    .search-button,
    .search-again-btn,
    .videos-button,
    .download-all-btn {
        font-size: 13px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .video-stats {
        grid-template-columns: 1fr;
    }

    .download-progress {
        flex-wrap: wrap;
    }

    .cancel-download-btn {
        width: 100%;
        justify-content: center;
    }
}