/* cerebro.css - Dual Layout Stylesheet (Blog Feed + Chatbot) */

/* General Layout */
.cerebro-layout-container {
    padding-top: 1.5rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    min-height: calc(100vh - 220px);
    transition: var(--transition-smooth);
}

.nav-back-home {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.nav-back-home:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-3px);
}

.back-arrow-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Tabs Bar (Hidden on Desktop) */
.mobile-tabs-bar {
    display: none;
    width: 100%;
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 90;
    background: rgba(6, 9, 17, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.mobile-tab-btn {
    width: 50%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-tab-btn.active {
    color: var(--text-primary);
}

.mobile-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-brand);
}

/* --- Left Column: Reflections Blog Feed --- */
.feed-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.column-header {
    margin-bottom: 0.5rem;
}

.column-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.column-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.serif-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
}

.column-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Timeline Feed Stack */
.reflections-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Blog Note Card */
.blog-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    animation: card-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.blog-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.blog-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(15, 23, 42, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card.card-highlight {
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25), 0 10px 40px rgba(139, 92, 246, 0.15);
    animation: highlight-pulse 2s ease-out forwards;
}

@keyframes highlight-pulse {
    0%   { box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.5), 0 10px 40px rgba(139, 92, 246, 0.2); }
    70%  { box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2), 0 10px 30px rgba(139, 92, 246, 0.1); }
    100% { box-shadow: none; }
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-date {
    color: var(--text-muted);
}

.blog-card-source-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    transition: var(--transition-smooth);
    border-bottom: 1px dashed rgba(139, 92, 246, 0.3);
}

.blog-card-source-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.external-link-icon {
    width: 10px;
    height: 10px;
    stroke-width: 2.5;
}

.blog-card-tag {
    color: var(--color-primary);
    background: rgba(139, 92, 246, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.blog-card-tag:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.35);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* --- Filter Status Bar --- */
.filter-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.8rem 1.4rem;
    border-radius: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fade-in-down 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.filter-status-bar strong {
    color: var(--color-primary);
}

.clear-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.clear-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.blog-card-text {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.6;
}

.blog-card-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.blog-card:hover .blog-card-link {
    color: var(--color-primary);
}

.blog-card-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(3px);
}

/* --- Right Column: Chatbot Sidebar --- */
.chat-column {
    position: sticky;
    top: 110px; /* Aligned nicely below header */
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
}

.chat-box {
    flex-grow: 1;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Chat Header */
.chat-box-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(6, 9, 17, 0.4);
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bot-avatar {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-info h2 {
    font-size: 1rem;
    font-weight: 700;
}

.bot-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Quick Tags */
.quick-tags-container {
    display: flex;
    gap: 0.4rem;
    padding: 0.6rem 1.75rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.quick-tags-container::-webkit-scrollbar {
    display: none;
    height: 0px;
}

.quick-tag-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.3rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.quick-tag-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Chat Log */
.chat-log {
    flex-grow: 1;
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-log::-webkit-scrollbar {
    width: 6px;
}

.chat-log::-webkit-scrollbar-track {
    background: transparent;
}

.chat-log::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chat-log::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Bubbles */
.chat-message {
    display: flex;
    width: 100%;
}

.user-message { justify-content: flex-end; }
.bot-message { justify-content: flex-start; }

.message-bubble {
    max-width: 85%;
    padding: 0.85rem 1.25rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
    word-break: break-word;
    animation: bubble-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.user-message .message-bubble {
    background: var(--gradient-brand);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.bot-message .message-bubble {
    background: rgba(30, 41, 59, 0.45);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.welcome-bubble {
    background: rgba(30, 41, 59, 0.2) !important;
    border-radius: 18px !important;
    max-width: 100%;
}

.welcome-bubble h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.welcome-bubble p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.welcome-bubble p:last-child { margin-bottom: 0; }

.welcome-bubble em {
    color: var(--color-primary);
    font-style: normal;
    font-weight: 600;
}

.bubble-link {
    color: var(--color-primary);
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(139, 92, 246, 0.5);
    transition: border-color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.bubble-link:hover {
    border-bottom-color: var(--color-primary);
    opacity: 0.85;
}

/* Input Bar */
.chat-input-bar {
    padding: 1.25rem 1.75rem 1.5rem;
    background: rgba(6, 9, 17, 0.4);
    border-top: 1px solid var(--border-color);
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.25rem 0.4rem 0.25rem 1rem;
    transition: var(--transition-smooth);
}

.input-wrapper:focus-within {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

#chat-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

#chat-input:focus { outline: none; }

#btn-send {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--gradient-brand);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

#btn-send:hover {
    transform: scale(1.03);
}

.send-icon {
    width: 15px;
    height: 15px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 0.3rem;
    padding: 0.6rem 1rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 14px;
    width: fit-content;
    border: 1px solid var(--border-color);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Responsive adjustment (Mobile screen) */
@media (max-width: 900px) {
    .cerebro-layout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: calc(var(--header-height) + 4rem); /* Add space for tabs */
    }
    
    .mobile-tabs-bar {
        display: flex;
    }
    
    /* Toggle columns visibility */
    .feed-column, .chat-column {
        display: none;
        width: 100%;
    }
    
    .feed-column.active, .chat-column.active {
        display: flex;
    }
    
    .chat-column {
        position: static;
        height: 520px;
    }
}

/* --- IA Mode and Blog Mode Layouts (Non-Dual) --- */
.cerebro-layout-container {
    grid-template-columns: 1fr !important;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

body.layout-mode-ia-active .chat-column {
    display: flex !important;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    top: 0;
    height: calc(100vh - 200px);
}

body.layout-mode-ia-active .feed-column {
    display: none !important;
}

body.layout-mode-blog-active .feed-column {
    display: flex !important;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

body.layout-mode-blog-active .chat-column {
    display: none !important;
}

/* Hide FAB since we are not dual */
.floating-chat-fab {
    display: none !important;
}

/* Hide mobile tabs completely */
.mobile-tabs-bar {
    display: none !important;
}

/* --- Layout Switcher Panel --- */
.layout-switcher-container {
    margin-top: calc(var(--header-height) + 1.5rem);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
    animation: fade-in-down 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.layout-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    padding: 0.25rem;
    border-radius: 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.switcher-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 0.45rem 1.15rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.switcher-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.switcher-btn.active {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.switcher-icon {
    width: 14px;
    height: 14px;
}

/* Reset Chat Header display */
.chat-box-header {
    display: block; /* Restore normal block container layout */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .layout-switcher-container {
        margin-top: calc(var(--header-height) + 1rem);
        justify-content: center;
        margin-bottom: 0rem;
        padding: 0 1rem;
    }
    
    .layout-switcher {
        width: 100%;
        max-width: 400px;
        justify-content: space-between;
    }
    
    .switcher-btn {
        flex-grow: 1;
        justify-content: center;
        padding: 0.4rem 0.75rem;
    }

    .cerebro-layout-container {
        padding-top: 1rem !important;
    }
    
    body.layout-mode-ia-active .chat-column {
        height: calc(100vh - 220px);
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .layout-switcher-container {
        padding: 0;
    }
    .layout-switcher {
        gap: 0.25rem;
        padding: 0.25rem;
        width: auto !important;
        max-width: fit-content;
    }
    .switcher-btn span {
        display: none !important;
    }
    .switcher-btn {
        padding: 0.5rem;
        border-radius: 50% !important;
        width: 36px;
        height: 36px;
        flex-grow: 0 !important;
        justify-content: center;
    }
    .switcher-icon {
        width: 16px;
        height: 16px;
        margin: 0 !important;
    }
}


/* =====================
   REFLECTION MODAL
   ===================== */
.reflection-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.reflection-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.reflection-modal {
    background: #0f1729;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.reflection-modal-overlay.open .reflection-modal {
    transform: translateY(0) scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.modal-close-btn:hover { background: rgba(255,255,255,0.14); color: var(--text-primary); }
.modal-close-btn svg { width: 16px; height: 16px; }
.modal-image-wrap { width: 100%; height: 220px; overflow: hidden; border-radius: 24px 24px 0 0; flex-shrink: 0; }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-image-wrap:empty { display: none; }
.modal-body { padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.modal-meta { display: flex; align-items: center; gap: 0.75rem; }
.modal-date { font-size: 0.78rem; color: var(--text-muted); }
.modal-tag { font-size: 0.7rem; font-weight: 700; color: var(--color-primary); background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-title { font-size: 1.3rem; font-weight: 700; line-height: 1.35; color: var(--text-primary); margin: 0; }
.modal-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-secondary); margin: 0; }
.modal-source-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--color-primary); text-decoration: none; margin-top: 0.25rem; opacity: 0.85; transition: opacity 0.2s; }
.modal-source-link:hover { opacity: 1; }
.modal-source-link:empty { display: none; }

/* =====================
   LOAD MORE BUTTON
   ===================== */
.load-more-container { text-align: center; padding: 1.5rem 0 0.5rem; }
.btn-load-more { background: rgba(255,255,255,0.04); border: 1px solid var(--border-color); color: var(--text-secondary); padding: 0.65rem 1.75rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; font-family: inherit; }
.btn-load-more:hover { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.4); color: var(--color-primary); }

/* ====================================================
   MODAL UX IMPROVEMENTS (Blur, Nav buttons & Highlight)
   ==================================================== */

/* Blur background container when modal is open */
body:has(.reflection-modal-overlay.open) .dual-column-layout {
    filter: blur(4px);
    transition: filter 0.25s ease;
}
.dual-column-layout {
    transition: filter 0.25s ease;
}

/* Modal Inner Navigation Buttons */
.modal-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    gap: 1rem;
}

.modal-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.modal-nav-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--color-primary);
}

.modal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav-btn svg {
    width: 14px;
    height: 14px;
}

/* Highlight Card target when closing modal */
.blog-card.card-attention {
    animation: pulseHighlight 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes pulseHighlight {
    0% {
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.4);
        border-color: var(--color-primary);
        background: rgba(139, 92, 246, 0.08);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(139, 92, 246, 0);
        border-color: var(--border-color);
        background: var(--bg-card);
    }
}
