/* =========================================================================
   SILVIA AI — ULTIMATE SLEEK CYBERPUNK / MODERN SAAS STYLESHEET
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

code, pre, .font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #070a13; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* Glowing & Glass Panels */
.glass-panel { 
    background: rgba(13, 19, 33, 0.75); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07); 
}

.glass-card {
    background: rgba(18, 26, 44, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.15);
}

.chat-bubble-assistant { 
    background: #0f172a; 
    border: 1px solid #1e293b; 
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
}

.chat-bubble-user { 
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%); 
    color: #FFFFFF; 
    box-shadow: 0 4px 15px -2px rgba(124, 58, 237, 0.3);
}

/* =========================================================================
   VERIFIED BADGES ACCORDING TO SPECIFICATIONS:
   - Owner: Glowing Yellow / Gold (#FACC15 / #EAB308)
   - Admin: Glowing Blue (#60A5FA / #3B82F6)
   - Paid / Subscribed User (Beli Plan): Glowing Red (#F87171 / #EF4444)
   - Free / Standard User: Slate / Neutral (#94A3B8)
   ========================================================================= */

.badge-verified-owner {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(202, 138, 4, 0.1) 100%);
    color: #FACC15;
    border: 1px solid rgba(234, 179, 8, 0.5);
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.2);
}

.badge-verified-admin {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.badge-verified-paid {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.badge-standard-free {
    background-color: rgba(100, 116, 139, 0.15);
    color: #94A3B8;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Prism syntax highlight box */
pre[class*="language-"] {
    background: #090d16 !important;
    border: 1px solid #1e293b;
    border-radius: 0.75rem;
}
