:root {
    --color-bg: #0a0a0a;
    --color-surface: #121212;
    --color-primary: #00ff88; /* Neon Emerald */
    --color-text: #f0f0f0;
    --color-muted: #888888;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--color-bg);
    font-family: var(--font-body);
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.header-scrolled {
    background-color: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(20px);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Эффект проявления элементов */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Плавный скролл */
html {
    scroll-behavior: smooth;
}

/* Кастомный курсор или акценты */
::selection {
    background: var(--color-primary);
    color: black;
}

/* Анимация градиента для текста */
.text-gradient {
    background: linear-gradient(to right, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Стилизация форм */
input {
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}