/* YouTube Tag Extractor Tool Styles - Scoped to avoid header/footer conflicts */
        .yt-tag-extractor-section {
            font-family: 'Inter', sans-serif;
        }
        
        .yt-tag-extractor-section * {
            box-sizing: border-box;
        }
        
        /* Main Tool Container */
        .yt-tool-wrapper {
            background-color: #f8f9fa;
            min-height: 100vh;
            padding: 30px 0;
        }
        
        /* Hero Section */
        .yt-hero-section {
            background-color: #851a20;
            color: #ffffff;
            padding: 50px 0;
            margin-bottom: 40px;
            border-radius: 0 0 30px 30px;
        }
        
        .yt-hero-section h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        
        .yt-hero-section p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 0;
        }
        
        /* Rating Stars */
        .yt-rating-display {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 50px;
            margin-top: 20px;
        }
        
        .yt-rating-display .stars {
            color: #ffcc48;
            margin-right: 10px;
        }
        
        .yt-rating-display .rating-text {
            font-size: 0.9rem;
        }
        
        /* Ad Space Styling */
        .yt-ad-space {
            background-color: #ffffff;
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        
        .yt-ad-space-horizontal {
            min-height: 100px;
            margin: 30px 0;
        }
        
        /* Main Tool Card */
        .yt-tool-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 35px;
            margin-bottom: 30px;
            border: none;
        }
        
        .yt-tool-card-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .yt-tool-card-header h2 {
            color: #851a20;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .yt-tool-card-header p {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        /* Input Group */
        .yt-input-group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .yt-input-group .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 16px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding-right: 50px;
        }
        
        .yt-input-group .form-control:focus {
            border-color: #851a20;
            box-shadow: 0 0 0 4px rgba(133, 26, 32, 0.1);
        }
        
        .yt-input-group .input-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #851a20;
            font-size: 1.2rem;
        }
        
        /* Buttons */
        .yt-btn-primary {
            background-color: #851a20;
            border: none;
            color: #ffffff;
            padding: 14px 35px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-btn-primary:hover {
            background-color: #6d1519;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(133, 26, 32, 0.3);
        }
        
        .yt-btn-primary:disabled {
            background-color: #a5a5a5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .yt-btn-secondary {
            background-color: #ffcc48;
            border: none;
            color: #333333;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .yt-btn-secondary:hover {
            background-color: #e6b73d;
            color: #333333;
            transform: translateY(-1px);
        }
        
        .yt-btn-outline {
            background-color: transparent;
            border: 2px solid #851a20;
            color: #851a20;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .yt-btn-outline:hover {
            background-color: #851a20;
            color: #ffffff;
        }
        
        /* Video Info Section */
        .yt-video-info {
            background-color: #fedccc;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            display: none;
        }
        
        .yt-video-info.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        .yt-video-thumbnail {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .yt-video-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .yt-video-details h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .yt-video-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .yt-video-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #555555;
        }
        
        .yt-video-meta-item i {
            color: #851a20;
        }
        
        .yt-channel-info {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 15px;
            border-top: 1px solid rgba(133, 26, 32, 0.15);
        }
        
        .yt-channel-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .yt-channel-name {
            font-weight: 600;
            color: #333333;
            font-size: 0.9rem;
        }
        
        /* Tags Section */
        .yt-tags-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 25px;
            border: 2px solid #e9ecef;
            display: none;
        }
        
        .yt-tags-section.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        .yt-tags-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .yt-tags-header h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-tags-count {
            background-color: #851a20;
            color: #ffffff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .yt-tags-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        /* Tags Container */
        .yt-tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .yt-tag-item {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 8px 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #333333;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .yt-tag-item:hover {
            background-color: #fedccc;
            border-color: #851a20;
        }
        
        .yt-tag-item .copy-btn {
            background: none;
            border: none;
            color: #851a20;
            padding: 0;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }
        
        .yt-tag-item:hover .copy-btn {
            opacity: 1;
        }
        
        /* No Tags Message */
        .yt-no-tags {
            text-align: center;
            padding: 40px;
            color: #6c757d;
        }
        
        .yt-no-tags i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        /* Loading Spinner */
        .yt-loading {
            display: none;
            text-align: center;
            padding: 40px;
        }
        
        .yt-loading.show {
            display: block;
        }
        
        .yt-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #851a20;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Toast Notification */
        .yt-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }
        
        .yt-toast {
            background-color: #851a20;
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            animation: slideIn 0.3s ease;
            max-width: 350px;
        }
        
        .yt-toast.success {
            background-color: #28a745;
        }
        
        .yt-toast.error {
            background-color: #dc3545;
        }
        
        .yt-toast.warning {
            background-color: #ffcc48;
            color: #333333;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Features Section */
        .yt-features-section {
            padding: 50px 0;
        }
        
        .yt-section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .yt-section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #851a20;
            margin-bottom: 10px;
        }
        
        .yt-section-title p {
            color: #6c757d;
            font-size: 1rem;
        }
        
        .yt-feature-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .yt-feature-card:hover {
            transform: translateY(-5px);
            border-color: #ffcc48;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .yt-feature-icon {
            width: 70px;
            height: 70px;
            background-color: #fedccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .yt-feature-icon i {
            font-size: 1.8rem;
            color: #851a20;
        }
        
        .yt-feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 12px;
        }
        
        .yt-feature-card p {
            color: #6c757d;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* How It Works Section */
        .yt-how-it-works {
            background-color: #ffffff;
            padding: 60px 0;
            margin: 40px 0;
        }
        
        .yt-step {
            text-align: center;
            padding: 20px;
        }
        
        .yt-step-number {
            width: 60px;
            height: 60px;
            background-color: #851a20;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .yt-step h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }
        
        .yt-step p {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .yt-step-connector {
            display: none;
        }
        
        @media (min-width: 768px) {
            .yt-step-connector {
                display: block;
                position: absolute;
                top: 30px;
                right: -50%;
                width: 100%;
                height: 2px;
                background-color: #ffcc48;
            }
            
            .yt-step {
                position: relative;
            }
            
            .yt-step:last-child .yt-step-connector {
                display: none;
            }
        }
        
        /* FAQ Section */
        .yt-faq-section {
            padding: 50px 0;
        }
        
        .yt-accordion-item {
            background-color: #ffffff;
            border: none;
            border-radius: 12px !important;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .yt-accordion-button {
            background-color: #ffffff;
            color: #333333;
            font-weight: 600;
            font-size: 1rem;
            padding: 20px 25px;
            border: none;
            box-shadow: none !important;
        }
        
        .yt-accordion-button:not(.collapsed) {
            background-color: #fedccc;
            color: #851a20;
        }
        
        .yt-accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23851a20'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .yt-accordion-body {
            padding: 20px 25px;
            color: #555555;
            line-height: 1.7;
        }
        
        /* Content Section */
        .yt-content-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        
        .yt-content-section h2 {
            color: #851a20;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .yt-content-section h3 {
            color: #333333;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        
        .yt-content-section p {
            color: #555555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .yt-content-section ul {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        
        .yt-content-section li {
            color: #555555;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        
        /* Related Tools Section */
        .yt-related-tools {
            padding: 40px 0;
        }
        
        .yt-related-tool-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            border: 2px solid transparent;
        }
        
        .yt-related-tool-card:hover {
            transform: translateY(-3px);
            border-color: #851a20;
            text-decoration: none;
        }
        
        .yt-related-tool-card i {
            font-size: 2rem;
            color: #851a20;
            margin-bottom: 15px;
        }
        
        .yt-related-tool-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
        }
        
        .yt-related-tool-card p {
            color: #6c757d;
            font-size: 0.85rem;
            margin-bottom: 0;
        }
        
        /* Modal Styles */
        .yt-modal .modal-content {
            border-radius: 16px;
            border: none;
        }
        
        .yt-modal .modal-header {
            background-color: #851a20;
            color: #ffffff;
            border-radius: 16px 16px 0 0;
            padding: 20px 25px;
        }
        
        .yt-modal .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }
        
        .yt-modal .modal-body {
            padding: 30px;
        }
        
        .yt-modal .modal-footer {
            border-top: none;
            padding: 20px 30px 30px;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .yt-hero-section h1 {
                font-size: 2rem;
            }
            
            .yt-ad-space {
                min-height: 250px;
                margin-bottom: 30px;
            }
            
            .yt-tool-card {
                padding: 25px;
            }
        }
        
        @media (max-width: 767px) {
            .yt-hero-section {
                padding: 35px 0;
            }
            
            .yt-hero-section h1 {
                font-size: 1.7rem;
            }
            
            .yt-tool-card {
                padding: 20px;
            }
            
            .yt-tags-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .yt-btn-primary {
                width: 100%;
                justify-content: center;
            }
            
            .yt-video-info .row {
                gap: 20px;
            }
        }
        
        /* Copy All Tags Textarea */
        .yt-copy-textarea {
            width: 100%;
            min-height: 120px;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 0.9rem;
            resize: none;
            background-color: #f8f9fa;
        }
        
        .yt-copy-textarea:focus {
            outline: none;
            border-color: #851a20;
        }
        
        /* Statistics Box */
        .yt-stats-box {
            background-color: #fedccc;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .yt-stats-number {
            font-size: 2rem;
            font-weight: 700;
            color: #851a20;
        }
        
        .yt-stats-label {
            font-size: 0.85rem;
            color: #555555;
        }