@import "tailwindcss";

/* Security Blog Theme - Dark Mode */

:root {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Article card hover effect */
article {
    transition: all 0.2s ease;
}

article:hover {
    transform: translateY(-2px);
}

/* Syntax highlighting for code blocks */
pre code {
    color: #e5e7eb;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .prose h1 { font-size: 1.75em; }
    .prose h2 { font-size: 1.35em; }
    
    article { padding: 1rem !important; }
}
