[x-cloak] { display: none !important; }

/* Темная стеклянная шапка */
.glass-nav { 
    background: rgba(24, 24, 27, 0.85); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

/* Текстура шлифованного металла */
.bg-metal {
    background-color: #09090b;
    background-image: 
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 4px
        ),
        radial-gradient(circle at 75% 40%, rgba(250, 204, 21, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #18181b 0%, #09090b 100%);
}

/* Плавная анимация парения */
@keyframes float {
    0% { transform: translateY(0px) rotate(var(--tw-rotate, 0deg)); }
    50% { transform: translateY(-10px) rotate(calc(var(--tw-rotate, 0deg) + 2deg)); }
    100% { transform: translateY(0px) rotate(var(--tw-rotate, 0deg)); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 7s ease-in-out infinite; animation-delay: 2s; }

/* Скрытие скроллбара */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
