/* Zmienne globalne - Kolorystyka 1:1 */
        :root {
            --bg-dark: #0b0c10;       /* Głębokie czarne tło strony */
            --bg-tile: #14171c;       /* Ciemnoszare kafelki */
            --primary-blue: #0066ff;  /* Charakterystyczny jasnoniebieski akcent */
            --text-light: #ffffff;    /* Główny jasny tekst */
            --text-muted: #8a929e;    /* Szary tekst pomocniczy */
            --border-color: #22262f;  /* Kolor ramek i linii podziału */
            --header-bg: rgba(11, 12, 16, 0.95);
        }

        /* Reset i style bazowe */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NAGŁÓWEK I NAWIGACJA */
        header {
            background-color: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            backdrop-filter: blur(10px);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            position: relative;
        }
        .logo {
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 0.5px;
            z-index: 1002; /* Ponad panelem bocznym */
        }
        .logo span {
            color: var(--primary-blue);
        }
       
        /* Menu dla komputerów (Desktop) */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .nav-menu a:hover {
            color: var(--primary-blue);
        }
        .btn-support {
            background-color: transparent;
            border: 1px solid var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s ease;
        }
        .btn-support:hover {
            background-color: var(--primary-blue);
            color: white !important;
        }

        /* Ikona Hamburgera */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1005; /* Ponad panelem bocznym */
        }
        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }

        /* Nakładka przyciemniająca tło (Overlay) */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
        }
        .menu-overlay.active {
            display: block;
        }

        /* SEKCJA HERO */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
            text-align: center;
        }
        .hero h2 {
            color: var(--primary-blue);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .hero h3 {
            font-size: 1.5rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: background 0.2s ease;
        }
        .btn-primary:hover {
            background-color: #0052cc;
        }
        
        section ul {
            width: fit-content;
            margin: 1em auto;
            text-align: left;
        }
        section li>ul {
            margin: 0;
            margin-left: 2em;
        }
        
        section ol {
            width: fit-content;
            margin: 1em auto;
            text-align: left;
        }
        
        /* UKŁAD KAFELKOWY */
        section.content-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }
        .section-header {
            margin-bottom: 2.5rem;
        }
        .section-header h4 {
            color: var(--primary-blue);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-header h3 {
            font-size: 2rem;
            font-weight: 700;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .tile {
            background-color: var(--bg-tile);
            border: 1px solid var(--border-color);
            padding: 2rem;
            border-radius: 8px;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        .tile:hover {
            transform: translateY(-4px);
            border-color: #333945;
        }
        .tile .icon {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .tile h5 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        .tile p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* STOPKA */
        footer {
            border-top: 1px solid var(--border-color);
            padding: 3rem 2rem;
            margin-top: 6rem;
            background-color: #07080b;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--text-light);
        }
		
		.underline-link {
            color: var(--text-light);
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 5px 0;
			line-height: 2em;
        }
        
        .underline-link:hover {
            color: var(--primary-blue);
        }
        
        .underline-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, blue, var(--primary-blue));
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
        }
        
        .underline-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        .events_table {
            margin: 1em auto;
        }
        .events_table td {
            padding: 0 1em;
        }
        .events_table td:nth-child(1), .events_table td:nth-child(2) {
            text-align: left;
        }
        .events_table td:nth-child(3) {
            text-align: right;
        }
        
        .two_column_table {
            margin: 1em auto;
        }
        .two_column_table td {
            padding: 0 1em;
        }
        .two_column_table td:nth-child(1) {
            text-align: left;
        }
        .two_column_table td:nth-child(2) {
            text-align: right;
        }
        

        /* RESPONSYWNOŚĆ - PANEL BOCZNY WYSURWANY Z PRAWEJ */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                display: none;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #14171c;
                flex-direction: column;
                align-items: flex-start;
                padding: 6rem 2rem 2rem 2rem;
                gap: 2rem;
                transition: right 0.3s ease-in-out;
                border-left: 1px solid var(--border-color);
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
                z-index: 1003;
            }

            /* Aktywne menu boczne */
            .nav-menu.active {
                display: flex;
                right: 0;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                display: flex;
                width: 100%;
            }

            .btn-support {
                width: 100%;
                justify-content: center;
            }

            /* Animacja hamburgera do znaku X */
            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero h1 {
                font-size: 2rem;
            }

            .footer-container {
                flex-direction: column;
                gap: 2rem;
            }
        }