/* ==========================================
           BROKEN LINK CHECKER TOOL STYLES
           Scoped to not affect header/footer
           ========================================== */
        
        /* CSS Variables */
        .blc-tool-wrapper {
            --blc-primary: #f1511b;
            --blc-secondary: #ffdf80;
            --blc-light: #eeeeee;
            --blc-dark: #1a1a2e;
            --blc-success: #28a745;
            --blc-danger: #dc3545;
            --blc-warning: #ffc107;
            --blc-info: #17a2b8;
            --blc-gradient: linear-gradient(135deg, #f1511b 0%, #ff6b35 50%, #ffdf80 100%);
            --blc-shadow: 0 10px 40px rgba(241, 81, 27, 0.15);
            --blc-shadow-hover: 0 20px 60px rgba(241, 81, 27, 0.25);
            --blc-border-radius: 16px;
            --blc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Base Wrapper Styles */
        .blc-tool-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
            min-height: 100vh;
            padding: 0;
        }

        .blc-tool-wrapper * {
            box-sizing: border-box;
        }

        /* Hero Section */
        .blc-hero-section {
            background: var(--blc-gradient);
            padding: 80px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .blc-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .blc-hero-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
            clip-path: ellipse(70% 100% at 50% 100%);
        }

        .blc-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .blc-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .blc-hero-badge i {
            font-size: 16px;
        }

        .blc-hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .blc-hero-subtitle {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.25rem;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .blc-rating-display {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .blc-stars {
            display: flex;
            gap: 4px;
        }

        .blc-stars i {
            color: var(--blc-secondary);
            font-size: 18px;
        }

        .blc-rating-text {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .blc-rating-text strong {
            font-weight: 700;
        }

        /* Main Tool Card */
        .blc-main-content {
            margin-top: -60px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .blc-tool-card {
            background: white;
            border-radius: var(--blc-border-radius);
            box-shadow: var(--blc-shadow);
            padding: 0;
            overflow: hidden;
            border: none;
        }

        .blc-card-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 30px 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .blc-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .blc-card-title i {
            color: var(--blc-primary);
            font-size: 1.75rem;
        }

        .blc-card-description {
            color: #6c757d;
            font-size: 0.95rem;
            margin: 0;
        }

        .blc-card-body {
            padding: 40px;
        }

        /* Input Group */
        .blc-input-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .blc-input-group {
            display: flex;
            gap: 15px;
            align-items: stretch;
        }

        .blc-url-input-wrapper {
            flex: 1;
            position: relative;
        }

        .blc-url-input {
            width: 100%;
            padding: 18px 24px 18px 54px;
            font-size: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            transition: var(--blc-transition);
            background: #f8f9fa;
            color: var(--blc-dark);
        }

        .blc-url-input:focus {
            outline: none;
            border-color: var(--blc-primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(241, 81, 27, 0.1);
        }

        .blc-url-input::placeholder {
            color: #adb5bd;
        }

        .blc-input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #adb5bd;
            font-size: 1.25rem;
            transition: var(--blc-transition);
        }

        .blc-url-input:focus + .blc-input-icon,
        .blc-url-input:not(:placeholder-shown) + .blc-input-icon {
            color: var(--blc-primary);
        }

        .blc-check-btn {
            padding: 18px 40px;
            font-size: 1rem;
            font-weight: 600;
            background: var(--blc-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--blc-transition);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(241, 81, 27, 0.3);
        }

        .blc-check-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 81, 27, 0.4);
        }

        .blc-check-btn:active {
            transform: translateY(0);
        }

        .blc-check-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .blc-check-btn .spinner-border {
            width: 20px;
            height: 20px;
            border-width: 2px;
        }

        /* Options Section */
        .blc-options-section {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .blc-options-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--blc-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blc-options-title i {
            color: var(--blc-primary);
        }

        .blc-options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .blc-option-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blc-checkbox {
            width: 20px;
            height: 20px;
            accent-color: var(--blc-primary);
            cursor: pointer;
        }

        .blc-option-label {
            font-size: 0.9rem;
            color: #495057;
            cursor: pointer;
            user-select: none;
        }

        /* Progress Section */
        .blc-progress-section {
            display: none;
            margin-bottom: 30px;
        }

        .blc-progress-section.active {
            display: block;
        }

        .blc-progress-card {
            background: linear-gradient(135deg, #fff5f0 0%, #fffbf5 100%);
            border: 1px solid rgba(241, 81, 27, 0.1);
            border-radius: 12px;
            padding: 30px;
        }

        .blc-progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .blc-progress-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--blc-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blc-progress-title i {
            color: var(--blc-primary);
            animation: blc-spin 1s linear infinite;
        }

        @keyframes blc-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .blc-progress-percentage {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--blc-primary);
        }

        .blc-progress-bar-wrapper {
            background: rgba(241, 81, 27, 0.1);
            border-radius: 10px;
            height: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .blc-progress-bar {
            height: 100%;
            background: var(--blc-gradient);
            border-radius: 10px;
            transition: width 0.3s ease;
            position: relative;
        }

        .blc-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: blc-shimmer 2s infinite;
        }

        @keyframes blc-shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .blc-progress-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .blc-stat-item {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .blc-stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 5px;
        }

        .blc-stat-value.success { color: var(--blc-success); }
        .blc-stat-value.danger { color: var(--blc-danger); }
        .blc-stat-value.warning { color: var(--blc-warning); }
        .blc-stat-value.info { color: var(--blc-info); }

        .blc-stat-label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Results Section */
        .blc-results-section {
            display: none;
        }

        .blc-results-section.active {
            display: block;
        }

        .blc-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .blc-results-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blc-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blc-results-title i {
            color: var(--blc-primary);
        }

        .blc-results-actions {
            display: flex;
            gap: 10px;
        }

        .blc-action-btn {
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--blc-transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blc-action-btn.primary {
            background: var(--blc-primary);
            color: white;
            border: none;
        }

        .blc-action-btn.primary:hover {
            background: #d9460f;
        }

        .blc-action-btn.secondary {
            background: white;
            color: var(--blc-dark);
            border: 2px solid #e9ecef;
        }

        .blc-action-btn.secondary:hover {
            border-color: var(--blc-primary);
            color: var(--blc-primary);
        }

        /* Filter Tabs */
        .blc-filter-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .blc-filter-tab {
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 500;
            background: #f8f9fa;
            color: #6c757d;
            border: 2px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--blc-transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blc-filter-tab:hover {
            background: #e9ecef;
        }

        .blc-filter-tab.active {
            background: white;
            color: var(--blc-primary);
            border-color: var(--blc-primary);
        }

        .blc-filter-count {
            background: #e9ecef;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .blc-filter-tab.active .blc-filter-count {
            background: rgba(241, 81, 27, 0.1);
            color: var(--blc-primary);
        }

        /* Results Table */
        .blc-table-wrapper {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .blc-results-table {
            width: 100%;
            border-collapse: collapse;
        }

        .blc-results-table thead {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .blc-results-table th {
            padding: 16px 20px;
            text-align: left;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #e9ecef;
        }

        .blc-results-table td {
            padding: 16px 20px;
            border-bottom: 1px solid #f1f3f4;
            vertical-align: middle;
        }

        .blc-results-table tbody tr {
            transition: var(--blc-transition);
        }

        .blc-results-table tbody tr:hover {
            background: #f8f9fa;
        }

        .blc-results-table tbody tr:last-child td {
            border-bottom: none;
        }

        .blc-url-cell {
            max-width: 400px;
        }

        .blc-url-link {
            color: var(--blc-dark);
            text-decoration: none;
            font-size: 0.9rem;
            word-break: break-all;
            display: block;
            transition: var(--blc-transition);
        }

        .blc-url-link:hover {
            color: var(--blc-primary);
        }

        .blc-source-url {
            font-size: 0.75rem;
            color: #6c757d;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blc-source-url i {
            font-size: 0.7rem;
        }

        .blc-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .blc-status-badge.success {
            background: rgba(40, 167, 69, 0.1);
            color: var(--blc-success);
        }

        .blc-status-badge.danger {
            background: rgba(220, 53, 69, 0.1);
            color: var(--blc-danger);
        }

        .blc-status-badge.warning {
            background: rgba(255, 193, 7, 0.15);
            color: #856404;
        }

        .blc-status-badge.info {
            background: rgba(23, 162, 184, 0.1);
            color: var(--blc-info);
        }

        .blc-type-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
        }

        .blc-type-badge.internal {
            background: rgba(241, 81, 27, 0.1);
            color: var(--blc-primary);
        }

        .blc-type-badge.external {
            background: rgba(23, 162, 184, 0.1);
            color: var(--blc-info);
        }

        .blc-response-time {
            font-size: 0.85rem;
            color: #6c757d;
        }

        /* Summary Cards */
        .blc-summary-section {
            display: none;
            margin-bottom: 30px;
        }

        .blc-summary-section.active {
            display: block;
        }

        .blc-summary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .blc-summary-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--blc-transition);
            border: 2px solid transparent;
        }

        .blc-summary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .blc-summary-card.total {
            border-color: var(--blc-primary);
            background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
        }

        .blc-summary-card.success {
            border-color: var(--blc-success);
            background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
        }

        .blc-summary-card.broken {
            border-color: var(--blc-danger);
            background: linear-gradient(135deg, #fff0f0 0%, #ffffff 100%);
        }

        .blc-summary-card.redirect {
            border-color: var(--blc-warning);
            background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
        }

        .blc-summary-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }

        .blc-summary-card.total .blc-summary-icon {
            background: rgba(241, 81, 27, 0.1);
            color: var(--blc-primary);
        }

        .blc-summary-card.success .blc-summary-icon {
            background: rgba(40, 167, 69, 0.1);
            color: var(--blc-success);
        }

        .blc-summary-card.broken .blc-summary-icon {
            background: rgba(220, 53, 69, 0.1);
            color: var(--blc-danger);
        }

        .blc-summary-card.redirect .blc-summary-icon {
            background: rgba(255, 193, 7, 0.15);
            color: #856404;
        }

        .blc-summary-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blc-dark);
            margin-bottom: 5px;
        }

        .blc-summary-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        /* Empty State */
        .blc-empty-state {
            text-align: center;
            padding: 60px 40px;
        }

        .blc-empty-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: #dee2e6;
            border: 3px dashed #dee2e6;
        }

        .blc-empty-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 10px;
        }

        .blc-empty-text {
            color: #6c757d;
            font-size: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Pagination */
        .blc-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
        }

        .blc-page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            color: var(--blc-dark);
            font-weight: 500;
            cursor: pointer;
            transition: var(--blc-transition);
        }

        .blc-page-btn:hover {
            border-color: var(--blc-primary);
            color: var(--blc-primary);
        }

        .blc-page-btn.active {
            background: var(--blc-primary);
            border-color: var(--blc-primary);
            color: white;
        }

        .blc-page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Modal/Popup Styles */
        .blc-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: var(--blc-transition);
        }

        .blc-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .blc-modal {
            background: white;
            border-radius: var(--blc-border-radius);
            padding: 0;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            transform: scale(0.9) translateY(-20px);
            transition: var(--blc-transition);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .blc-modal-overlay.active .blc-modal {
            transform: scale(1) translateY(0);
        }

        .blc-modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .blc-modal-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blc-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blc-modal-title i {
            color: var(--blc-primary);
        }

        .blc-modal-title.success i {
            color: var(--blc-success);
        }

        .blc-modal-title.error i {
            color: var(--blc-danger);
        }

        .blc-modal-title.warning i {
            color: var(--blc-warning);
        }

        .blc-modal-close {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: none;
            border-radius: 8px;
            color: #6c757d;
            cursor: pointer;
            transition: var(--blc-transition);
        }

        .blc-modal-close:hover {
            background: #e9ecef;
            color: var(--blc-dark);
        }

        .blc-modal-body {
            padding: 30px;
        }

        .blc-modal-text {
            color: #495057;
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        .blc-modal-footer {
            padding: 20px 30px;
            background: #f8f9fa;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .blc-modal-btn {
            padding: 12px 24px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--blc-transition);
        }

        .blc-modal-btn.primary {
            background: var(--blc-primary);
            color: white;
            border: none;
        }

        .blc-modal-btn.primary:hover {
            background: #d9460f;
        }

        .blc-modal-btn.secondary {
            background: white;
            color: var(--blc-dark);
            border: 2px solid #e9ecef;
        }

        .blc-modal-btn.secondary:hover {
            border-color: #dee2e6;
        }

        /* Features Section */
        .blc-features-section {
            padding: 80px 0;
            background: white;
        }

        .blc-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .blc-section-badge {
            display: inline-block;
            background: rgba(241, 81, 27, 0.1);
            color: var(--blc-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .blc-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blc-dark);
            margin-bottom: 15px;
        }

        .blc-section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .blc-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blc-feature-card {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            transition: var(--blc-transition);
            border: 2px solid transparent;
        }

        .blc-feature-card:hover {
            background: white;
            border-color: rgba(241, 81, 27, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .blc-feature-icon {
            width: 80px;
            height: 80px;
            background: var(--blc-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .blc-feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 12px;
        }

        .blc-feature-text {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }

        /* How It Works Section */
        .blc-howto-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff5f0 0%, #fffbf5 100%);
        }

        .blc-steps-wrapper {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .blc-steps-wrapper::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 100px;
            right: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--blc-primary), var(--blc-secondary));
            z-index: 1;
        }

        .blc-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .blc-step-number {
            width: 100px;
            height: 100px;
            background: white;
            border: 4px solid var(--blc-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--blc-primary);
            box-shadow: 0 10px 30px rgba(241, 81, 27, 0.2);
        }

        .blc-step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 10px;
        }

        .blc-step-text {
            color: #6c757d;
            font-size: 0.95rem;
            max-width: 200px;
            margin: 0 auto;
        }

        /* FAQ Section */
        .blc-faq-section {
            padding: 80px 0;
            background: white;
        }

        .blc-faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .blc-faq-item {
            background: #f8f9fa;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--blc-transition);
        }

        .blc-faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .blc-faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--blc-transition);
        }

        .blc-faq-question:hover {
            background: rgba(241, 81, 27, 0.02);
        }

        .blc-faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--blc-dark);
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .blc-faq-icon {
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blc-primary);
            transition: var(--blc-transition);
            flex-shrink: 0;
        }

        .blc-faq-item.active .blc-faq-icon {
            background: var(--blc-primary);
            color: white;
            transform: rotate(180deg);
        }

        .blc-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .blc-faq-item.active .blc-faq-answer {
            max-height: 500px;
        }

        .blc-faq-answer-inner {
            padding: 0 30px 25px;
            color: #6c757d;
            line-height: 1.8;
        }

        /* SEO Content Section */
        .blc-content-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .blc-content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        .blc-content-main h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 20px;
        }

        .blc-content-main h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--blc-dark);
            margin: 30px 0 15px;
        }

        .blc-content-main p {
            color: #495057;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .blc-content-main ul {
            list-style: none;
            padding: 0;
            margin: 0 0 25px;
        }

        .blc-content-main ul li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: #495057;
        }

        .blc-content-main ul li::before {
            content: '\f26a';
            font-family: 'bootstrap-icons';
            position: absolute;
            left: 0;
            color: var(--blc-primary);
        }

        .blc-sidebar-widget {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .blc-widget-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--blc-dark);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f3f4;
        }

        .blc-related-tools {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .blc-related-tools li {
            margin-bottom: 12px;
        }

        .blc-related-tools a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #495057;
            text-decoration: none;
            transition: var(--blc-transition);
        }

        .blc-related-tools a:hover {
            background: rgba(241, 81, 27, 0.05);
            color: var(--blc-primary);
        }

        .blc-related-tools i {
            color: var(--blc-primary);
        }

        /* Ad Spaces */
        .blc-ad-space {
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            color: #adb5bd;
            font-size: 0.9rem;
            min-height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blc-ad-space.horizontal {
            min-height: 90px;
        }

        .blc-ad-sidebar {
            position: sticky;
            top: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .blc-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blc-content-grid {
                grid-template-columns: 1fr;
            }

            .blc-ad-sidebar {
                position: static;
            }
        }

        @media (max-width: 991px) {
            .blc-hero-title {
                font-size: 2.5rem;
            }

            .blc-hero-subtitle {
                font-size: 1.1rem;
            }

            .blc-progress-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .blc-summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .blc-steps-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .blc-steps-wrapper::before {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .blc-hero-section {
                padding: 60px 0 100px;
            }

            .blc-hero-title {
                font-size: 2rem;
            }

            .blc-card-header,
            .blc-card-body {
                padding: 25px;
            }

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

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

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

            .blc-results-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .blc-results-actions {
                width: 100%;
            }

            .blc-action-btn {
                flex: 1;
                justify-content: center;
            }

            .blc-table-wrapper {
                overflow-x: auto;
            }

            .blc-results-table {
                min-width: 700px;
            }

            .blc-section-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 575px) {
            .blc-hero-title {
                font-size: 1.75rem;
            }

            .blc-progress-stats,
            .blc-summary-grid {
                grid-template-columns: 1fr;
            }

            .blc-filter-tabs {
                flex-direction: column;
            }

            .blc-filter-tab {
                width: 100%;
                justify-content: center;
            }
        }