/* Breadcrumb Schema Generator Specific Styles */
        .bsg-section * {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            box-sizing: border-box;
        }
        
        .bsg-section {
            --bsg-primary: #006aff;
            --bsg-secondary: #04cd3e;
            --bsg-dark: #1b2023;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            padding: 40px 0;
        }
        
        .bsg-section .bsg-icon {
            width: 20px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            fill: currentColor;
        }
        
        .bsg-section .bsg-icon-lg {
            width: 28px;
            height: 28px;
        }
        
        .bsg-section .bsg-icon-xl {
            width: 36px;
            height: 36px;
        }
        
        .bsg-section .bsg-hero {
            background: linear-gradient(135deg, var(--bsg-primary) 0%, #0052cc 100%);
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 106, 255, 0.3);
        }
        
        .bsg-section .bsg-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .bsg-section .bsg-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: rgba(4, 205, 62, 0.2);
            border-radius: 50%;
        }
        
        .bsg-section .bsg-hero h1 {
            color: #fff;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .bsg-section .bsg-hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
            max-width: 700px;
            line-height: 1.7;
        }
        
        .bsg-section .bsg-rating {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .bsg-section .bsg-rating .bsg-stars {
            display: flex;
            gap: 3px;
        }
        
        .bsg-section .bsg-rating .bsg-stars svg {
            width: 18px;
            height: 18px;
            fill: #ffc107;
        }
        
        .bsg-section .bsg-rating span {
            color: #fff;
            font-weight: 500;
        }
        
        .bsg-section .bsg-ad {
            background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .bsg-section .bsg-ad:hover {
            border-color: var(--bsg-primary);
            background: linear-gradient(145deg, #ffffff 0%, #e8f4ff 100%);
        }
        
        .bsg-section .bsg-ad svg {
            width: 48px;
            height: 48px;
            fill: #94a3b8;
            margin-bottom: 15px;
        }
        
        .bsg-section .bsg-ad p {
            color: #64748b;
            font-size: 0.95rem;
            margin: 0;
        }
        
        .bsg-section .bsg-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            padding: 35px;
            margin-bottom: 30px;
            border: 1px solid #e2e8f0;
        }
        
        .bsg-section .bsg-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f1f5f9;
        }
        
        .bsg-section .bsg-card-header .bsg-icon-box {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--bsg-primary) 0%, #0052cc 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .bsg-section .bsg-card-header .bsg-icon-box svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }
        
        .bsg-section .bsg-card-header h3 {
            font-weight: 700;
            color: var(--bsg-dark);
            margin: 0;
            font-size: 1.4rem;
        }
        
        .bsg-section .bsg-item {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .bsg-section .bsg-item:hover {
            box-shadow: 0 5px 20px rgba(0, 106, 255, 0.1);
            border-color: var(--bsg-primary);
        }
        
        .bsg-section .bsg-item-num {
            position: absolute;
            top: -10px;
            left: 15px;
            background: var(--bsg-primary);
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .bsg-section .bsg-label {
            font-weight: 600;
            color: var(--bsg-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: block;
        }
        
        .bsg-section .bsg-input {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .bsg-section .bsg-input:focus {
            border-color: var(--bsg-primary);
            box-shadow: 0 0 0 4px rgba(0, 106, 255, 0.1);
            outline: none;
        }
        
        .bsg-section .bsg-input::placeholder {
            color: #94a3b8;
        }
        
        .bsg-section .bsg-btn-remove {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            border: none;
            color: #fff;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .bsg-section .bsg-btn-remove:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
        }
        
        .bsg-section .bsg-btn-remove:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .bsg-section .bsg-btn-remove svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }
        
        .bsg-section .bsg-btn-add {
            background: linear-gradient(135deg, var(--bsg-secondary) 0%, #03a832 100%);
            border: none;
            color: #fff;
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            cursor: pointer;
        }
        
        .bsg-section .bsg-btn-add:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(4, 205, 62, 0.4);
        }
        
        .bsg-section .bsg-btn-add svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        
        .bsg-section .bsg-btn-generate {
            background: linear-gradient(135deg, var(--bsg-primary) 0%, #0052cc 100%);
            border: none;
            color: #fff;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .bsg-section .bsg-btn-generate:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 106, 255, 0.4);
        }
        
        .bsg-section .bsg-btn-generate svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }
        
        .bsg-section .bsg-btn-reset {
            background: #f1f5f9;
            border: 2px solid #e2e8f0;
            color: var(--bsg-dark);
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .bsg-section .bsg-btn-reset:hover {
            background: #e2e8f0;
            border-color: #cbd5e1;
        }
        
        .bsg-section .bsg-btn-reset svg {
            width: 18px;
            height: 18px;
            fill: var(--bsg-dark);
        }
        
        .bsg-section .bsg-output-wrap {
            background: var(--bsg-dark);
            border-radius: 16px;
            padding: 25px;
            position: relative;
        }
        
        .bsg-section .bsg-output-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .bsg-section .bsg-output-header span {
            color: #94a3b8;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .bsg-section .bsg-output-header span svg {
            width: 16px;
            height: 16px;
            fill: #94a3b8;
        }
        
        .bsg-section .bsg-output-actions {
            display: flex;
            gap: 10px;
        }
        
        .bsg-section .bsg-btn-copy,
        .bsg-section .bsg-btn-download {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .bsg-section .bsg-btn-copy:hover {
            background: var(--bsg-secondary);
            border-color: var(--bsg-secondary);
        }
        
        .bsg-section .bsg-btn-download:hover {
            background: var(--bsg-primary);
            border-color: var(--bsg-primary);
        }
        
        .bsg-section .bsg-btn-copy svg,
        .bsg-section .bsg-btn-download svg {
            width: 16px;
            height: 16px;
            fill: #fff;
        }
        
        .bsg-section .bsg-schema-output {
            background: #0d1117;
            border-radius: 12px;
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .bsg-section .bsg-schema-output pre {
            margin: 0;
            color: #e6edf3;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            font-size: 0.9rem;
            white-space: pre-wrap;
            word-wrap: break-word;
        }
        
        .bsg-section .bsg-schema-output::-webkit-scrollbar {
            width: 8px;
        }
        
        .bsg-section .bsg-schema-output::-webkit-scrollbar-track {
            background: #1b2023;
            border-radius: 4px;
        }
        
        .bsg-section .bsg-schema-output::-webkit-scrollbar-thumb {
            background: #4a5568;
            border-radius: 4px;
        }
        
        .bsg-section .bsg-feature {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            height: 100%;
        }
        
        .bsg-section .bsg-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 106, 255, 0.15);
            border-color: var(--bsg-primary);
        }
        
        .bsg-section .bsg-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0, 106, 255, 0.1) 0%, rgba(0, 106, 255, 0.05) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .bsg-section .bsg-feature-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--bsg-primary);
        }
        
        .bsg-section .bsg-feature h4 {
            font-weight: 700;
            color: var(--bsg-dark);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        
        .bsg-section .bsg-feature p {
            color: #64748b;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
        }
        
        .bsg-section .bsg-content {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid #e2e8f0;
        }
        
        .bsg-section .bsg-content h2 {
            font-weight: 800;
            color: var(--bsg-dark);
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-left: 20px;
        }
        
        .bsg-section .bsg-content h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--bsg-primary) 0%, var(--bsg-secondary) 100%);
            border-radius: 3px;
        }
        
        .bsg-section .bsg-content h3 {
            font-weight: 700;
            color: var(--bsg-dark);
            margin: 30px 0 15px;
            font-size: 1.3rem;
        }
        
        .bsg-section .bsg-content p {
            color: #475569;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .bsg-section .bsg-content ul {
            padding-left: 0;
            list-style: none;
        }
        
        .bsg-section .bsg-content ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            color: #475569;
            line-height: 1.7;
        }
        
        .bsg-section .bsg-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 16px;
            height: 16px;
            background: var(--bsg-secondary);
            border-radius: 50%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
            background-size: 10px;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .bsg-section .bsg-faq {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid #e2e8f0;
        }
        
        .bsg-section .bsg-faq h2 {
            font-weight: 800;
            color: var(--bsg-dark);
            margin-bottom: 30px;
            font-size: 1.8rem;
            text-align: center;
        }
        
        .bsg-section .bsg-accordion-item {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .bsg-section .bsg-accordion-btn {
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--bsg-dark);
            padding: 20px 25px;
            background: #f8fafc;
            border: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .bsg-section .bsg-accordion-btn:hover {
            background: #f1f5f9;
        }
        
        .bsg-section .bsg-accordion-btn.active {
            background: linear-gradient(135deg, var(--bsg-primary) 0%, #0052cc 100%);
            color: #fff;
        }
        
        .bsg-section .bsg-accordion-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }
        
        .bsg-section .bsg-accordion-btn.active svg {
            transform: rotate(180deg);
        }
        
        .bsg-section .bsg-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .bsg-section .bsg-accordion-content.open {
            max-height: 500px;
        }
        
        .bsg-section .bsg-accordion-body {
            padding: 25px;
            color: #475569;
            line-height: 1.8;
        }
        
        /* Toast/Popup Styles */
        .bsg-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 99999;
        }
        
        .bsg-toast {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 320px;
            max-width: 400px;
            transform: translateX(450px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            margin-bottom: 10px;
        }
        
        .bsg-toast.show {
            transform: translateX(0);
            opacity: 1;
        }
        
        .bsg-toast-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .bsg-toast-icon svg {
            width: 22px;
            height: 22px;
            fill: #fff;
        }
        
        .bsg-toast.success .bsg-toast-icon {
            background: linear-gradient(135deg, #04cd3e 0%, #03a832 100%);
        }
        
        .bsg-toast.error .bsg-toast-icon {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }
        
        .bsg-toast.warning .bsg-toast-icon {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .bsg-toast-content {
            flex: 1;
        }
        
        .bsg-toast-content h5 {
            font-weight: 700;
            color: #1b2023;
            margin: 0 0 5px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
        }
        
        .bsg-toast-content p {
            color: #64748b;
            margin: 0;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
        }
        
        .bsg-toast-close {
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .bsg-toast-close:hover {
            color: #1b2023;
        }
        
        .bsg-toast-close svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        /* Preview Section */
        .bsg-section .bsg-preview {
            background: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
        }
        
        .bsg-section .bsg-preview h5 {
            font-weight: 600;
            color: var(--bsg-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bsg-section .bsg-preview h5 svg {
            width: 20px;
            height: 20px;
            fill: var(--bsg-primary);
        }
        
        .bsg-section .bsg-preview-trail {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        
        .bsg-section .bsg-preview-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .bsg-section .bsg-preview-item a {
            color: var(--bsg-primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .bsg-section .bsg-preview-item a:hover {
            text-decoration: underline;
        }
        
        .bsg-section .bsg-preview-item .bsg-sep {
            color: #94a3b8;
            display: flex;
            align-items: center;
        }
        
        .bsg-section .bsg-preview-item .bsg-sep svg {
            width: 14px;
            height: 14px;
            fill: #94a3b8;
        }
        
        .bsg-section .bsg-preview-item:last-child a {
            color: #64748b;
            pointer-events: none;
        }
        
        /* Stats Section */
        .bsg-section .bsg-stats {
            background: linear-gradient(135deg, var(--bsg-dark) 0%, #2d3748 100%);
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
        }
        
        .bsg-section .bsg-stat {
            text-align: center;
            padding: 15px;
        }
        
        .bsg-section .bsg-stat h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .bsg-section .bsg-stat h3 span {
            color: var(--bsg-secondary);
        }
        
        .bsg-section .bsg-stat p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-size: 0.95rem;
        }
        
        /* Info Box */
        .bsg-section .bsg-info-box {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .bsg-section .bsg-info-box h6 {
            font-weight: 700;
            color: var(--bsg-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bsg-section .bsg-info-box h6 svg {
            width: 20px;
            height: 20px;
            fill: var(--bsg-primary);
        }
        
        .bsg-section .bsg-info-box ol {
            margin: 0;
            padding-left: 20px;
            color: #475569;
        }
        
        .bsg-section .bsg-info-box ol li {
            margin-bottom: 8px;
        }
        
        .bsg-section .bsg-info-box ol li:last-child {
            margin-bottom: 0;
        }
        
        .bsg-section .bsg-info-box a {
            color: var(--bsg-primary);
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .bsg-section .bsg-ad {
                min-height: 200px;
                margin-bottom: 30px;
            }
            
            .bsg-section .bsg-hero h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .bsg-section {
                padding: 20px 0;
            }
            
            .bsg-section .bsg-hero {
                padding: 30px 20px;
            }
            
            .bsg-section .bsg-hero h1 {
                font-size: 1.5rem;
            }
            
            .bsg-section .bsg-hero p {
                font-size: 1rem;
            }
            
            .bsg-section .bsg-card {
                padding: 20px;
            }
            
            .bsg-section .bsg-btn-generate {
                width: 100%;
                justify-content: center;
            }
            
            .bsg-section .bsg-output-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .bsg-section .bsg-content,
            .bsg-section .bsg-faq {
                padding: 25px;
            }
            
            .bsg-section .bsg-content h2,
            .bsg-section .bsg-faq h2 {
                font-size: 1.4rem;
            }
            
            .bsg-toast {
                min-width: auto;
                max-width: calc(100vw - 40px);
                right: 10px;
            }
        }
        
        /* Animation */
        @keyframes bsgFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bsg-section .bsg-animate {
            animation: bsgFadeIn 0.4s ease forwards;
        }