<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Premium Features CSS
 * Styles for premium features like the external links modal
 */

/* Premium Link Modal */
.premium-link-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.premium-link-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: modal-appear 0.3s ease-out;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-link-modal.active {
    display: block;
}

.dark .premium-link-modal-content {
    background-color: #1f2937;
    color: #f3f4f6;
}

.premium-link-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    color: #9ca3af;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.premium-link-close:hover {
    color: #1f2937;
}

.dark .premium-link-close:hover {
    color: #e5e7eb;
}

.premium-link-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.premium-link-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white !important; /* Override any theme styles */
    border-radius: 0.375rem;
    text-decoration: none !important; /* Override any theme styles */
    font-weight: 500;
    transition: all 0.2s ease;
}

.premium-link-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.premium-link-button.secondary {
    background-color: transparent;
    border: 1px solid #2563eb;
    color: #2563eb !important;
}

.dark .premium-link-button.secondary {
    border-color: #60a5fa;
    color: #60a5fa !important;
}

.premium-link-button.secondary:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.dark .premium-link-button.secondary:hover {
    background-color: rgba(96, 165, 250, 0.1);
}

/* Premium Link Styling */
a.premium-link {
    position: relative;
    cursor: pointer;
}

a.premium-link::after {
    content: 'ðŸ”’';
    font-size: 0.75em;
    margin-left: 0.25rem;
    vertical-align: super;
}

/* Premium Alert Banner */
.premium-alert-banner {
    background-color: #fef3c7;
    color: #92400e;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 500;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.dark .premium-alert-banner {
    background-color: #78350f;
    color: #fef3c7;
}

.premium-alert-banner a {
    color: #b45309;
    text-decoration: underline;
    font-weight: 600;
}

.dark .premium-alert-banner a {
    color: #fbbf24;
}

/* Pricing Page Specific Styles - Fixed with higher specificity */
body .pricing-page-wrapper {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
}

body .pricing-page-wrapper .pricing-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #ffffff !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1) !important;
    position: relative !important;
}

body .pricing-page-wrapper .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

body .pricing-page-wrapper .pricing-card &gt; div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body .pricing-page-wrapper .pricing-card .mt-auto {
    margin-top: auto;
}

body .pricing-page-wrapper .pricing-card h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body .pricing-page-wrapper .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

body .pricing-page-wrapper .pricing-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

body .pricing-page-wrapper .pricing-card svg {
    flex-shrink: 0;
}

/* Fix for badge position and transform */
body .pricing-page-wrapper .pricing-card.transform {
    transform: scale(1.05);
}

body .pricing-page-wrapper .pricing-card.transform:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Fix responsive table issues */
@media (max-width: 768px) {
    .pricing-page-wrapper table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        border-collapse: collapse;
    }
    
    .pricing-page-wrapper th, 
    .pricing-page-wrapper td {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .pricing-page-wrapper th:first-child,
    .pricing-page-wrapper td:first-child {
        position: sticky;
        left: 0;
        background-color: inherit;
        z-index: 1;
    }
    
    /* Fix grid layout on mobile */
    body .pricing-page-wrapper .grid-cols-1 {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem;
    }
}

/* Fix dark mode compatibility */
.dark body .pricing-page-wrapper .pricing-card {
    background-color: #1f2937;
}

.dark body .pricing-page-wrapper .pricing-card h3,
.dark body .pricing-page-wrapper h1,
.dark body .pricing-page-wrapper h2 {
    color: #f3f4f6;
}

.dark body .pricing-page-wrapper .text-gray-600,
.dark body .pricing-page-wrapper .text-gray-700 {
    color: #d1d5db !important;
}

/* Fix for SVG colors in dark mode */
.dark body .pricing-page-wrapper .text-green-500 {
    color: #10b981 !important;
}

.dark body .pricing-page-wrapper .text-red-500 {
    color: #ef4444 !important;
}

/* FAQ section fixes */
body .pricing-page-wrapper .space-y-6 &gt; div {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

/* Fix for buttons */
body .pricing-page-wrapper a.bg-blue-600 {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #2563eb;
    color: white;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

body .pricing-page-wrapper a.bg-blue-600:hover {
    background-color: #1d4ed8;
}

body .pricing-page-wrapper .grid-cols-1 {
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 2rem !important;
}

@media (min-width: 768px) {
    body .pricing-page-wrapper .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

body .pricing-page-wrapper .container {
    width: 100% !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (min-width: 640px) {
    body .pricing-page-wrapper .container {
        max-width: 640px !important;
    }
}

@media (min-width: 768px) {
    body .pricing-page-wrapper .container {
        max-width: 768px !important;
    }
}

@media (min-width: 1024px) {
    body .pricing-page-wrapper .container {
        max-width: 1024px !important;
    }
}

@media (min-width: 1280px) {
    body .pricing-page-wrapper .container {
        max-width: 1280px !important;
    }
} </pre></body></html>