/* Удаляем некорректный @import */

@font-face {
    font-family: 'Dobrozrachniy';
    src: url('/static/fonts/Dobrozrachniy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* OpSec-переменные */
:root {
    --neon-cyan: #06b6d4;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

/* Шрифт */
.font-dobro {
    font-family: 'Dobrozrachniy', serif;
    letter-spacing: 0.03em;
}

/* Анимация */
.animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ✅ Сброс для правильной центровки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
}