/* Title Generator Tool Specific Styles - Scoped to prevent header/footer conflicts */
        .title-generator-section {
            font-family: 'Poppins', sans-serif;
        }
        
        .title-generator-section * {
            box-sizing: border-box;
        }
        
        /* Color Variables */
        .title-generator-section {
            --primary-color: #9c7853;
            --secondary-color: #ffe0cd;
            --dark-color: #132022;
            --light-bg: #fff9f5;
            --gradient-1: linear-gradient(135deg, #9c7853 0%, #132022 100%);
            --gradient-2: linear-gradient(135deg, #ffe0cd 0%, #9c7853 100%);
            --shadow-sm: 0 2px 10px rgba(19, 32, 34, 0.1);
            --shadow-md: 0 5px 25px rgba(19, 32, 34, 0.15);
            --shadow-lg: 0 10px 40px rgba(19, 32, 34, 0.2);
        }
        
        /* Hero Section */
        .title-generator-section .tg-hero {
            background: var(--gradient-1);
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .title-generator-section .tg-hero::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;
        }
        
        .title-generator-section .tg-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .title-generator-section .tg-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .title-generator-section .tg-hero h1 span {
            color: var(--secondary-color);
        }
        
        .title-generator-section .tg-hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        /* Rating Badge */
        .title-generator-section .tg-rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .title-generator-section .tg-rating-stars {
            color: #ffc107;
            font-size: 1.1rem;
            margin-right: 10px;
        }
        
        .title-generator-section .tg-rating-text {
            color: #ffffff;
            font-weight: 600;
        }
        
        .title-generator-section .tg-rating-count {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-left: 5px;
        }
        
        /* Main Tool Section */
        .title-generator-section .tg-main {
            padding: 60px 0;
            background: var(--light-bg);
        }
        
        /* Ad Spaces */
        .title-generator-section .tg-ad-space {
            background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: sticky;
            top: 20px;
        }
        
        .title-generator-section .tg-ad-label {
            color: #6c757d;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .title-generator-section .tg-ad-size {
            color: #adb5bd;
            font-size: 0.75rem;
        }
        
        /* Tool Card */
        .title-generator-section .tg-tool-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: none;
        }
        
        .title-generator-section .tg-tool-header {
            background: var(--gradient-2);
            padding: 25px 30px;
            border-bottom: none;
        }
        
        .title-generator-section .tg-tool-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .title-generator-section .tg-tool-title i {
            color: var(--primary-color);
        }
        
        .title-generator-section .tg-tool-body {
            padding: 35px;
        }
        
        /* Form Styles */
        .title-generator-section .tg-form-group {
            margin-bottom: 25px;
        }
        
        .title-generator-section .tg-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        
        .title-generator-section .tg-label i {
            color: var(--primary-color);
            font-size: 1rem;
        }
        
        .title-generator-section .tg-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .title-generator-section .tg-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(156, 120, 83, 0.1);
        }
        
        .title-generator-section .tg-input::placeholder {
            color: #adb5bd;
        }
        
        .title-generator-section .tg-select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239c7853' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
            appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .title-generator-section .tg-select:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: #ffffff;
            box-shadow: 0 0 0 4px rgba(156, 120, 83, 0.1);
        }
        
        /* Option Buttons */
        .title-generator-section .tg-option-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .title-generator-section .tg-option-btn {
            padding: 10px 20px;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            background: #f8f9fa;
            color: var(--dark-color);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .title-generator-section .tg-option-btn:hover {
            border-color: var(--primary-color);
            background: var(--secondary-color);
        }
        
        .title-generator-section .tg-option-btn.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: #ffffff;
        }
        
        /* Generate Button */
        .title-generator-section .tg-generate-btn {
            width: 100%;
            padding: 18px 30px;
            background: var(--gradient-1);
            border: none;
            border-radius: 12px;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .title-generator-section .tg-generate-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .title-generator-section .tg-generate-btn:active {
            transform: translateY(0);
        }
        
        .title-generator-section .tg-generate-btn i {
            font-size: 1.2rem;
        }
        
        .title-generator-section .tg-generate-btn.loading {
            pointer-events: none;
            opacity: 0.8;
        }
        
        .title-generator-section .tg-generate-btn .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: tg-spin 0.8s linear infinite;
        }
        
        .title-generator-section .tg-generate-btn.loading .spinner {
            display: block;
        }
        
        .title-generator-section .tg-generate-btn.loading .btn-icon {
            display: none;
        }
        
        @keyframes tg-spin {
            to { transform: rotate(360deg); }
        }
        
        /* Results Section */
        .title-generator-section .tg-results {
            margin-top: 30px;
            display: none;
        }
        
        .title-generator-section .tg-results.show {
            display: block;
            animation: tg-fadeIn 0.5s ease;
        }
        
        @keyframes tg-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .title-generator-section .tg-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .title-generator-section .tg-results-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .title-generator-section .tg-results-count {
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .title-generator-section .tg-copy-all-btn {
            padding: 10px 20px;
            background: var(--dark-color);
            border: none;
            border-radius: 8px;
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
        }
        
        .title-generator-section .tg-copy-all-btn:hover {
            background: var(--primary-color);
        }
        
        /* Title Items */
        .title-generator-section .tg-title-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .title-generator-section .tg-title-item {
            background: #f8f9fa;
            border: 2px solid transparent;
            border-radius: 12px;
            padding: 18px 20px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .title-generator-section .tg-title-item:hover {
            background: #ffffff;
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
            transform: translateX(5px);
        }
        
        .title-generator-section .tg-title-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-color);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .title-generator-section .tg-title-item:hover::before {
            opacity: 1;
        }
        
        .title-generator-section .tg-title-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: var(--secondary-color);
            color: var(--dark-color);
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: 700;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .title-generator-section .tg-title-text {
            flex: 1;
            font-size: 1rem;
            color: var(--dark-color);
            line-height: 1.5;
            font-weight: 500;
        }
        
        .title-generator-section .tg-title-actions {
            display: flex;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .title-generator-section .tg-title-item:hover .tg-title-actions {
            opacity: 1;
        }
        
        .title-generator-section .tg-action-btn {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .title-generator-section .tg-copy-btn {
            background: var(--primary-color);
            color: #ffffff;
        }
        
        .title-generator-section .tg-copy-btn:hover {
            background: var(--dark-color);
            transform: scale(1.1);
        }
        
        .title-generator-section .tg-favorite-btn {
            background: #ffffff;
            color: #dc3545;
            border: 1px solid #e9ecef;
        }
        
        .title-generator-section .tg-favorite-btn:hover {
            background: #dc3545;
            color: #ffffff;
        }
        
        .title-generator-section .tg-favorite-btn.active {
            background: #dc3545;
            color: #ffffff;
        }
        
        /* Character Count */
        .title-generator-section .tg-char-count {
            font-size: 0.75rem;
            color: #6c757d;
            margin-left: 10px;
            padding: 3px 8px;
            background: #e9ecef;
            border-radius: 4px;
        }
        
        /* Features Section */
        .title-generator-section .tg-features {
            padding: 60px 0;
            background: #ffffff;
        }
        
        .title-generator-section .tg-section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark-color);
            text-align: center;
            margin-bottom: 15px;
        }
        
        .title-generator-section .tg-section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .title-generator-section .tg-feature-card {
            background: #ffffff;
            border: 2px solid #e9ecef;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .title-generator-section .tg-feature-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        
        .title-generator-section .tg-feature-icon {
            width: 70px;
            height: 70px;
            background: var(--secondary-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .title-generator-section .tg-feature-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 12px;
        }
        
        .title-generator-section .tg-feature-desc {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
        }
        
        /* How It Works Section */
        .title-generator-section .tg-how-it-works {
            padding: 60px 0;
            background: var(--light-bg);
        }
        
        .title-generator-section .tg-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .title-generator-section .tg-step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }
        
        .title-generator-section .tg-step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .title-generator-section .tg-step-desc {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .title-generator-section .tg-step-connector {
            position: absolute;
            top: 30px;
            left: 60%;
            right: -40%;
            height: 3px;
            background: var(--secondary-color);
            z-index: 0;
        }
        
        /* Title Types Section */
        .title-generator-section .tg-title-types {
            padding: 60px 0;
            background: #ffffff;
        }
        
        .title-generator-section .tg-type-card {
            background: var(--light-bg);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .title-generator-section .tg-type-card:hover {
            background: #ffffff;
            box-shadow: var(--shadow-md);
            transform: translateX(5px);
        }
        
        .title-generator-section .tg-type-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .title-generator-section .tg-type-title i {
            color: var(--primary-color);
        }
        
        .title-generator-section .tg-type-example {
            font-size: 0.95rem;
            color: #6c757d;
            font-style: italic;
            margin: 0;
            padding-left: 30px;
        }
        
        /* FAQ Section */
        .title-generator-section .tg-faq {
            padding: 60px 0;
            background: var(--light-bg);
        }
        
        .title-generator-section .tg-accordion-item {
            background: #ffffff;
            border: none;
            border-radius: 12px !important;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        
        .title-generator-section .tg-accordion-button {
            padding: 20px 25px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-color);
            background: #ffffff;
            border: none;
            box-shadow: none !important;
        }
        
        .title-generator-section .tg-accordion-button:not(.collapsed) {
            background: var(--secondary-color);
            color: var(--dark-color);
        }
        
        .title-generator-section .tg-accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239c7853' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }
        
        .title-generator-section .tg-accordion-body {
            padding: 20px 25px;
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.7;
        }
        
        /* Content Section */
        .title-generator-section .tg-content {
            padding: 60px 0;
            background: #ffffff;
        }
        
        .title-generator-section .tg-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .title-generator-section .tg-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark-color);
            margin: 30px 0 15px;
        }
        
        .title-generator-section .tg-content p {
            font-size: 1rem;
            color: #495057;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .title-generator-section .tg-content ul {
            margin: 15px 0;
            padding-left: 25px;
        }
        
        .title-generator-section .tg-content li {
            font-size: 1rem;
            color: #495057;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        
        .title-generator-section .tg-content strong {
            color: var(--dark-color);
        }
        
        /* Toast/Popup Notification */
        .title-generator-section .tg-toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }
        
        .title-generator-section .tg-toast {
            background: var(--dark-color);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            animation: tg-slideIn 0.3s ease;
            max-width: 350px;
        }
        
        .title-generator-section .tg-toast.success {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }
        
        .title-generator-section .tg-toast.error {
            background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
        }
        
        .title-generator-section .tg-toast.warning {
            background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
            color: var(--dark-color);
        }
        
        .title-generator-section .tg-toast i {
            font-size: 1.2rem;
        }
        
        .title-generator-section .tg-toast-message {
            flex: 1;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .title-generator-section .tg-toast-close {
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            opacity: 0.7;
            font-size: 1rem;
            padding: 0;
            transition: opacity 0.3s ease;
        }
        
        .title-generator-section .tg-toast-close:hover {
            opacity: 1;
        }
        
        .title-generator-section .tg-toast.hiding {
            animation: tg-slideOut 0.3s ease forwards;
        }
        
        @keyframes tg-slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes tg-slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        /* Stats Section */
        .title-generator-section .tg-stats {
            background: var(--gradient-1);
            padding: 50px 0;
        }
        
        .title-generator-section .tg-stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .title-generator-section .tg-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .title-generator-section .tg-stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }
        
        /* Horizontal Ad */
        .title-generator-section .tg-horizontal-ad {
            background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin: 40px 0;
        }
        
        /* Related Tools */
        .title-generator-section .tg-related-tools {
            padding: 60px 0;
            background: var(--light-bg);
        }
        
        .title-generator-section .tg-related-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .title-generator-section .tg-related-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        
        .title-generator-section .tg-related-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.3rem;
            color: var(--primary-color);
        }
        
        .title-generator-section .tg-related-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .title-generator-section .tg-ad-space {
                min-height: 300px;
                position: static;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 991px) {
            .title-generator-section .tg-hero h1 {
                font-size: 2.2rem;
            }
            
            .title-generator-section .tg-step-connector {
                display: none;
            }
            
            .title-generator-section .tg-ad-space {
                min-height: 200px;
            }
        }
        
        @media (max-width: 767px) {
            .title-generator-section .tg-hero {
                padding: 40px 0 60px;
            }
            
            .title-generator-section .tg-hero h1 {
                font-size: 1.8rem;
            }
            
            .title-generator-section .tg-hero-subtitle {
                font-size: 1rem;
            }
            
            .title-generator-section .tg-tool-body {
                padding: 25px 20px;
            }
            
            .title-generator-section .tg-results-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .title-generator-section .tg-title-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .title-generator-section .tg-title-actions {
                opacity: 1;
            }
            
            .title-generator-section .tg-section-title {
                font-size: 1.6rem;
            }
            
            .title-generator-section .tg-stat-number {
                font-size: 2rem;
            }
            
            .title-generator-section .tg-toast-container {
                left: 20px;
                right: 20px;
            }
            
            .title-generator-section .tg-toast {
                max-width: 100%;
            }
        }
        
        /* Print Styles */
        @media print {
            .title-generator-section .tg-ad-space,
            .title-generator-section .tg-horizontal-ad {
                display: none !important;
            }
        }