/* A0 Law Agent - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

body {
    background-color: #08090C;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #f1f5f9;
}

.glass-panel {
    background: rgba(18, 20, 26, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.premium-card {
    background: rgba(18, 20, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.5rem;
    padding: 2.5rem;
    transition: all 0.5s ease;
}

.premium-card:hover {
    background: rgba(18, 20, 26, 0.6);
    border-color: rgba(245, 158, 11, 0.2);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #08090C; }
::-webkit-scrollbar-thumb { background: #12141A; border-radius: 9999px; border: 1px solid rgba(51, 65, 85, 0.3); }
::-webkit-scrollbar-thumb:hover { background: #334155; }

[x-cloak] { display: none !important; }

@keyframes scan {
    0%, 100% { top: 10%; }
    50% { top: 90%; }
}

.animate-scan {
    animation: scan 3s linear infinite;
}
