/* RESET I BAZA */
html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: #050505;
    color: #e5e5e5;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* NAPRAWA PRZEWIJANIA - Kluczowe dla fixed header */
section[id] {
    scroll-margin-top: 85px; /* Wysokość menu + zapas */
}

/* ANIMACJE REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* UI ELEMENTS */
.gradient-text {
    background: linear-gradient(to right, #8B5CF6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-grid {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #8B5CF6; }

/* HONEYPOT */
.bot-trap { display: none !important; }