        /* YouTube Video ID Extractor Tool Styles - Scoped to prevent header/footer conflicts */
        .yt-extractor-wrapper * {
            box-sizing: border-box;
        }
        
        .yt-extractor-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #fff2f1;
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }
        
        /* Ad Spaces */
        .yt-ad-space-left,
        .yt-ad-space-right {
            background-color: #ffffff;
            border: 2px dashed #e0e0e0;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 8px;
            position: sticky;
            top: 20px;
        }
        
        .yt-ad-space-left::before,
        .yt-ad-space-right::before {
            content: "Advertisement";
            color: #999;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .yt-ad-space-left::after,
        .yt-ad-space-right::after {
            content: "300 x 600";
            color: #ccc;
            font-size: 14px;
            margin-top: 10px;
        }
        
        /* Main Tool Container */
        .yt-tool-main {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin: 20px 0;
        }
        
        /* Hero Section */
        .yt-hero-section {
            text-align: center;
            padding: 40px 20px;
            background-color: #ffffff;
            border-radius: 16px;
            margin-bottom: 30px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }
        
        .yt-hero-icon {
            width: 80px;
            height: 80px;
            background-color: #c92159;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .yt-hero-icon i {
            font-size: 36px;
            color: #ffffff;
        }
        
        .yt-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
        }
        
        .yt-hero-title span {
            color: #c92159;
        }
        
        .yt-hero-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Rating Display */
        .yt-rating-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .yt-rating-stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        
        .yt-rating-text {
            color: #666;
            font-size: 0.95rem;
        }
        
        .yt-rating-text strong {
            color: #1a1a2e;
        }
        
        /* Tool Card */
        .yt-tool-card {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-tool-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #fff2f1;
        }
        
        .yt-tool-card-icon {
            width: 50px;
            height: 50px;
            background-color: #fff2f1;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .yt-tool-card-icon i {
            font-size: 24px;
            color: #c92159;
        }
        
        .yt-tool-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a2e;
            margin: 0;
        }
        
        /* Input Group */
        .yt-input-group {
            margin-bottom: 20px;
        }
        
        .yt-input-label {
            display: block;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        
        .yt-input-field {
            width: 100%;
            padding: 16px 20px;
            font-size: 1rem;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }
        
        .yt-input-field:focus {
            outline: none;
            border-color: #c92159;
            background-color: #ffffff;
            box-shadow: 0 0 0 4px rgba(201, 33, 89, 0.1);
        }
        
        .yt-input-field::placeholder {
            color: #aaa;
        }
        
        .yt-textarea-field {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Buttons */
        .yt-btn-primary {
            background-color: #c92159;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-btn-primary:hover {
            background-color: #a91c4a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 33, 89, 0.3);
        }
        
        .yt-btn-secondary {
            background-color: #3f99cc;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-btn-secondary:hover {
            background-color: #357fb3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(63, 153, 204, 0.3);
        }
        
        .yt-btn-outline {
            background-color: transparent;
            color: #c92159;
            border: 2px solid #c92159;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-btn-outline:hover {
            background-color: #c92159;
            color: #ffffff;
        }
        
        .yt-btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        /* Result Section */
        .yt-result-section {
            display: none;
            margin-top: 30px;
            padding: 25px;
            background-color: #fff2f1;
            border-radius: 12px;
            border: 2px solid #c92159;
        }
        
        .yt-result-section.active {
            display: block;
            animation: yt-fadeIn 0.4s ease;
        }
        
        @keyframes yt-fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .yt-result-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .yt-result-header i {
            font-size: 24px;
            color: #28a745;
        }
        
        .yt-result-header h4 {
            margin: 0;
            color: #1a1a2e;
            font-weight: 600;
        }
        
        .yt-result-box {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .yt-video-id {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: #c92159;
            letter-spacing: 2px;
        }
        
        .yt-copy-btn {
            background-color: #3f99cc;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        
        .yt-copy-btn:hover {
            background-color: #357fb3;
        }
        
        /* Bulk Results */
        .yt-bulk-results {
            margin-top: 20px;
        }
        
        .yt-bulk-result-item {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            border-left: 4px solid #c92159;
        }
        
        .yt-bulk-result-item.error {
            border-left-color: #dc3545;
            background-color: #fff5f5;
        }
        
        .yt-bulk-url {
            font-size: 0.85rem;
            color: #666;
            word-break: break-all;
            flex: 1;
            min-width: 200px;
        }
        
        .yt-bulk-id {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            color: #c92159;
            font-size: 1.1rem;
        }
        
        /* Tab System */
        .yt-tab-container {
            margin-bottom: 25px;
        }
        
        .yt-tab-nav {
            display: flex;
            gap: 5px;
            background-color: #fff2f1;
            padding: 5px;
            border-radius: 12px;
        }
        
        .yt-tab-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background-color: transparent;
            color: #666;
            font-weight: 600;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .yt-tab-btn.active {
            background-color: #c92159;
            color: #ffffff;
        }
        
        .yt-tab-btn:hover:not(.active) {
            background-color: rgba(201, 33, 89, 0.1);
            color: #c92159;
        }
        
        .yt-tab-content {
            display: none;
        }
        
        .yt-tab-content.active {
            display: block;
            animation: yt-fadeIn 0.3s ease;
        }
        
        /* Supported Formats */
        .yt-formats-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .yt-section-title i {
            color: #c92159;
        }
        
        .yt-format-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .yt-format-item {
            background-color: #fff2f1;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .yt-format-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .yt-format-name {
            font-weight: 600;
            color: #c92159;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .yt-format-example {
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #666;
            background-color: #ffffff;
            padding: 10px;
            border-radius: 8px;
            word-break: break-all;
        }
        
        /* Features Section */
        .yt-features-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .yt-feature-card {
            text-align: center;
            padding: 30px 20px;
            background-color: #fff2f1;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .yt-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .yt-feature-icon {
            width: 70px;
            height: 70px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 3px solid #c92159;
        }
        
        .yt-feature-icon i {
            font-size: 28px;
            color: #c92159;
        }
        
        .yt-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        
        .yt-feature-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* How To Use Section */
        .yt-howto-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .yt-step-item {
            text-align: center;
            position: relative;
        }
        
        .yt-step-number {
            width: 50px;
            height: 50px;
            background-color: #c92159;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 15px;
        }
        
        .yt-step-title {
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        
        .yt-step-desc {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .yt-faq-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-faq-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        
        .yt-faq-item:last-child {
            border-bottom: none;
        }
        
        .yt-faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 10px 0;
        }
        
        .yt-faq-question h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            flex: 1;
            padding-right: 20px;
        }
        
        .yt-faq-question i {
            color: #c92159;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .yt-faq-item.active .yt-faq-question i {
            transform: rotate(180deg);
        }
        
        .yt-faq-answer {
            display: none;
            padding: 15px 0;
            color: #666;
            line-height: 1.7;
        }
        
        .yt-faq-item.active .yt-faq-answer {
            display: block;
            animation: yt-fadeIn 0.3s ease;
        }
        
        /* Content Section */
        .yt-content-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-content-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
        }
        
        .yt-content-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #c92159;
            margin: 25px 0 15px;
        }
        
        .yt-content-section p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .yt-content-section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .yt-content-section li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        
        /* History Section */
        .yt-history-section {
            margin-top: 30px;
            display: none;
        }
        
        .yt-history-section.has-items {
            display: block;
        }
        
        .yt-history-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .yt-history-title {
            font-weight: 600;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .yt-history-list {
            background-color: #fff2f1;
            border-radius: 10px;
            padding: 15px;
            max-height: 250px;
            overflow-y: auto;
        }
        
        .yt-history-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .yt-history-item:last-child {
            margin-bottom: 0;
        }
        
        /* Toast/Popup Notification */
        .yt-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .yt-toast {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 16px 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 300px;
            max-width: 400px;
            animation: yt-slideIn 0.4s ease;
            border-left: 4px solid #c92159;
        }
        
        .yt-toast.success {
            border-left-color: #28a745;
        }
        
        .yt-toast.error {
            border-left-color: #dc3545;
        }
        
        .yt-toast.info {
            border-left-color: #3f99cc;
        }
        
        @keyframes yt-slideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes yt-slideOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }
        
        .yt-toast.hiding {
            animation: yt-slideOut 0.4s ease forwards;
        }
        
        .yt-toast-icon {
            font-size: 24px;
        }
        
        .yt-toast.success .yt-toast-icon {
            color: #28a745;
        }
        
        .yt-toast.error .yt-toast-icon {
            color: #dc3545;
        }
        
        .yt-toast.info .yt-toast-icon {
            color: #3f99cc;
        }
        
        .yt-toast-content {
            flex: 1;
        }
        
        .yt-toast-title {
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 4px;
        }
        
        .yt-toast-message {
            color: #666;
            font-size: 0.9rem;
        }
        
        .yt-toast-close {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            transition: color 0.3s ease;
        }
        
        .yt-toast-close:hover {
            color: #333;
        }
        
        /* Related Tools */
        .yt-related-section {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .yt-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .yt-related-card {
            background-color: #fff2f1;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        
        .yt-related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .yt-related-card i {
            font-size: 32px;
            color: #c92159;
            margin-bottom: 15px;
        }
        
        .yt-related-card h6 {
            color: #1a1a2e;
            font-weight: 600;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .yt-ad-space-left,
            .yt-ad-space-right {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .yt-hero-title {
                font-size: 1.8rem;
            }
            
            .yt-tool-card {
                padding: 25px;
            }
            
            .yt-btn-group {
                flex-direction: column;
            }
            
            .yt-btn-primary,
            .yt-btn-secondary,
            .yt-btn-outline {
                width: 100%;
                justify-content: center;
            }
            
            .yt-video-id {
                font-size: 1.2rem;
                width: 100%;
                text-align: center;
            }
            
            .yt-result-box {
                flex-direction: column;
                text-align: center;
            }
            
            .yt-tab-nav {
                flex-direction: column;
            }
        }
        
        /* Loading State */
        .yt-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: yt-spin 1s linear infinite;
        }
        
        @keyframes yt-spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Breadcrumb */
        .yt-breadcrumb {
            padding: 15px 0;
            background-color: #ffffff;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        
        .yt-breadcrumb-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        
        .yt-breadcrumb-item {
            color: #666;
            font-size: 0.9rem;
        }
        
        .yt-breadcrumb-item a {
            color: #3f99cc;
            text-decoration: none;
        }
        
        .yt-breadcrumb-item a:hover {
            color: #c92159;
        }
        
        .yt-breadcrumb-separator {
            color: #ccc;
        }
        
        /* Video Preview */
        .yt-video-preview {
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
            display: none;
        }
        
        .yt-video-preview.active {
            display: block;
        }
        
        .yt-video-preview iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
        }