:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    /* Free Tier Colors - Blue to Teal */
    --free-gradient: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%);
    --free-primary: #4A90E2;
    --free-secondary: #2DD4BF;
    --free-light: rgba(74, 144, 226, 0.1);
    --free-border: rgba(74, 144, 226, 0.2);
    
    /* Premium Tier Colors - Purple */
    --premium-gradient: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
    --premium-primary: #6f42c1;
    --premium-secondary: #8b5cf6;
    --premium-light: rgba(111, 66, 193, 0.1);
    --premium-border: rgba(111, 66, 193, 0.2);
    
    /* Neutral Colors */
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}






/* Free Framework Card Header */
.free-frameworks .card-header {
    background: var(--free-gradient) !important;
    color: white;
}

.free-frameworks .badge.bg-light {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* Free Framework Badges */
.free-frameworks .badge.bg-success {
    background: var(--free-gradient) !important;
    border: none;
}

/* Free Framework Footer Button */
.free-frameworks .btn-success {
    background: var(--free-gradient) !important;
    border: none;
    transition: all 0.3s ease;
}

.free-frameworks .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Generator Section Updates */
.bg-gradient.bg-primary {
    background: var(--free-gradient) !important;
}

.text-primary {
    color: var(--free-primary) !important;
}

.btn-primary {
    background: var(--free-gradient) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Form Elements */
.form-control, .form-select {
    background: linear-gradient(145deg, rgba(74, 144, 226, 0.05), rgba(255, 255, 255, 0.95)) !important;
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--free-primary);
    box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
}

/* Loading Spinner */
.spinner-border.text-primary {
    border-color: var(--free-primary);
    border-right-color: transparent;
}

/* Results Header - Success Gradient */
.card-header[style*="background: linear-gradient(135deg, #28a745, #20c997)"] {
    background: var(--success-gradient) !important;
}

/* Info Boxes in Results */
.text-primary {
    color: var(--free-primary) !important;
}

/* Premium Framework Styling (Keep Purple) */
.premium-frameworks .card-header {
    background: var(--premium-gradient) !important;
}

.premium-frameworks .badge {
    background: var(--premium-gradient) !important;
}

.premium-frameworks .btn {
    background: var(--premium-gradient) !important;
}

/* Upgrade Notice */
.upgrade-notice, 
.card[style*="background: linear-gradient(145deg, rgba(111, 66, 193, 0.1)"] {
    background: var(--premium-light) !important;
    border: 1px solid var(--premium-border) !important;
}

/* Hero Section Updates */
.hero-section.bg-gradient-primary {
    background: var(--free-gradient) !important;
}

/* Feature Icons */
.feature-icon.bg-primary {
    background: var(--free-gradient) !important;
}

.feature-icon.bg-success {
    background: var(--success-gradient) !important;
}

.feature-icon.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%) !important;
}

/* CTA Section */
.bg-primary {
    background: var(--free-gradient) !important;
}

/* Badge Updates */
.badge.bg-primary {
    background: var(--free-gradient) !important;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #868e96 100%) !important;
}

/* Additional Enhancements */
.gradient-text {
    background: var(--free-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Button Enhancements */
.btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Copy Button Success State */
.copy-success {
    background: var(--success-gradient) !important;
    border: none !important;
}









/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    transform: translateY(-1px);
}

.btn-outline-primary:hover {
    transform: translateY(-1px);
}

/* Generated Prompt Output */
.prompt-output {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    border-left: 4px solid var(--primary-color);
    max-height: 400px;
    overflow-y: auto;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Framework Badge */
.badge {
    font-size: 0.75rem;
    padding: 4px 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Usage Counter */
.usage-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #333;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Dashboard Styles */
.dashboard-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-card .card-body {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

/* Prompt History */
.prompt-item {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.prompt-item:hover {
    background-color: #f8f9fa;
    border-left-color: var(--success-color);
}

.prompt-meta {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

/* Analytics Charts */
.chart-container {
    position: relative;
    height: 300px;
    margin: 20px 0;
}

/* Error States */
.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Pricing Tables */
.pricing-card {
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-tag {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: white !important;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .prompt-output {
        background: white !important;
        border: 1px solid #000 !important;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .card {
        background-color: #2d3748;
        border-color: #4a5568;
    }
    
    .text-muted {
        color: #a0aec0 !important;
    }
}



/***************************************/
/* Professional Premium Tab Design - Replace the previous CSS */

/* Premium Tab Navigation */
.nav-pills {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    padding: 6px;
    border-radius: 14px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
}

.nav-pills .nav-link {
    border-radius: 10px;
    margin: 0 2px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    color: #64748b;
    border: none;
}

.nav-pills .nav-link:not(.active) {
    color: #64748b;
}

.nav-pills .nav-link:not(.active):hover {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.35),
        0 2px 8px rgba(99, 102, 241, 0.2);
}

.nav-pills .nav-link.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.nav-pills .nav-link i {
    margin-right: 10px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Premium Platform Selection */
.platform-selection {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.platform-selection .form-check {
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    padding: 16px 20px;
    margin: 8px 0;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    cursor: pointer;
    position: relative;
}

.platform-selection .form-check:hover {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.platform-selection .form-check-input:checked + .form-check-label {
    color: #6366f1;
    font-weight: 600;
}

.platform-selection .form-check:has(.form-check-input:checked) {
    background: linear-gradient(145deg, #f0f4ff, #faf9ff);
    border-color: #6366f1;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.12),
        0 1px 4px rgba(99, 102, 241, 0.08);
}

.platform-selection .form-check:has(.form-check-input:checked)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 0 4px 4px 0;
}

.platform-selection .form-check-label {
    cursor: pointer;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.platform-selection .form-check-label strong {
    color: #1e293b;
    font-weight: 700;
}

/* Premium Options Sections */
.options-section {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    position: relative;
}

.options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
    border-radius: 12px 12px 0 0;
}

.options-section .form-label.fw-bold {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.025em;
}

.options-section .form-label.small {
    color: #475569;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 6px;
    letter-spacing: 0.025em;
}

/* Premium Form Controls */
.form-select-sm, .form-control-sm {
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    padding: 10px 14px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-select-sm:focus, .form-control-sm:focus {
    border-color: #6366f1;
    box-shadow: 
        0 0 0 3px rgba(99, 102, 241, 0.1),
        0 1px 4px rgba(99, 102, 241, 0.1);
    background: #ffffff;
    outline: none;
}

.form-select-sm option {
    padding: 8px 12px;
    background: #ffffff;
    color: #374151;
}

/* Premium Generate Button */
#generateBtn-premium {
    background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%) !important;
    border: none !important;
    padding: 18px 36px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.025em !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.3),
        0 2px 8px rgba(99, 102, 241, 0.15) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    color: white !important;
}

#generateBtn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

#generateBtn-premium:hover::before {
    left: 100%;
}

#generateBtn-premium:hover {
    transform: translateY(-2px) !important;
    box-shadow: 
        0 12px 40px rgba(99, 102, 241, 0.4),
        0 4px 16px rgba(99, 102, 241, 0.2) !important;
}

#generateBtn-premium:active {
    transform: translateY(-1px) !important;
}

/* Tab Content Animation */
.tab-content {
    padding: 28px 0 20px 0;
}

.tab-pane {
    min-height: 240px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pane.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Input Fields */
#userPrompt-premium, #additionalContext-premium {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
}

#userPrompt-premium:focus, #additionalContext-premium:focus {
    border-color: #6366f1;
    box-shadow: 
        0 0 0 3px rgba(99, 102, 241, 0.1),
        0 2px 8px rgba(99, 102, 241, 0.08);
    background: #ffffff;
    outline: none;
}

#frameworkSelect-premium {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 18px;
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    font-weight: 500;
    font-size: 1rem;
}

#frameworkSelect-premium:focus {
    border-color: #6366f1;
    box-shadow: 
        0 0 0 3px rgba(99, 102, 241, 0.1),
        0 2px 8px rgba(99, 102, 241, 0.08);
    background: #ffffff;
    outline: none;
}

/* Premium Badge Enhancement */
.premium-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-pills .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .options-section {
        padding: 20px 16px;
    }
    
    #generateBtn-premium {
        padding: 16px 28px !important;
        font-size: 1rem !important;
    }
}

/* Subtle animations for premium feel */
@keyframes premium-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4); }
}

.premium-element {
    animation: premium-glow 3s ease-in-out infinite;
}

.char-counter {
    float: right;
    font-size: 12px;
    color: #888;
}




        .hero-section {
            background: 
                radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
            padding: 80px 0 50px 0;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.02) 50%, transparent 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%234A90E2" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
        }

        .badge-text {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(45, 212, 191, 0.1));
            color: #4A90E2;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }

        .gradient-text {
            /*background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%);*/
            background: linear-gradient(135deg, #4A90E2, #2DD4BF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 30px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight:700;
            color: #1a1a1a;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            border-radius: 12px;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border-width: 1px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%);
            border: none;
            color: white;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }

        .btn-outline-dark {
            color: #343a40;
            border-color: #343a40;
        }

        .btn-outline-dark:hover {
            background: #343a40;
            color: white;
            transform: translateY(-2px);
        }

        .trust-section {
            padding-top: 30px;
        }

        .trust-label {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .company-logos {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .company-logo {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            padding: 12px 20px;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s ease;
        }

        .company-logo:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            color: #4A90E2;
        }

        /* Product Interface Styling */
        .product-interface {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }

        .browser-window {
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
            overflow: hidden;
        }

        .browser-header {
            background: #f8f9fa;
            padding: 16px 20px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .browser-controls {
            display: flex;
            gap: 8px;
        }

        .control-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .control-dot.red { background: #ff5f57; }
        .control-dot.yellow { background: #ffbd2e; }
        .control-dot.green { background: #28ca42; }
        .control-dot.black { background: #36BFC9; }
        .control-dot.gray { background: #808080; }

        .browser-url {
            background: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.85rem;
            color: #6c757d;
            flex-grow: 1;
        }

        .interface-content {
            padding: 24px;
        }

        .interface-section {
            margin-bottom: 20px;
        }

        .interface-label {
            display: block;
            font-weight: 600;
            color: #343a40;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .interface-select {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #343a40;
            font-weight: 500;
        }

        .interface-input {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 16px;
        }

        .input-before {
            font-size: 0.8rem;
            color: #6c757d;
            margin-bottom: 4px;
        }

        .input-text {
            color: #343a40;
            font-weight: 500;
        }

        .transformation-arrow {
            text-align: center;
            margin: 16px 0;
        }

        .arrow-icon {
            background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .interface-output {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(45, 212, 191, 0.05));
            border: 2px solid rgba(74, 144, 226, 0.1);
            border-radius: 8px;
            padding: 16px;
        }

        .output-line {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #343a40;
        }

        .output-line:last-child {
            margin-bottom: 0;
        }

        .success-indicator {
            background: rgba(16, 185, 129, 0.1);
            color: #065f46;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid rgba(16, 185, 129, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 16px;
        }

        /* Floating Metrics */
        .floating-metrics {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .metric-card {
            position: absolute;
            background: white;
            border-radius: 10px;
            padding: 12px 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }

        .metric-1 {
            top: 10px;
            right: -68px;
            animation: float 3s ease-in-out infinite;
        }

        .metric-2 {
            top: 38%;
            right: -55px;
            animation: float 3s ease-in-out infinite 1s;
        }

        .metric-3 {
            top: 20%;
            right: -60px;
            animation: float 3s ease-in-out infinite 2s;
        }
        
        .metric-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
        }

        .metric-icon.success { background: #10b981; }
        .metric-icon.primary { background: #4A90E2; }
        .metric-icon.warning { background: #f59e0b; }

        .metric-value {
            font-weight: 700;
            color: #1a1a1a;
            font-size: 0.9rem;
        }

        .metric-label {
            font-size: 0.75rem;
            color: #6c757d;
        }

        /* Background Decorations */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.03;
            pointer-events: none;
        }

        .decoration-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #4A90E2, #2DD4BF);
            top: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .decoration-2 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            bottom: 20%;
            left: 5%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .decoration-3 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            top: 60%;
            right: 20%;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes fadeFloat {
            0%, 100% { transform: translateY(0px); opacity: 0.8; }
            50% { transform: translateY(-8px); opacity: 1; }
        }

        /* Features Row */
        .features-row {
            margin-top: 10px;
            padding-top: 80px;
            border-top: 1px solid #e9ecef;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(45, 212, 191, 0.1));
            border: 2px solid rgba(74, 144, 226, 0.2);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #4A90E2;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .feature-card h5 {
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: #6c757d;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px 0;
                min-height: auto;
            }
            
            .display-3 {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                padding: 20px 0;
            }
            
            .cta-group {
                flex-direction: column;
            }
            
            .floating-metrics {
                display: none;
            }
            
            .company-logos {
                justify-content: center;
            }

            .features-row {
                margin-top: 60px;
                padding-top: 60px;
            }
        }



/* Premium Card Container */
.premium-card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Premium Header */
.premium-header {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

/* Premium Header matching with primary*/
.premium-header-pm {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%)
}

.premium-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    z-index: 1;
}

.premium-gradient-pm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%)
    z-index: 1;
}

.premium-content {
    position: relative;
    z-index: 2;
}

.premium-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
}

.premium-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Free Header */
.free-header {
    position: relative;
    padding: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.free-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.free-content {
    position: relative;
    z-index: 2;
}

.free-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
}

.free-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #242323;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Premium Tabs */
.premium-tabs {
    background: #f8fafc;
    padding: 24px 32px 0;
}

.premium-tabs .nav-pills {
    background: #ffffff;
    padding: 6px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
}

.premium-tabs .nav-link {
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-tabs .nav-link.active {
    /*background: linear-gradient(135deg, #8b5cf6, #ec4899);*/
    background: linear-gradient(135deg, #4A90E2 0%, #4A90E2 30%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}


.tab-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-tab { background: #4A90E2; }
.image-tab { background: #4A90E2; }
.video-tab { background: #4A90E2; }

/* Generator Content */
.generator-content {
    padding: 32px;
    background: #f8fafc;
}

/* Section Cards */
.section-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 12px;
    font-size: 14px;
}

.text-platform { background: #3b82f6; }
.text-options { background: #6366f1; }
.image-platform { background: #10b981; }
.image-options { background: #059669; }
.video-platform { background: #f59e0b; }
.video-options { background: #d97706; }

.section-title {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-size: 16px;
}

/* Platform Selection */
.platform-selection {
    margin-top: 16px;
}

.platform-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.platform-radio {
    display: none;
}

.platform-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.platform-option:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.platform-radio:checked + .platform-option {
    background: #eff6ff;
    border-color: #3b82f6;
}

.platform-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
    margin-right: 12px;
}

.universal { background: #6b7280; }
.chatgpt { background: #10b981; }
.claude { background: #3b82f6; }
.gemini { background: #f59e0b; }
.perplexity { background: #8b5cf6; }
.dalle { background: #10b981; }
.midjourney { background: #3b82f6; }
.stable { background: #f59e0b; }
.firefly { background: #ef4444; }
.leonardo { background: #8b5cf6; }
.sora { background: #10b981; }
.runway { background: #3b82f6; }
.veo { background: #f59e0b; }
.dream { background: #8b5cf6; }

.platform-info {
    flex: 1;
}

.platform-name {
    font-weight: 600;
    color: #1e293b;
    display: block;
    font-size: 14px;
}

.platform-desc {
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}

/* Options Grid */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.option-label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    margin: 0;
}

.clean-select, .clean-input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
}

.clean-select:focus, .clean-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Common Fields */
.common-fields {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.main-input-section {
    margin-bottom: 24px;
}

.main-label {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: block;
}

.secondary-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    display: block;
}

.main-textarea {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    width: 100%;
    resize: vertical;
    transition: all 0.2s ease;
    min-height: 80px;
}

.main-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.input-hint {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
}

.hint-text {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.main-select {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    transition: all 0.2s ease;
}

.main-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.secondary-textarea {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    width: 100%;
    resize: vertical;
    transition: all 0.2s ease;
    min-height: 60px;
}

.secondary-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.context-section {
    margin-bottom: 24px;
}

.optional-badge {
    background: #f3f4f6;
    color: #6b7280;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

/* Usage Notice */
.usage-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.usage-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.usage-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.usage-icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.usage-count {
    font-weight: 600;
    color: #92400e;
    font-size: 14px;
}

.usage-desc {
    color: #92400e;
    font-size: 12px;
    margin-top: 2px;
}

.usage-btn {
    background: #f59e0b;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.usage-btn:hover {
    background: #d97706;
    color: white;
    transform: translateY(-1px);
}

/* Generate Section */
.generate-section {
    text-align: center;
    margin-bottom: 32px;
}

.generate-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

.premium-generate {
    background: linear-gradient(135deg, #4A90E2 0%, #2DD4BF 100%)
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.4);
}

.free-generate {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.4);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generate-desc {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}

/* Upgrade Notice */
.upgrade-notice {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 20px;
}

.upgrade-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.upgrade-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.upgrade-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.upgrade-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
}

.upgrade-desc {
    color: #64748b;
    font-size: 14px;
    margin-top: 2px;
}

.upgrade-btn {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.4);
}

.upgrade-btn:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.4);
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gradient-text {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #4A90E2, #2DD4BF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.premium-feature {
    position: relative;
    overflow: hidden;
}

.premium-badge-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    }
}

.border-gradient-premium {
    border: 2px solid;
    border-image: linear-gradient(135deg, #8b5cf6, #ec4899) 1;
    border-radius: 12px;
}

.rounded-xl {
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-header, .free-header {
        padding: 24px;
    }
    
    .generator-content {
        padding: 24px;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .usage-content, .upgrade-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .generate-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-tabs .nav-link {
        padding: 12px 16px;
        font-size: 14px
		font-size: 14px;
    }
    
    .main-label {
        font-size: 18px;
    }
    
    .secondary-label {
        font-size: 14px;
    }
}

