:root {
    --primary-color: #0F172A; /* fisagency primary color - dark blue */
    --secondary-color: #1E293B; /* slightly lighter blue for secondary elements */
    --accent-color: #3B82F6; /* fisagency accent color - bright blue */
    --background-color: #ffffff; /* light background instead of dark */
    --card-bg-color: #F8FAFC; /* very light blue-gray for cards */
    --text-color: #0F172A; /* dark text on light background */
    --text-secondary: #64748B; /* medium gray for secondary text */
    --border-color: #E2E8F0; /* light gray for borders */
    --tag-content: #DCFCE7; /* Light green background */
    --tag-content-text: #166534; /* Dark green text */
    --tag-social: #DBEAFE; /* Light blue background */
    --tag-social-text: #1E40AF; /* Dark blue text */
    --tag-seo: #F3E8FF; /* Light purple background */
    --tag-seo-text: #6B21A8; /* Dark purple text */
    --tag-ads: #FFF7ED; /* Light orange background */
    --tag-ads-text: #9A3412; /* Dark orange text */
    --tag-strategy: #FCE7F3; /* Light pink background */
    --tag-strategy-text: #9D174D; /* Dark pink text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.background-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: #ffffff;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    font-weight: 700;
    font-size: 0;
    background-image: url('../assets/images/logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 30px;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

/* Logo styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.footer .logo-link {
    display: inline-block;
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 16px;
    background-color: #F8FAFC;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
}

.benefit svg {
    color: var(--accent-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* How to Use Section */
.how-to-use {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--background-color), #F1F5F9);
}

.how-to-use h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 24px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Categories Section */
.categories {
    padding: 20px 0 40px;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
}

.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Prompts Grid */
.prompts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.prompt-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
    position: relative;
}

.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.prompt-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #CBD5E1;
    font-size: 14px;
}

.star.filled {
    color: #FBBF24;
}

.featured-tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.prompt-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.tag.content {
    background-color: var(--tag-content);
    color: var(--tag-content-text);
}

.tag.social {
    background-color: var(--tag-social);
    color: var(--tag-social-text);
}

.tag.seo {
    background-color: var(--tag-seo);
    color: var(--tag-seo-text);
}

.tag.ads {
    background-color: var(--tag-ads);
    color: var(--tag-ads-text);
}

.tag.strategy {
    background-color: var(--tag-strategy);
    color: var(--tag-strategy-text);
}

.tag.email {
    background-color: #FEF3C7; /* Light yellow background */
    color: #92400E; /* Dark yellow/orange text */
}

.tag.analytics {
    background-color: #E0F2FE; /* Light cyan background */
    color: #0C4A6E; /* Dark cyan text */
}

.tag.conversion {
    background-color: #FFE4E6; /* Light red background */
    color: #9F1239; /* Dark red text */
}

.tag.community {
    background-color: #D1FAE5; /* Light teal background */
    color: #065F46; /* Dark teal text */
}

.tag.sustainability {
    background-color: #ECFCCB; /* Light lime background */
    color: #3F6212; /* Dark lime text */
}

.tag.storytelling {
    background-color: #FEF3C7; /* Light yellow background */
    color: #92400E; /* Dark yellow/orange text */
}

.tag.copywriting {
    background-color: #E0F2FE; /* Light cyan background */
    color: #0C4A6E; /* Dark cyan text */
}

.tag.video {
    background-color: #FFE4E6; /* Light red background */
    color: #9F1239; /* Dark red text */
}

.tag.global {
    background-color: #D1FAE5; /* Light teal background */
    color: #065F46; /* Dark teal text */
}

.tag.documentation {
    background-color: #ECFCCB; /* Light lime background */
    color: #3F6212; /* Dark lime text */
}

.tag.brand-protection {
    background-color: #FEF3C7; /* Light yellow background */
    color: #92400E; /* Dark yellow/orange text */
}

.tag.customer-support {
    background-color: #E0F2FE; /* Light cyan background */
    color: #0C4A6E; /* Dark cyan text */
}

.tag.customer-feedback {
    background-color: #FFE4E6; /* Light red background */
    color: #9F1239; /* Dark red text */
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #F1F5F9);
}

.use-cases h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-content {
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #F1F5F9, #F8FAFC);
    border-radius: 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta > .container > .cta-content > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-option, .signup-option {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
    padding: 24px;
    background-color: #F8FAFC;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cta h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-option p, .signup-option p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-info {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.contact-email {
    display: inline-block;
    color: white;
    background-color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.contact-email:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.signup-form {
    display: flex;
    margin-bottom: 10px;
}

.signup-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
}

.signup-form input:focus {
    border-color: var(--accent-color);
}

.signup-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #2563eb;
}

/* Newsletter Styles */
.signup-option iframe {
    margin-bottom: 10px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
}

.form-note {
    font-size: 12px !important;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-bottom: 0 !important;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:active {
    transform: translateY(2px);
}

.footer-copyright p {
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    opacity: 0.7;
}

/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal.visible {
    opacity: 1;
}

.modal[style*="display: flex"] {
    display: flex !important;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: 20px 0;
}

.modal.visible .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg-color);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.close-btn:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
    background-color: var(--primary-color);
    color: white;
}

.prompt-content {
    margin-top: 20px;
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.05);
}

.prompt-content pre {
    white-space: pre-wrap;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Syntax highlighting for prompt text */
.prompt-content .section-title {
    color: #0066cc;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.prompt-content .variable {
    color: #e67e22;
    font-weight: 500;
}

.prompt-content .list-item {
    color: #2ecc71;
    font-weight: 600;
    margin-right: 5px;
}

.prompt-content .instruction {
    color: #9b59b6;
    font-weight: 600;
}

.prompt-content .comment {
    color: #7f8c8d;
    font-style: italic;
}

/* Style the numbered lists and bullet points in the prompt content */
.prompt-content pre {
    counter-reset: item;
}

.prompt-content pre strong {
    color: var(--accent-color);
    font-weight: 600;
}

#modalTitle {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

#modalDescription {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
}

.copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.copy-btn::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.copy-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Prompt Text Styles */
.prompt-text {
    display: none;
}

/* Success Message */
.success-message {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    padding: 10px;
}

/* Modal Navigation */
.modal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.view-all-btn {
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prompt-navigation {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background-color: var(--card-bg-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    #modalTitle {
        font-size: 20px;
    }
    
    .prompt-content {
        padding: 15px;
    }
    
    .copy-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Results Section */
.results {
    padding: 80px 0;
    background-color: #ffffff;
}

.results h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.results-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
}

.tab-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.before-after {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.before, .after {
    flex: 1;
    min-width: 300px;
}

.before h3, .after h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.before h3::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #EF4444;
    border-radius: 50%;
}

.after h3::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #10B981;
    border-radius: 50%;
}

.content-box {
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 200px;
}

.content-box p {
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.5;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.content-box li {
    margin-bottom: 6px;
    color: var(--text-color);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-notification svg {
    flex-shrink: 0;
}

.toast-notification.error {
    background-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .toast-notification {
        width: 90%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .prompts-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .category-filters {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .cta h2 {
        font-size: 24px;
    }
    
    .cta h3 {
        font-size: 20px;
    }
    
    .chat-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Search Styles */
.search-container {
    margin: 30px auto;
    max-width: 600px;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    padding-right: 50px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--card-bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.clear-search {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.clear-search.visible {
    opacity: 1;
    visibility: visible;
}

.clear-search:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.search-results-info {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    min-height: 20px;
}

/* Highlight search matches */
.highlight-match {
    background-color: rgba(var(--primary-color-rgb), 0.2);
    padding: 0 2px;
    border-radius: 3px;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Hide filtered cards */
.prompt-card.filtered {
    display: none;
} 