@tailwind base;
@tailwind components;
@tailwind utilities;

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tonal-layer {
    background-color: #f3f3f6;
}

.card-shadow {
    box-shadow: 0 10px 40px rgba(26, 28, 30, 0.06);
}

body {
    min-height: max(884px, 100dvh);
}

.shimmer-text {
    background: linear-gradient(90deg, #003f87 0%, #0056b3 25%, #acc7ff 50%, #0056b3 75%, #003f87 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Legal Content Styles */
.legal-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.625;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-content li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sidebar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    padding-left: 1rem;
    transition: all 0.2s;
    border-left: 2px solid transparent;
}

.sidebar-link:hover {
    color: #0f172a;
}

.sidebar-link.active {
    color: #0056b3;
    font-weight: 700;
    border-left-color: #0056b3;
}

.bg-dot-pattern {
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
}

@media (prefers-color-scheme: dark) {
    .bg-dot-pattern {
        background-image: radial-gradient(#1e293b 1px, transparent 1px);
    }
    .legal-content h4 { color: white; }
    .legal-content p { color: #94a3b8; }
    .sidebar-link { color: #94a3b8; }
    .sidebar-link:hover { color: white; }
    .sidebar-link.active { color: #3b82f6; border-left-color: #3b82f6; }
}
