/* Scoped styles for Fake Data Generator Tool - Won't affect header/footer */
        .fdg-tool-wrapper {
            --fdg-primary: #282c34;
            --fdg-secondary: #4e5564;
            --fdg-white: #ffffff;
            --fdg-accent: #61dafb;
            --fdg-success: #4caf50;
            --fdg-warning: #ff9800;
            --fdg-danger: #f44336;
            --fdg-gradient: linear-gradient(135deg, #282c34 0%, #4e5564 100%);
        }
        
        .fdg-tool-wrapper * {
            box-sizing: border-box;
        }
        
        .fdg-main-container {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
            min-height: 100vh;
            padding: 30px 0;
        }
        
        .fdg-hero-section {
            background: var(--fdg-gradient);
            color: var(--fdg-white);
            padding: 60px 20px;
            text-align: center;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 20px 60px rgba(40, 44, 52, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .fdg-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(97, 218, 251, 0.1) 0%, transparent 70%);
            animation: fdg-pulse 4s ease-in-out infinite;
        }
        
        @keyframes fdg-pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }
        
        .fdg-hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .fdg-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .fdg-rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 25px;
            border-radius: 50px;
            margin-top: 25px;
            position: relative;
            z-index: 1;
        }
        
        .fdg-rating-stars {
            color: #ffc107;
            font-size: 1.1rem;
        }
        
        .fdg-rating-text {
            font-size: 0.95rem;
        }
        
        .fdg-tool-card {
            background: var(--fdg-white);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .fdg-card-title {
            color: var(--fdg-primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--fdg-accent);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .fdg-card-title i {
            color: var(--fdg-accent);
        }
        
        .fdg-field-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .fdg-field-item {
            display: flex;
            align-items: center;
            padding: 12px 18px;
            background: #f8f9fa;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .fdg-field-item:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }
        
        .fdg-field-item.fdg-selected {
            background: rgba(97, 218, 251, 0.15);
            border-color: var(--fdg-accent);
        }
        
        .fdg-field-checkbox {
            width: 22px;
            height: 22px;
            margin-right: 12px;
            accent-color: var(--fdg-accent);
            cursor: pointer;
        }
        
        .fdg-field-label {
            font-weight: 500;
            color: var(--fdg-primary);
            cursor: pointer;
            user-select: none;
        }
        
        .fdg-field-icon {
            margin-left: auto;
            color: var(--fdg-secondary);
            font-size: 1.1rem;
        }
        
        .fdg-quantity-section {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .fdg-quantity-label {
            font-weight: 600;
            color: var(--fdg-primary);
            font-size: 1.1rem;
        }
        
        .fdg-quantity-input {
            width: 120px;
            padding: 12px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .fdg-quantity-input:focus {
            border-color: var(--fdg-accent);
            box-shadow: 0 0 0 4px rgba(97, 218, 251, 0.2);
            outline: none;
        }
        
        .fdg-btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        .fdg-btn {
            padding: 14px 30px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .fdg-btn-primary {
            background: var(--fdg-gradient);
            color: var(--fdg-white);
        }
        
        .fdg-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(40, 44, 52, 0.3);
        }
        
        .fdg-btn-success {
            background: var(--fdg-success);
            color: var(--fdg-white);
        }
        
        .fdg-btn-success:hover {
            background: #43a047;
            transform: translateY(-3px);
        }
        
        .fdg-btn-warning {
            background: var(--fdg-warning);
            color: var(--fdg-white);
        }
        
        .fdg-btn-warning:hover {
            background: #f57c00;
            transform: translateY(-3px);
        }
        
        .fdg-btn-secondary {
            background: var(--fdg-secondary);
            color: var(--fdg-white);
        }
        
        .fdg-btn-secondary:hover {
            background: #3d4250;
            transform: translateY(-3px);
        }
        
        .fdg-btn-outline {
            background: transparent;
            border: 2px solid var(--fdg-primary);
            color: var(--fdg-primary);
        }
        
        .fdg-btn-outline:hover {
            background: var(--fdg-primary);
            color: var(--fdg-white);
        }
        
        .fdg-results-section {
            margin-top: 40px;
        }
        
        .fdg-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .fdg-results-count {
            background: var(--fdg-accent);
            color: var(--fdg-primary);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
        }
        
        .fdg-data-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--fdg-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .fdg-data-table thead {
            background: var(--fdg-gradient);
            color: var(--fdg-white);
        }
        
        .fdg-data-table th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .fdg-data-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-size: 0.9rem;
            color: var(--fdg-secondary);
        }
        
        .fdg-data-table tbody tr:hover {
            background: #f8f9fa;
        }
        
        .fdg-data-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .fdg-copy-cell {
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .fdg-copy-cell:hover {
            color: var(--fdg-accent);
        }
        
        .fdg-copy-cell::after {
            content: '\f0c5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: var(--fdg-accent);
            font-size: 0.8rem;
        }
        
        .fdg-copy-cell:hover::after {
            opacity: 1;
        }
        
        .fdg-table-wrapper {
            max-height: 500px;
            overflow-y: auto;
            border-radius: 15px;
        }
        
        .fdg-table-wrapper::-webkit-scrollbar {
            width: 8px;
        }
        
        .fdg-table-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .fdg-table-wrapper::-webkit-scrollbar-thumb {
            background: var(--fdg-secondary);
            border-radius: 10px;
        }
        
        /* Ad Spaces */
        .fdg-ad-space {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 20px;
        }
        
        .fdg-ad-label {
            color: #adb5bd;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .fdg-ad-size {
            color: #6c757d;
            font-size: 0.8rem;
        }
        
        /* Content Section */
        .fdg-content-section {
            background: var(--fdg-white);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        
        .fdg-content-title {
            color: var(--fdg-primary);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .fdg-content-subtitle {
            color: var(--fdg-primary);
            font-size: 1.4rem;
            font-weight: 600;
            margin: 30px 0 15px;
        }
        
        .fdg-content-text {
            color: var(--fdg-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 15px;
        }
        
        .fdg-feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .fdg-feature-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: var(--fdg-secondary);
            line-height: 1.6;
        }
        
        .fdg-feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--fdg-success);
            font-size: 1rem;
        }
        
        /* FAQ Section */
        .fdg-faq-section {
            margin-top: 40px;
        }
        
        .fdg-faq-item {
            background: #f8f9fa;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .fdg-faq-question {
            padding: 20px 25px;
            font-weight: 600;
            color: var(--fdg-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .fdg-faq-question:hover {
            background: #e9ecef;
        }
        
        .fdg-faq-question i {
            transition: transform 0.3s ease;
        }
        
        .fdg-faq-question.active i {
            transform: rotate(180deg);
        }
        
        .fdg-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--fdg-secondary);
            line-height: 1.7;
        }
        
        .fdg-faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        /* Modal/Popup Styles */
        .fdg-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }
        
        .fdg-modal-overlay.active {
            display: flex;
        }
        
        .fdg-modal {
            background: var(--fdg-white);
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            animation: fdg-modalSlide 0.3s ease;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes fdg-modalSlide {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .fdg-modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
        }
        
        .fdg-modal-icon.success {
            background: rgba(76, 175, 80, 0.15);
            color: var(--fdg-success);
        }
        
        .fdg-modal-icon.error {
            background: rgba(244, 67, 54, 0.15);
            color: var(--fdg-danger);
        }
        
        .fdg-modal-icon.warning {
            background: rgba(255, 152, 0, 0.15);
            color: var(--fdg-warning);
        }
        
        .fdg-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--fdg-primary);
            margin-bottom: 15px;
        }
        
        .fdg-modal-message {
            color: var(--fdg-secondary);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .fdg-modal-btn {
            padding: 12px 35px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .fdg-modal-btn-primary {
            background: var(--fdg-gradient);
            color: var(--fdg-white);
        }
        
        .fdg-modal-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 44, 52, 0.3);
        }
        
        /* Toast Notification */
        .fdg-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10001;
        }
        
        .fdg-toast {
            background: var(--fdg-white);
            border-radius: 12px;
            padding: 15px 25px;
            margin-bottom: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: fdg-toastSlide 0.3s ease;
            max-width: 350px;
        }
        
        @keyframes fdg-toastSlide {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .fdg-toast-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .fdg-toast-icon.success {
            background: rgba(76, 175, 80, 0.15);
            color: var(--fdg-success);
        }
        
        .fdg-toast-icon.error {
            background: rgba(244, 67, 54, 0.15);
            color: var(--fdg-danger);
        }
        
        .fdg-toast-content {
            flex: 1;
        }
        
        .fdg-toast-title {
            font-weight: 600;
            color: var(--fdg-primary);
            font-size: 0.95rem;
        }
        
        .fdg-toast-message {
            color: var(--fdg-secondary);
            font-size: 0.85rem;
        }
        
        .fdg-toast-close {
            background: none;
            border: none;
            color: #adb5bd;
            cursor: pointer;
            padding: 5px;
            font-size: 1.2rem;
        }
        
        /* Related Tools */
        .fdg-related-tools {
            margin-top: 50px;
        }
        
        .fdg-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .fdg-related-card {
            background: var(--fdg-white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        
        .fdg-related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .fdg-related-card-icon {
            width: 55px;
            height: 55px;
            background: var(--fdg-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--fdg-white);
            font-size: 1.5rem;
            margin-bottom: 18px;
        }
        
        .fdg-related-card-title {
            font-weight: 600;
            color: var(--fdg-primary);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        
        .fdg-related-card-desc {
            color: var(--fdg-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Loading Animation */
        .fdg-loading {
            display: none;
            text-align: center;
            padding: 40px;
        }
        
        .fdg-loading.active {
            display: block;
        }
        
        .fdg-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #e9ecef;
            border-top-color: var(--fdg-accent);
            border-radius: 50%;
            animation: fdg-spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        @keyframes fdg-spin {
            to { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .fdg-ad-space {
                position: relative;
                top: 0;
                min-height: 250px;
                margin-bottom: 30px;
            }
            
            .fdg-hero-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .fdg-hero-title {
                font-size: 1.8rem;
            }
            
            .fdg-hero-subtitle {
                font-size: 1rem;
            }
            
            .fdg-tool-card {
                padding: 25px 20px;
            }
            
            .fdg-btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .fdg-field-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .fdg-quantity-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .fdg-results-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .fdg-content-section {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .fdg-hero-section {
                padding: 40px 15px;
            }
            
            .fdg-hero-title {
                font-size: 1.5rem;
            }
            
            .fdg-btn-group {
                flex-direction: column;
            }
            
            .fdg-btn {
                width: 100%;
                justify-content: center;
            }
            
            .fdg-field-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Print Styles */
        @media print {
            .fdg-ad-space,
            .fdg-btn-group,
            .fdg-hero-section {
                display: none !important;
            }
        }