/*
Theme Name: Notepad++ Download Site
Theme URI: https://notepad-plus-plus.org/
Author: Notepad++ Team
Author URI: https://notepad-plus-plus.org/
Description: Notepad++ 中文下载站主题
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: notepad-plus-plus
Tags: editor, code, download, responsive, modern
*/

:root {
    --color-background: #0a0d0a;
    --color-foreground: #e5e7e4;
    --color-muted-foreground: #7a8570;
    --color-primary: #9bcc3a;
    --color-primary-foreground: #0a0d0a;
    --color-secondary: #151a15;
    --color-card: #101410;
    --color-border: #2a2f25;
    --color-accent: #88b330;
}

.font-mono {
    font-family: "JetBrains Mono", ui-monospace, monospace;
}

.grid-bg {
    background-image:
        linear-gradient(rgba(155,204,58,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155,204,58,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

::selection {
    background: #9bcc3a;
    color: #0a0d0a;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #2a2f25 transparent;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background-color: #0a0d0a;
    color: #e5e7e4;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}