@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%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, rgba(255, 0, 0, 0.18), transparent 34%), linear-gradient(135deg, #0b0b0f 0%, #171821 48%, #260606 100%);
    color: #f8fafc;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
}

.yttv-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 84px 24px;
}

.yttv-header {
    text-align: center;
    margin-bottom: 36px;
    padding: 22px 0;
}

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

.yttv-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff0033, #e50914, #b20710);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(229, 9, 20, 0.34);
    flex: 0 0 auto;
}

.yttv-youtube-icon {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.yttv-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.yttv-subtitle {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.yttv-input-section {
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.yttv-input-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

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

.yttv-input-field {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 15px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.yttv-input-field:focus {
    outline: none;
    border-color: #ff3347 !important;
    box-shadow: 0 0 0 4px rgba(255, 51, 71, 0.2);
    background: #ffffff;
}

.yttv-input-field::placeholder {
    color: #64748b;
}

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

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

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

.yttv-btn-paste {
    background: linear-gradient(135deg, #27272a, #18181b);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.yttv-btn-paste:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
    background: linear-gradient(135deg, #3f3f46, #18181b);
}

.yttv-btn-find {
    background: linear-gradient(135deg, #ff0033, #e50914, #b20710);
    color: #ffffff;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    box-shadow: 0 14px 34px rgba(229, 9, 20, 0.34);
}

.yttv-btn-find:hover {
    box-shadow: 0 18px 40px rgba(229, 9, 20, 0.42);
}

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

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

.yttv-loading {
    display: none;
    text-align: center;
    padding: 40px;
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.yttv-results {
    display: none;
}

.yttv-video-card {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

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

.yttv-thumbnail-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    background: #020617;
}

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

.yttv-video-info {
    min-width: 0;
}

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

.yttv-video-title {
    color: #ffffff;
    overflow-wrap: anywhere;
}

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

.yttv-channel-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff0033, #e50914, #b20710);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

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

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

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

.yttv-channel-name {
    color: #ffffff;
    overflow-wrap: anywhere;
}

.yttv-channel-link {
    color: #ff6b7a;
    text-decoration: none;
    font-weight: 700;
}

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

.yttv-verified-text {
    color: #cbd5e1;
    font-size: 0.85rem;
}

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

.yttv-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.yttv-stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
}

.yttv-stat-icon {
    width: 26px;
    height: 26px;
    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,
.yttv-views .yttv-stat-icon {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.yttv-stat-card.yttv-likes .yttv-stat-icon,
.yttv-likes .yttv-stat-icon {
    background: linear-gradient(135deg, #ff0033, #e50914);
}

.yttv-stat-card.yttv-published .yttv-stat-icon,
.yttv-published .yttv-stat-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.yttv-views {
    color: #ffffff;
}

.yttv-likes {
    color: #ffffff;
}

.yttv-published {
    color: #ffffff;
}

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

.yttv-stat-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

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

.yttv-title-section {
    padding: 26px;
    background: rgba(255, 255, 255, 0.045);
    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;
    min-width: 0;
}

.yttv-section-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff0033, #e50914, #b20710);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

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

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

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

.yttv-section-title-heading {
    color: #ffffff;
    overflow-wrap: anywhere;
}

.yttv-section-title-text p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

.yttv-copy-btn {
    background: linear-gradient(135deg, #ff0033, #e50914, #b20710);
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.yttv-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.28);
}

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

.yttv-copy-btn.yttv-copied {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

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

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

.yttv-error {
    background: rgba(127, 29, 29, 0.44);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    text-align: center;
    margin-bottom: 30px;
}

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

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

.yttv-error-message {
    font-size: 0.95rem;
    color: #fee2e2;
    margin-bottom: 8px;
}

.yttv-error-details {
    color: #cbd5e1;
    font-size: 0.85rem;
}

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

.yttv-error .yttv-error-message {
    font-size: 0.95rem;
    color: #fee2e2;
    margin-bottom: 8px;
}

.yttv-error .yttv-error-details {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.yttv-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.yttv-feature-card {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.yttv-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(30, 41, 59, 0.84);
}

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

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

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

.yttv-btn-search-again {
    background: linear-gradient(135deg, #27272a, #18181b);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.yttv-btn-search-again:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3f3f46, #18181b);
}

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

input.text,
input.title,
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
select,
textarea {
    background-color: transparent;
}

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

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

.yttv-wrapper ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff0033, #e50914);
    border-radius: 3px;
}

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

@media (max-width: 991px) {
    .yttv-container {
        max-width: 1200px;
        padding: 64px 20px;
    }

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

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

    .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(120px, 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(2, minmax(0, 1fr));
        gap: 12px;
    }

    .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: 1200px;
        padding: 48px 16px;
    }

    .yttv-header {
        padding: 16px 0;
        margin-bottom: 28px;
    }

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

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

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

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

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

    .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-logo {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
}

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

    .yttv-container {
        padding: 36px 14px;
    }

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

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

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

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

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

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

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

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

    .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-info {
        align-items: flex-start;
    }

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

    .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;
        width: 100%;
    }
}

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

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

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

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

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

    .yttv-btn-search-again {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

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

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