        /* YouTube Thumbnail Downloader Tool Styles - Scoped */
        .yt-tool-section {
            font-family: 'Poppins', sans-serif;
        }
        
        .yt-tool-section * {
            box-sizing: border-box;
        }
        
        /* Color Variables */
        .yt-tool-section {
            --yt-orange: #fe7847;
            --yt-yellow: #fbc715;
            --yt-purple: #4b0bcf;
            --yt-pink: #f03dc8;
            --yt-white: #ffffff;
            --yt-light: #f8f9fa;
            --yt-dark: #212529;
            --yt-gray: #6c757d;
        }
        
        /* Main Tool Section */
        .yt-tool-section {
            background-color: var(--yt-light);
            /*padding: 40px 0;*/
        }
        
        /* Hero Section */
        .yt-hero-section {
            background-color: var(--yt-purple);
            color: var(--yt-white);
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 30px 30px;
        }
        
        .yt-hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .yt-hero-section p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Rating Badge */
        .yt-rating-badge {
            display: inline-flex;
            align-items: center;
            background-color: var(--yt-yellow);
            color: var(--yt-dark);
            padding: 8px 20px;
            border-radius: 50px;
            margin-top: 20px;
            font-weight: 600;
        }
        
        .yt-rating-badge i {
            color: var(--yt-orange);
            margin-right: 5px;
        }
        
        /* Tool Card */
        .yt-tool-card {
            background-color: var(--yt-white);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(75, 11, 207, 0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        
        /* Input Group */
        .yt-input-group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .yt-input-group input {
            width: 100%;
            padding: 18px 25px;
            font-size: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .yt-input-group input:focus {
            outline: none;
            border-color: var(--yt-purple);
            box-shadow: 0 0 0 4px rgba(75, 11, 207, 0.1);
        }
        
        .yt-input-group input::placeholder {
            color: #aaa;
        }
        
        /* Buttons */
        .yt-btn-primary {
            background-color: var(--yt-orange);
            color: var(--yt-white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .yt-btn-primary:hover {
            background-color: #e5693f;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(254, 120, 71, 0.3);
            color: var(--yt-white);
        }
        
        .yt-btn-secondary {
            background-color: var(--yt-purple);
            color: var(--yt-white);
            border: none;
            padding: 12px 25px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .yt-btn-secondary:hover {
            background-color: #3d09a8;
            transform: translateY(-2px);
            color: var(--yt-white);
        }
        
        .yt-btn-download {
            background-color: var(--yt-pink);
            color: var(--yt-white);
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .yt-btn-download:hover {
            background-color: #d835b0;
            transform: translateY(-2px);
            color: var(--yt-white);
        }
        
        /* Results Section */
        .yt-results-section {
            display: none;
            margin-top: 40px;
        }
        
        .yt-results-section.active {
            display: block;
        }
        
        .yt-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--yt-purple);
            margin-bottom: 25px;
            text-align: center;
        }
        
        /* Video Preview */
        .yt-video-preview {
            background-color: var(--yt-light);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .yt-video-preview img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .yt-video-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--yt-dark);
            margin-top: 15px;
            text-align: center;
        }
        
        /* Thumbnail Grid */
        .yt-thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .yt-thumbnail-item {
            background-color: var(--yt-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .yt-thumbnail-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(75, 11, 207, 0.15);
            border-color: var(--yt-purple);
        }
        
        .yt-thumbnail-img-wrapper {
            position: relative;
            overflow: hidden;
        }
        
        .yt-thumbnail-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .yt-thumbnail-item:hover .yt-thumbnail-img-wrapper img {
            transform: scale(1.05);
        }
        
        .yt-thumbnail-quality {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--yt-yellow);
            color: var(--yt-dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        
        .yt-thumbnail-info {
            padding: 20px;
            text-align: center;
        }
        
        .yt-thumbnail-size {
            font-size: 1rem;
            font-weight: 600;
            color: var(--yt-dark);
            margin-bottom: 5px;
        }
        
        .yt-thumbnail-resolution {
            font-size: 0.85rem;
            color: var(--yt-gray);
            margin-bottom: 15px;
        }
        
        /* Features Section */
        .yt-features-section {
            padding: 60px 0;
        }
        
        .yt-feature-card {
            background-color: var(--yt-white);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .yt-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(75, 11, 207, 0.1);
        }
        
        .yt-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .yt-feature-icon.orange {
            background-color: rgba(254, 120, 71, 0.1);
            color: var(--yt-orange);
        }
        
        .yt-feature-icon.yellow {
            background-color: rgba(251, 199, 21, 0.1);
            color: var(--yt-yellow);
        }
        
        .yt-feature-icon.purple {
            background-color: rgba(75, 11, 207, 0.1);
            color: var(--yt-purple);
        }
        
        .yt-feature-icon.pink {
            background-color: rgba(240, 61, 200, 0.1);
            color: var(--yt-pink);
        }
        
        .yt-feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--yt-dark);
            margin-bottom: 10px;
        }
        
        .yt-feature-card p {
            font-size: 0.95rem;
            color: var(--yt-gray);
            margin-bottom: 0;
        }
        
        /* How It Works */
        .yt-how-it-works {
            background-color: var(--yt-white);
            padding: 60px 0;
            margin: 40px 0;
            border-radius: 30px;
        }
        
        .yt-step-card {
            text-align: center;
            padding: 30px;
        }
        
        .yt-step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--yt-purple);
            color: var(--yt-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .yt-step-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--yt-dark);
            margin-bottom: 10px;
        }
        
        .yt-step-card p {
            font-size: 0.9rem;
            color: var(--yt-gray);
        }
        
        /* FAQ Section */
        .yt-faq-section {
            padding: 60px 0;
        }
        
        .yt-accordion-item {
            background-color: var(--yt-white);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        }
        
        .yt-accordion-button {
            width: 100%;
            padding: 20px 25px;
            background-color: var(--yt-white);
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--yt-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .yt-accordion-button:hover {
            background-color: var(--yt-light);
        }
        
        .yt-accordion-button.active {
            background-color: var(--yt-purple);
            color: var(--yt-white);
        }
        
        .yt-accordion-button i {
            transition: transform 0.3s ease;
        }
        
        .yt-accordion-button.active i {
            transform: rotate(180deg);
        }
        
        .yt-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .yt-accordion-content.active {
            max-height: 500px;
        }
        
        .yt-accordion-body {
            padding: 20px 25px;
            font-size: 0.95rem;
            color: var(--yt-gray);
            line-height: 1.7;
        }
        
        /* Ad Spaces */
        .yt-ad-space {
            background-color: var(--yt-light);
            border: 2px dashed #ddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .yt-ad-space-horizontal {
            background-color: var(--yt-light);
            border: 2px dashed #ddd;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px 0;
        }
        
        .yt-ad-label {
            color: #aaa;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* Content Section */
        .yt-content-section {
            background-color: var(--yt-white);
            border-radius: 20px;
            padding: 40px;
            margin: 40px 0;
        }
        
        .yt-content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--yt-purple);
            margin-bottom: 20px;
        }
        
        .yt-content-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--yt-dark);
            margin: 25px 0 15px;
        }
        
        .yt-content-section p {
            font-size: 1rem;
            color: var(--yt-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .yt-content-section ul {
            list-style: none;
            padding: 0;
        }
        
        .yt-content-section ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
            color: var(--yt-gray);
        }
        
        .yt-content-section ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--yt-orange);
        }
        
        /* Modal / Popup */
        .yt-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        
        .yt-modal-overlay.active {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .yt-modal {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            animation: ytModalSlide 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 100000;
        }
        
        @keyframes ytModalSlide {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .yt-modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
        }
        
        .yt-modal-icon.success {
            background-color: rgba(75, 11, 207, 0.1);
            color: #4b0bcf;
        }
        
        .yt-modal-icon.error {
            background-color: rgba(254, 120, 71, 0.1);
            color: #fe7847;
        }
        
        .yt-modal-icon.warning {
            background-color: rgba(251, 199, 21, 0.15);
            color: #d4a400;
        }
        
        .yt-modal h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 10px;
        }
        
        .yt-modal p {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .yt-modal-btn {
            background-color: #4b0bcf;
            color: #ffffff;
            border: none;
            padding: 12px 50px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .yt-modal-btn:hover {
            background-color: #3d09a8;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(75, 11, 207, 0.3);
        }
        
        /* Loading Spinner */
        .yt-spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 4px solid var(--yt-light);
            border-top-color: var(--yt-purple);
            border-radius: 50%;
            animation: ytSpin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes ytSpin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Breadcrumb */
        .yt-breadcrumb {
            padding: 15px 0;
            background-color: var(--yt-white);
        }
        
        .yt-breadcrumb ol {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .yt-breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        
        .yt-breadcrumb li a {
            color: var(--yt-purple);
            text-decoration: none;
        }
        
        .yt-breadcrumb li a:hover {
            text-decoration: underline;
        }
        
        .yt-breadcrumb li span {
            color: var(--yt-gray);
        }
        
        /* Trust Badges */
        .yt-trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .yt-trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--yt-gray);
            font-size: 0.9rem;
        }
        
        .yt-trust-badge i {
            font-size: 1.5rem;
            color: var(--yt-purple);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .yt-hero-section h1 {
                font-size: 2rem;
            }
            
            .yt-tool-card {
                padding: 25px;
            }
            
            .yt-ad-space {
                min-height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .yt-hero-section {
                padding: 40px 0;
            }
            
            .yt-hero-section h1 {
                font-size: 1.6rem;
            }
            
            .yt-btn-primary {
                width: 100%;
            }
            
            .yt-thumbnail-grid {
                grid-template-columns: 1fr;
            }
            
            .yt-trust-badges {
                gap: 15px;
            }
            
            .yt-content-section {
                padding: 25px;
            }
        }