/* ============================================
   GLOBALNE ZMIENNE I RESET
   ============================================ */
:root {
    --primary-dark: #07070a;
    --primary-black: #0c0c12;
    --secondary-black: #14141d;
    --accent-purple: #7b3fe4;
    --accent-lavender: #9d6ff3;
    --light-purple: #b89cf5;
    --text-white: #f0e6ff;
    --text-gray: #c2b5d6;
    --timeline-color: #5a2db8;
    --success-green: #2ecc71;
    --glow-purple: rgba(123, 63, 228, 0.4);
    --glow-lavender: rgba(157, 111, 243, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% -20%, rgba(123, 63, 228, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 20%, rgba(123, 63, 228, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(157, 111, 243, 0.08) 0%, transparent 40%),
        var(--primary-dark);
    z-index: -2;
}

img {
    filter: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}