@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=Inter:wght@400;500;600;700;800&display=swap");

/* 
         * FIX: Restored the global reset. This is crucial for removing the default
         * body margin that was breaking the full-page background. This is a
         * common and safe reset.
         */
        .yttv-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 
         * The main wrapper styles for encapsulation,
         * ensuring the background and font settings don't leak globally
         * beyond the component itself.
         */
        .yttv-wrapper {
            font-family: 'Inter', sans-serif;
            
      background: hsla(159, 82%, 55%, 1);

background: linear-gradient(90deg, hsla(159, 82%, 55%, 1) 0%, hsla(206, 98%, 48%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(159, 82%, 55%, 1) 0%, hsla(206, 98%, 48%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(159, 82%, 55%, 1) 0%, hsla(206, 98%, 48%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#2FEAA8", endColorstr="#028CF3", GradientType=1 );
            color: #ffffff;
           
            line-height: 1.5;
            font-size: 30px;
            font-weight: 700;
        }

        .yttv-container {
            max-width: 64%;
            margin: 0 auto;
            padding: 100px 16px; 
        }

        /* Header */
        .yttv-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
        }

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

        .yttv-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52, #ff4757, #ff3838);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
        }

        .yttv-youtube-icon {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .yttv-title {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #f1f2f6, #e3f2fd, #bbdefb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .yttv-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Input Section */
        .yttv-input-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .yttv-input-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-align: center;
        }

        .yttv-input-group {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }

     .yttv-input-field {
	flex: 1;
	padding: 14px 18px !important;
	border: 2px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #1b5071;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

        .yttv-input-field:focus {
            outline: none;
            border-color: #5f27cd;
            background: rgba(255, 255, 255, 0.15);
        }

        .yttv-input-field::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .yttv-btn {
            padding: 14px 20px;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .yttv-btn-paste {
            background: linear-gradient(135deg, #5f27cd, #341f97, #2e1065, #1e1b4b);
            color: white;
            box-shadow: 0 4px 15px rgba(95, 39, 205, 0.4);
        }

        .yttv-btn-paste:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(95, 39, 205, 0.4);
        }

     .yttv-btn-find {
	background: linear-gradient(135deg, #2a82a4, #4b7cb9, #2e86de, #1e90ff);
	color: white;
	width: 100%;
	justify-content: center;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(0, 210, 211, 0.4);
}

        .yttv-btn-find:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 210, 211, 0.4);
        }

        .yttv-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }

        .yttv-btn-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Loading */
        .yttv-loading {
            display: none;
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .yttv-loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid #00d2d3;
            border-radius: 50%;
            animation: yttv-spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        .yttv-loading-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }

        /* Results */
        .yttv-results {
            display: none;
        }

        .yttv-video-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        /* Video Header */
        .yttv-video-header {
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .yttv-thumbnail-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/9;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .yttv-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .yttv-video-info .yttv-video-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .yttv-channel-info {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .yttv-channel-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff4757, #ff3838, #ff2d55, #ff1744);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .yttv-channel-icon {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .yttv-channel-details .yttv-channel-name {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 2px;
        }

        .yttv-channel-link {
            color: #2a7f80;
            text-decoration: none;
            font-weight: 600;
        }

        .yttv-channel-link:hover {
            color: #54a0ff;
        }

        .yttv-verified-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        /* Stats Grid */
        .yttv-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .yttv-stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .yttv-stat-card:hover {
            transform: translateY(-3px);
        }

        .yttv-stat-icon {
            width: 24px;
            height: 24px;
            margin: 0 auto 8px;
            padding: 6px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .yttv-stat-card.yttv-views .yttv-stat-icon {
            background: linear-gradient(135deg, #54a0ff, #2e86de, #1e90ff, #007bff);
        }

        .yttv-stat-card.yttv-likes .yttv-stat-icon {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52, #ff4757, #ff3838);
        }

        .yttv-stat-card.yttv-published .yttv-stat-icon {
            background: linear-gradient(135deg, #5f27cd, #341f97, #2e1065, #1e1b4b);
        }

        .yttv-stat-icon svg {
            width: 12px;
            height: 12px;
            fill: white;
        }

        .yttv-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .yttv-stat-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
        }

        /* Title Section */
        .yttv-title-section {
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .yttv-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .yttv-section-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .yttv-section-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #5f27cd, #341f97, #2e1065, #1e1b4b);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .yttv-section-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .yttv-section-title-text .yttv-section-title-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2px;
        }

        .yttv-section-title-text p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .yttv-copy-btn {
            background: linear-gradient(135deg, #00d2d3, #54a0ff, #2e86de, #1e90ff);
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .yttv-copy-btn:hover {
            transform: translateY(-2px);
        }

        .yttv-copy-btn.yttv-copied {
            background: linear-gradient(135deg, #2ed573, #1e90ff);
        }

        .yttv-copy-icon {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .yttv-title-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #5f27cd;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 0.9rem;
            white-space: pre-wrap;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Error State */
        .yttv-error {
            background: rgba(255, 107, 107, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 107, 107, 0.2);
            text-align: center;
            margin-bottom: 30px;
        }

        .yttv-error-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .yttv-error .yttv-error-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ff6b6b;
            margin-bottom: 10px;
        }

        .yttv-error .yttv-error-message {
            font-size: 0.95rem;
            color: rgba(255, 107, 107, 0.8);
            margin-bottom: 8px;
        }

        .yttv-error .yttv-error-details {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        /* Features Grid */
        .yttv-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .yttv-feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .yttv-feature-card:hover {
            transform: translateY(-5px);
        }

        .yttv-feature-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
            display: block;
        }

        .yttv-feature-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
        }

        /* Animations */
        @keyframes yttv-spin {
            to {
                transform: rotate(360deg);
            }
        }
			
			input.text, input.title, input[type="email"], input[type="password"], input[type="tel"], input[type="text"], select, textarea {
	background-color: transparent;
}

        /* 
         * FIX: Custom Scrollbar styles are scoped to wrapper.
         * Prefixing them with wrapper class prevents them from applying to the main
         * document scrollbar. This change makes them work as intended again.
         */
        .yttv-wrapper ::-webkit-scrollbar {
            width: 6px;
        }

        .yttv-wrapper ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .yttv-wrapper ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #5f27cd, #341f97, #2e1065, #1e1b4b);
            border-radius: 3px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .yttv-container {
                padding: 15px;
            }

            .yttv-title {
                font-size: 1.8rem;
            }

            .yttv-input-group {
                flex-direction: column;
            }

            .yttv-input-section,
            .yttv-loading,
            .yttv-error {
                padding: 20px;
            }

            .yttv-video-header {
                padding: 20px;
            }
					.yttv-title {
	font-size: 1.3rem;
	margin-top: 40px;
}
        }

        /* Search Again Button */
        .yttv-search-again-section {
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .yttv-btn-search-again {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52, #ff4757, #ff3838);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .yttv-btn-search-again:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .yttv-search-again-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
      
              @media (max-width: 991px) {
            .yttv-container {
                max-width: 720px;
                padding: 15px;
            }

            .yttv-title {
                font-size: 2rem;
            }

            .yttv-subtitle {
                font-size: 0.9rem;
            }

            .yttv-input-section,
            .yttv-loading,
            .yttv-error {
                padding: 25px;
            }

            .yttv-input-title {
                font-size: 1.2rem;
            }

            .yttv-input-group {
                flex-direction: column;
                gap: 10px;
            }

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

            .yttv-video-header {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
            }

            .yttv-video-info .yttv-video-title {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .yttv-channel-info {
                padding: 10px;
                margin-bottom: 15px;
            }

            .yttv-channel-name {
                font-size: 0.9rem;
            }

            .yttv-stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
            }

            .yttv-stat-card {
                padding: 12px;
            }

            .yttv-stat-label {
                font-size: 0.7rem;
            }

            .yttv-stat-value {
                font-size: 1rem;
            }

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

            .yttv-section-title-text .yttv-section-title-heading {
                font-size: 1.1rem;
            }

            .yttv-copy-btn {
                width: 100%;
                justify-content: center;
            }

            .yttv-title-content {
                padding: 15px;
                font-size: 0.85rem;
            }

            .yttv-error .yttv-error-title {
                font-size: 1.2rem;
            }

            .yttv-error .yttv-error-message {
                font-size: 0.9rem;
            }

            .yttv-features-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 10px;
            }

            .yttv-feature-card {
                padding: 15px;
            }

            .yttv-feature-text {
                font-size: 0.8rem;
            }

            .yttv-btn-search-again {
                font-size: 0.9rem;
                padding: 12px 20px;
            }
        }

        @media (max-width: 768px) {
            .yttv-container {
                max-width: 100%;
                padding: 15px;
            }

            .yttv-title {
                font-size: 1.8rem;
            }

            .yttv-subtitle {
                font-size: 0.85rem;
            }

            .yttv-input-section,
            .yttv-loading,
            .yttv-error {
                padding: 20px;
            }

            .yttv-input-title {
                font-size: 1.1rem;
            }

            .yttv-video-info .yttv-video-title {
                font-size: 1.1rem;
            }

            .yttv-stats-grid {
                grid-template-columns: 1fr 1fr; /* Two columns on smaller screens */
            }

            .yttv-section-title-text .yttv-section-title-heading {
                font-size: 1rem;
            }

            .yttv-title-content {
                font-size: 0.8rem;
            }

            .yttv-btn-find {
                padding: 14px;
                font-size: 15px;
            }
					.yttv-title {
	font-size: 1.3rem;
	margin-top: 40px;
}
					.yttv-logo {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	margin-top: 27px;
}
        }

        @media (max-width: 600px) {
            .yttv-header {
                padding: 20px 0;
                margin-bottom: 30px;
            }

            .yttv-logo-container {
                gap: 10px;
                margin-bottom: 15px;
            }

            .yttv-logo {
                width: 45px;
                height: 45px;
                border-radius: 10px;
            }

            .yttv-youtube-icon {
                width: 25px;
                height: 25px;
            }

            .yttv-title {
                font-size: 1.6rem;
            }

            .yttv-subtitle {
                font-size: 0.8rem;
            }

            .yttv-input-field {
                padding: 12px 15px;
                font-size: 13px;
            }

            .yttv-btn {
                padding: 12px 15px;
                font-size: 13px;
            }

            .yttv-btn-find {
                padding: 14px;
                font-size: 14px;
            }

            .yttv-loading-spinner {
                width: 35px;
                height: 35px;
            }

            .yttv-loading-text {
                font-size: 1rem;
            }

            .yttv-video-header {
                padding: 15px;
            }

            .yttv-video-info .yttv-video-title {
                font-size: 1rem;
            }

            .yttv-channel-avatar {
                width: 35px;
                height: 35px;
            }

            .yttv-channel-icon {
                width: 18px;
                height: 18px;
            }

            .yttv-channel-name {
                font-size: 0.85rem;
            }

            .yttv-verified-text {
                font-size: 0.75rem;
            }

            .yttv-stats-grid {
                grid-template-columns: 1fr; /* Stack on very small screens */
            }

            .yttv-stat-card {
                padding: 10px;
            }

            .yttv-stat-label {
                font-size: 0.65rem;
            }

            .yttv-stat-value {
                font-size: 0.9rem;
            }

            .yttv-section-icon {
                width: 35px;
                height: 35px;
            }

            .yttv-section-icon svg {
                width: 18px;
                height: 18px;
            }

            .yttv-section-title-text .yttv-section-title-heading {
                font-size: 0.95rem;
            }

            .yttv-section-title-text p {
                font-size: 0.8rem;
            }

            .yttv-copy-btn {
                padding: 8px 12px;
                font-size: 0.8rem;
            }

            .yttv-title-content {
                padding: 12px;
                font-size: 0.75rem;
            }

            .yttv-error .yttv-error-icon {
                font-size: 2.5rem;
            }

            .yttv-error .yttv-error-title {
                font-size: 1.1rem;
            }

            .yttv-error .yttv-error-message {
                font-size: 0.85rem;
            }

            .yttv-features-grid {
                grid-template-columns: 1fr 1fr;
            }

            .yttv-feature-card {
                padding: 15px;
            }

            .yttv-feature-text {
                font-size: 0.75rem;
            }

            .yttv-btn-search-again {
                font-size: 0.85rem;
                padding: 10px 18px;
            }
					.yttv-wrapper {
	font-family: 'Inter', sans-serif;
	color: #ffffff;
	line-height: 1.5;
	font-size: 14px;
	font-weight: 700;
}
					.yttv-title {
	font-size: 1.3rem;
	margin-top: 40px;
}
					.yttv-logo {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	margin-top: 27px;
}
        }

        @media (max-width: 400px) {
            .yttv-container {
                padding: 10px;
            }

            .yttv-title {
                font-size: 1.4rem;
            }

            .yttv-subtitle {
                font-size: 0.75rem;
            }

            .yttv-input-section,
            .yttv-loading,
            .yttv-error {
                padding: 15px;
            }

            .yttv-input-title {
                font-size: 1rem;
            }

            .yttv-btn-paste {
                padding: 10px 12px;
                font-size: 12px;
            }

            .yttv-btn-find {
                padding: 12px;
                font-size: 13px;
            }

            .yttv-loading-spinner {
                width: 30px;
                height: 30px;
            }

            .yttv-loading-text {
                font-size: 0.9rem;
            }

            .yttv-video-info .yttv-video-title {
                font-size: 0.95rem;
            }

            .yttv-channel-name {
                font-size: 0.8rem;
            }

            .yttv-verified-text {
                font-size: 0.7rem;
            }

            .yttv-section-title-text .yttv-section-title-heading {
                font-size: 0.9rem;
            }

            .yttv-section-title-text p {
                font-size: 0.75rem;
            }

            .yttv-copy-btn {
                font-size: 0.75rem;
            }

            .yttv-title-content {
                font-size: 0.7rem;
            }

            .yttv-error .yttv-error-title {
                font-size: 1rem;
            }

            .yttv-error .yttv-error-message {
                font-size: 0.8rem;
            }

            .yttv-features-grid {
                grid-template-columns: 1fr; /* Stack on smallest screens */
            }

            .yttv-feature-card {
                padding: 12px;
            }

            .yttv-feature-text {
                font-size: 0.7rem;
            }

            .yttv-btn-search-again {
                font-size: 0.8rem;
                padding: 8px 15px;
            }
					.yttv-wrapper {
	font-family: 'Inter', sans-serif;
	color: #ffffff;
	line-height: 1.5;
	font-size: 14px;
	font-weight: 700;
}
					.yttv-title {
	font-size: 1.3rem;
	margin-top: 40px;
}
					.yttv-logo {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	margin-top: 27px;
}
        }

        @media (max-width: 375px) {
            .yttv-title {
                font-size: 1.3rem;
            }

            .yttv-subtitle {
                font-size: 0.7rem;
            }

            .yttv-input-field {
                font-size: 12px;
            }

            .yttv-btn-paste {
                font-size: 11px;
            }

            .yttv-btn-find {
                font-size: 12px;
            }

            .yttv-video-info .yttv-video-title {
                font-size: 0.9rem;
            }

            .yttv-channel-name {
                font-size: 0.75rem;
            }

            .yttv-verified-text {
                font-size: 0.65rem;
            }

            .yttv-stat-label {
                font-size: 0.6rem;
            }

            .yttv-stat-value {
                font-size: 0.8rem;
            }

            .yttv-section-title-text .yttv-section-title-heading {
                font-size: 0.85rem;
            }

            .yttv-section-title-text p {
                font-size: 0.7rem;
            }

            .yttv-copy-btn {
                font-size: 0.7rem;
                padding: 7px 10px;
            }

            .yttv-title-content {
                font-size: 0.65rem;
            }

            .yttv-error .yttv-error-title {
                font-size: 0.95rem;
            }

            .yttv-error .yttv-error-message {
                font-size: 0.75rem;
            }

            .yttv-feature-text {
                font-size: 0.65rem;
            }

            .yttv-btn-search-again {
                font-size: 0.75rem;
                padding: 7px 12px;
            }
					.yttv-wrapper {
	font-family: 'Inter', sans-serif;
	color: #ffffff;
	line-height: 1.5;
	font-size: 14px;
	font-weight: 700;
}
					.yttv-title {
	font-size: 1.3rem;
	margin-top: 40px;
}
					.yttv-logo {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	margin-top: 27px;
}
        }

/* --- Codex CSS updates --- */
.yttv-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.yttv-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', Arial, sans-serif;
    color: #f8fbff;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.26), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #0fbf9f 0%, #028cf3 52%, #2752d9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0FBF9F", endColorstr="#2752D9", GradientType=1);
}

.yttv-container {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 16px;
}

.yttv-header {
    text-align: center;
    margin-bottom: 24px;
    padding: 10px 0 6px;
}

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

.yttv-logo {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(255, 65, 108, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.yttv-youtube-icon {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    display: block;
}

.yttv-title {
    max-width: 760px;
    margin: 0 auto 7px;
    font-size: clamp(1.42rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: capitalize !important;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #eef8ff 52%, #d6ecff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow-wrap: anywhere;
}

.yttv-subtitle {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    line-height: 1.45;
    text-transform: capitalize !important;
}

.yttv-input-section {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 22px;
    padding: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(8, 37, 78, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.yttv-input-title {
    margin-bottom: 14px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 750;
    color: #ffffff;
    letter-spacing: 0;
}

.yttv-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 14px;
}

.yttv-input-field {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.44) !important;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94) !important;
    color: #17324d;
    font-size: 15px;
    font-weight: 600;
    line-height: 54px;
    font-family: 'Inter', Arial, sans-serif;
    outline: none;
    resize: none;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 26px rgba(9, 35, 71, 0.1);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

textarea.yttv-input-field {
    line-height: 1.35;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.yttv-input-field:focus {
    border-color: #7dd3fc !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.28), 0 12px 30px rgba(9, 35, 71, 0.16);
}

.yttv-input-field::placeholder {
    color: #7890a8;
    opacity: 1;
}

.yttv-btn {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
    box-shadow: 0 14px 30px rgba(9, 35, 71, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

.yttv-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.06) brightness(1.03);
}

.yttv-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(9, 35, 71, 0.18);
}

.yttv-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.82);
    outline-offset: 3px;
}

.yttv-btn:disabled {
    opacity: 0.58;
    cursor: not-allowed;
    transform: none !important;
    filter: none;
}

.yttv-btn-icon {
    width: 17px;
    height: 17px;
    min-width: 17px;
    fill: currentColor;
    display: inline-block;
}

.yttv-btn-paste {
    width: 100%;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 54%, #2563eb 100%);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.28);
}

.yttv-btn-paste:hover {
    box-shadow: 0 18px 38px rgba(79, 70, 229, 0.34);
}

.yttv-btn-find {
    width: 100%;
    min-height: 54px;
    padding: 0 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 46%, #2563eb 100%);
    box-shadow: 0 16px 36px rgba(6, 182, 212, 0.3);
}

.yttv-btn-find:hover {
    box-shadow: 0 20px 44px rgba(6, 182, 212, 0.38);
}

.yttv-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 22px;
}

.yttv-feature-card {
    min-height: 100px;
    padding: 18px 14px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 16px 38px rgba(8, 37, 78, 0.16);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.yttv-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 22px 48px rgba(8, 37, 78, 0.2);
}

.yttv-feature-icon {
    display: block;
    margin-bottom: 8px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.yttv-feature-text {
    font-size: 0.9rem;
    font-weight: 750;
    color: #ffffff;
    line-height: 1.3;
}

.yttv-loading {
    display: none;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 22px;
    padding: 28px 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.09));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 20px 54px rgba(8, 37, 78, 0.18);
}

.yttv-loading-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 16px;
    border: 4px solid rgba(255, 255, 255, 0.26);
    border-top-color: #ffffff;
    border-right-color: #7dd3fc;
    border-radius: 50%;
    animation: yttv-spin 0.85s linear infinite;
}

.yttv-loading-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.yttv-results {
    display: none;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.yttv-video-card {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.09));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 24px 70px rgba(8, 37, 78, 0.22);
}

.yttv-video-header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.yttv-thumbnail-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    background: rgba(11, 30, 52, 0.2);
    box-shadow: 0 18px 40px rgba(8, 37, 78, 0.2);
}

.yttv-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yttv-video-info .yttv-video-title {
    margin-bottom: 14px;
    font-size: 1.12rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.yttv-channel-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.yttv-channel-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(255, 65, 108, 0.24);
}

.yttv-channel-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: block;
}

.yttv-channel-details {
    min-width: 0;
}

.yttv-channel-details .yttv-channel-name,
.yttv-channel-name {
    margin-bottom: 2px;
    font-size: 0.98rem;
    font-weight: 750;
    color: #ffffff;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.yttv-channel-link {
    color: #dff9ff;
    text-decoration: none;
    font-weight: 750;
    transition: color 0.2s ease;
}

.yttv-channel-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.yttv-verified-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 600;
}

.yttv-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.yttv-stat-card {
    padding: 15px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.yttv-stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.17);
}

.yttv-stat-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 9px;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yttv-stat-card.yttv-views .yttv-stat-icon {
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
}

.yttv-stat-card.yttv-likes .yttv-stat-icon,
.yttv-likes .yttv-stat-icon {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

.yttv-stat-card.yttv-published .yttv-stat-icon,
.yttv-published .yttv-stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 100%);
}

.yttv-stat-icon svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    display: block;
}

.yttv-stat-label {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yttv-stat-value {
    color: #ffffff;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.yttv-title-section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.yttv-section-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 16px;
}

.yttv-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.yttv-section-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(79, 70, 229, 0.28);
}

.yttv-section-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: block;
}

.yttv-section-title-text {
    min-width: 0;
}

.yttv-section-title-text .yttv-section-title-heading {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.yttv-section-title-text p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 600;
}

.yttv-copy-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 750;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.yttv-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
}

.yttv-copy-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.82);
    outline-offset: 3px;
}

.yttv-copy-btn.yttv-copied {
    background: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
}

.yttv-copy-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: inline-block;
}

.yttv-title-content {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid #7dd3fc;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.yttv-error {
    width: 100%;
    max-width: 820px;
    margin: 0 auto 22px;
    padding: 24px 18px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(254, 226, 226, 0.22), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(248, 113, 113, 0.36);
    box-shadow: 0 20px 54px rgba(127, 29, 29, 0.14);
}

.yttv-error-icon,
.yttv-error .yttv-error-icon {
    margin-bottom: 12px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-size: 2.55rem;
    line-height: 1;
}

.yttv-error-title,
.yttv-error .yttv-error-title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
}

.yttv-error-message,
.yttv-error .yttv-error-message {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 650;
}

.yttv-error-details,
.yttv-error .yttv-error-details {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 600;
}

.yttv-search-again-section {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.yttv-btn-search-again {
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 750;
    font-size: 0.94rem;
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 45%, #ef4444 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 30px rgba(244, 63, 94, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.yttv-btn-search-again:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(244, 63, 94, 0.34);
}

.yttv-btn-search-again:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.82);
    outline-offset: 3px;
}

.yttv-search-again-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: inline-block;
}

.yttv-wrapper input.text,
.yttv-wrapper input.title,
.yttv-wrapper input[type="email"],
.yttv-wrapper input[type="password"],
.yttv-wrapper input[type="tel"],
.yttv-wrapper input[type="text"],
.yttv-wrapper select,
.yttv-wrapper textarea {
    background-color: rgba(255, 255, 255, 0.94);
}

.yttv-wrapper ::-webkit-scrollbar {
    width: 8px;
}

.yttv-wrapper ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
}

.yttv-wrapper ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    border-radius: 99px;
}

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

@media (min-width: 520px) {
    .yttv-container {
        padding: 46px 20px;
    }

    .yttv-input-section,
    .yttv-loading,
    .yttv-error {
        padding: 26px;
    }

    .yttv-features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .yttv-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 769px) {
    .yttv-container {
        padding: 72px 24px;
    }

    .yttv-header {
        margin-bottom: 30px;
        padding: 14px 0 8px;
    }

    .yttv-logo-container {
        gap: 16px;
    }

    .yttv-input-section {
        padding: 30px;
        margin-bottom: 26px;
    }

    .yttv-input-group {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .yttv-input-field {
        max-width: none;
    }

    .yttv-btn-paste {
        width: auto;
        min-width: 118px;
    }

    .yttv-btn-find {
        max-width: 100%;
    }

    .yttv-section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .yttv-copy-btn,
    .yttv-btn-search-again {
        width: auto;
    }

    .yttv-video-header {
        padding: 24px;
    }

    .yttv-title-section,
    .yttv-search-again-section {
        padding: 24px;
    }
}

@media (min-width: 992px) {
    .yttv-container {
        padding: 86px 24px;
    }

    .yttv-title {
        font-size: 2rem;
    }

    .yttv-subtitle {
        font-size: 1rem;
    }

    .yttv-video-info .yttv-video-title {
        font-size: 1.28rem;
    }
}

@media (max-width: 768px) {
    .yttv-wrapper {
        font-size: 15px;
    }

    .yttv-container {
        width: 100%;
        max-width: 100%;
        padding: 28px 14px;
    }

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

    .yttv-logo {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
    }

    .yttv-youtube-icon {
        width: 25px;
        height: 25px;
    }

    .yttv-title {
        font-size: 1.42rem;
        margin-top: 0;
    }

    .yttv-subtitle {
        font-size: 0.9rem;
    }

    .yttv-input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .yttv-input-field {
        width: 100%;
        height: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
        line-height: 52px;
        font-size: 14px;
    }

    textarea.yttv-input-field {
        line-height: 1.35;
    }

    .yttv-btn,
    .yttv-btn-paste,
    .yttv-btn-find {
        width: 100%;
        min-height: 50px;
        font-size: 14px;
    }

    .yttv-input-section,
    .yttv-loading,
    .yttv-error {
        padding: 20px;
        border-radius: 20px;
    }

    .yttv-video-header {
        padding: 18px;
    }

    .yttv-section-title-text .yttv-section-title-heading {
        font-size: 1rem;
    }

    .yttv-title-content {
        font-size: 0.84rem;
    }
}

@media (max-width: 600px) {
    .yttv-container {
        padding: 24px 12px;
    }

    .yttv-header {
        margin-bottom: 22px;
        padding: 6px 0;
    }

    .yttv-input-section,
    .yttv-loading,
    .yttv-error {
        padding: 18px;
    }

    .yttv-input-title {
        font-size: 1rem;
    }

    .yttv-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .yttv-feature-card {
        min-height: 92px;
        padding: 15px 10px;
    }

    .yttv-feature-icon {
        font-size: 1.38rem;
    }

    .yttv-feature-text {
        font-size: 0.82rem;
    }

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

    .yttv-channel-info {
        align-items: flex-start;
    }
}

@media (max-width: 400px) {
    .yttv-container {
        padding: 20px 10px;
    }

    .yttv-title {
        font-size: 1.3rem;
    }

    .yttv-subtitle {
        font-size: 0.84rem;
    }

    .yttv-input-section,
    .yttv-loading,
    .yttv-error {
        padding: 15px;
        border-radius: 18px;
    }

    .yttv-input-field {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
        line-height: 50px;
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 13px;
    }

    .yttv-btn,
    .yttv-btn-paste,
    .yttv-btn-find,
    .yttv-btn-search-again {
        min-height: 48px;
        font-size: 13px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .yttv-features-grid {
        grid-template-columns: 1fr;
    }

    .yttv-feature-card {
        min-height: 82px;
    }

    .yttv-title-content {
        padding: 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .yttv-title {
        font-size: 1.24rem;
    }

    .yttv-subtitle {
        font-size: 0.8rem;
    }

    .yttv-input-field {
        font-size: 13px;
    }

    .yttv-btn-paste,
    .yttv-btn-find,
    .yttv-btn-search-again {
        font-size: 12.5px;
    }

    .yttv-video-info .yttv-video-title {
        font-size: 0.98rem;
    }

    .yttv-channel-name {
        font-size: 0.84rem;
    }

    .yttv-verified-text {
        font-size: 0.72rem;
    }

    .yttv-stat-label {
        font-size: 0.66rem;
    }

    .yttv-stat-value {
        font-size: 0.92rem;
    }

    .yttv-section-title-text .yttv-section-title-heading {
        font-size: 0.92rem;
    }

    .yttv-section-title-text p {
        font-size: 0.76rem;
    }

    .yttv-feature-text {
        font-size: 0.76rem;
    }
}