:root {
            --bg-color: #050505;
            --glass-bg: rgba(20, 20, 20, 0.95);
            --neon-red: #ff1e1e;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --card-bg: rgba(255, 255, 255, 0.03);
        }

        * {
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            background-color: var(--bg-color);
            color: var(--text-white);
            background-image: url('../images/tło2026marzec.png');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            padding-top: 0 !important;
            top: 0 !important;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
            z-index: -1;
        }

        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-red), #ff6b6b);
            z-index: 10000;
            width: 0%;
            transition: width 0.1s ease-out;
            box-shadow: 0 0 10px var(--neon-red), 0 0 20px rgba(255, 30, 30, 0.5);
        }

        .goog-te-banner-frame,
        .goog-te-gadget-icon,
        #google_translate_element,
        .skiptranslate,
        .goog-tooltip,
        .goog-te-balloon-frame {
            display: none !important;
        }

        .goog-text-highlight {
            background-color: transparent !important;
            box-shadow: none !important;
        }

        body {
            top: 0 !important;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        a:hover {
            color: var(--neon-red);
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* NAV (DESKTOP) */
        #nav {
            background: rgba(10, 10, 10, 0.98);
            border-bottom: 2px solid var(--neon-red);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
            width: 100%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 15px 20px;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.95rem;
            color: #ccc;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .nav-item:hover>.nav-link {
            color: white;
            background: rgba(255, 30, 30, 0.1);
        }

        .dropdown {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 100%;
            left: 0;
            background: #0f0f0f;
            min-width: 220px;
            border: 1px solid #333;
            border-top: 3px solid var(--neon-red);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
            z-index: 2000;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .nav-item:hover>.dropdown {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 10px;
            bottom: -10px;
            left: 0;
        }

        .dropdown li {
            display: block;
            width: 100%;
            border-bottom: 1px solid #222;
        }

        .dropdown li:last-child {
            border-bottom: none;
        }

        .dropdown li a {
            display: block;
            padding: 14px 20px;
            color: #bbb;
            font-size: 0.9rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .dropdown li a:hover {
            background: rgba(255, 30, 30, 0.15);
            color: var(--text-white);
            padding-left: 25px;
            border-left: 3px solid var(--neon-red);
        }

        /* MOBILE HAMBURGER MENU */
        .mobile-menu-toggle {
            display: none;
            position: fixed;
            top: 15px;
            right: 20px;
            z-index: 2000;
            background: rgba(10, 10, 10, 0.95);
            border: 2px solid var(--neon-red);
            border-radius: 24px;
            padding: 10px 15px;
            cursor: pointer;
            font-family: 'Oswald', sans-serif;
            color: white;
            font-size: 0.9rem;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hamburger-icon {
            display: inline-block;
            width: 20px;
            height: 14px;
            position: relative;
            margin-left: 8px;
            vertical-align: middle;
            margin-top: 0.25em;
        }

        .hamburger-icon span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--neon-red);
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transition: 0.25s ease-in-out;
        }

        .hamburger-icon span:nth-child(1) {
            top: 0px;
        }

        .hamburger-icon span:nth-child(2) {
            top: 6px;
        }

        .hamburger-icon span:nth-child(3) {
            top: 12px;
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
            top: 6px;
            transform: rotate(135deg);
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }

        .mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
            top: 6px;
            transform: rotate(-135deg);
        }

        .mobile-sidebar {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            border-left: 2px solid var(--neon-red);
            z-index: 1999;
            overflow-y: auto;
            transition: right 0.3s ease;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-sidebar .nav-list {
            flex-direction: column;
            padding: 80px 0 20px 0;
        }

        .mobile-sidebar .nav-item {
            width: 100%;
            border-bottom: 1px solid #333;
        }

        .mobile-sidebar .nav-link {
            padding: 18px 25px;
            font-size: 1rem;
        }

        .mobile-sidebar .dropdown {
            position: static;
            visibility: visible;
            opacity: 1;
            transform: none;
            border: none;
            border-top: 1px solid #333;
            box-shadow: none;
            background: rgba(0, 0, 0, 0.5);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-sidebar .nav-item.expanded .dropdown {
            max-height: 500px;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1998;
            transition: opacity 0.3s ease;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
        }

        /* HEADER */
        header {
            text-align: center;
            padding: 40px 20px 20px;
        }

        .logo-container {
            display: inline-block;
            width: 110px;
            height: 110px;
            margin-bottom: 10px;
            border-radius: 50%;
            border: 3px solid var(--neon-red);
            padding: 0px;
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 40px rgba(255, 30, 30, 0.4);
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .logo-container:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 0 60px rgba(255, 30, 30, 0.7);
        }

        .logo-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: white;
            text-shadow: 0 0 20px rgba(255, 30, 30, 0.5);
        }

        header h1 span {
            color: var(--neon-red);
        }

        header p {
            color: var(--text-gray);
            font-size: 0.9rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-top: 5px;
            border-top: 1px solid #444;
            display: inline-block;
            padding-top: 5px;
        }

        /* MAIN CONTENT */
        .container {
            width: 95%;
            margin: 40px auto;
            max-width: 1200px;
        }

        @media (min-width: 1921px) {
            .container {
                max-width: 1600px;
            }
        }

        @media (min-width: 2561px) {
            .container {
                max-width: 2000px;
            }
        }

        .inner-content {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            border-radius: 14px;
            padding: 40px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* TABS */
        .tabs {
            margin-top: 0;
        }

        .tab-buttons {
            display: flex;
            width: calc(100% + 80px);
            margin: -40px -40px 40px -40px;
            background: rgba(0, 0, 0, 0.6);
            border-bottom: 1px solid #333;
            border-radius: 14px 14px 0 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .tab-button {
            flex: 1;
            border: none;
            background: transparent;
            color: #888;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            font-size: 1.1rem;
            padding: 20px 10px;
            cursor: pointer;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-bottom: 3px solid transparent;
        }

        .tab-button:hover {
            color: white;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            transform: translateY(-2px);
        }

        .tab-button.active {
            color: #fff;
            background: linear-gradient(to bottom, rgba(255, 30, 30, 0.05), rgba(255, 30, 30, 0.15));
            border-bottom: 3px solid var(--neon-red);
            border-radius: 14px;
            text-shadow: 0 0 15px rgba(255, 30, 30, 0.6);
        }

        .tab-panel {
            display: none;
            opacity: 0;
            transform: translateY(10px);
        }

        .tab-panel.active {
            display: block;
            animation: tabFadeIn 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
        }

        @keyframes tabFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SECTION TITLE */
        h2.section-title {
            font-family: 'Oswald';
            color: white;
            font-size: 1.9rem;
            border-left: 4px solid var(--neon-red);
            padding-left: 16px;
            margin: 20px 0 22px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        h2.section-title:first-of-type {
            margin-top: 0;
        }

        /* ARTICLE BOXES */
        .article-box {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 25px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .article-box:hover {
            transform: translateY(-5px);
            border-color: var(--neon-red);
            background: radial-gradient(circle at 0 0, rgba(255, 30, 30, 0.15), rgba(10, 10, 10, 0.98));
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 30, 30, 0.3);
        }

        .article-box h3 {
            font-family: 'Oswald';
            font-size: 1.3rem;
            color: white;
            margin: 0 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .article-box p {
            color: #d0d0d0;
            line-height: 1.7;
            margin: 10px 0;
            font-size: 0.98rem;
        }

        .article-box .button {
            margin-top: 15px;
        }

        .announcement-box {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .announcement-box:hover {
            transform: translateY(-5px);
            border-color: var(--neon-red);
            background: radial-gradient(circle at 0 0, rgba(255, 30, 30, 0.15), rgba(10, 10, 10, 0.98));
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 30, 30, 0.3);
        }

        .announcement-box h2 {
            font-family: 'Oswald';
            font-size: 1.6rem;
            color: var(--neon-red);
            margin: 0 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .announcement-box h3 {
            font-family: 'Oswald';
            font-size: 1.2rem;
            color: white;
            margin: 20px 0 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .announcement-box p {
            color: #d0d0d0;
            line-height: 1.7;
            margin: 10px 0;
            font-size: 1rem;
        }

        .announcement-box strong {
            color: var(--neon-red);
        }

        .button-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(120deg, #161616, #101010);
            color: #f0f0f0;
            font-family: 'Oswald';
            text-transform: uppercase;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            letter-spacing: 0.2em;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(120deg, var(--neon-red), #ff6b6b);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            z-index: -1;
        }

        .button:hover {
            color: #ffffff;
            border-color: var(--neon-red);
            box-shadow: 0 0 25px rgba(255, 30, 30, 0.6), 0 5px 20px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px);
        }

        .button:hover::before {
            opacity: 0.2;
        }

        .calculator-cta {
            background: rgba(255, 30, 30, 0.1);
            border: 2px solid var(--neon-red);
            border-radius: 14px;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
        }

        .calculator-cta h3 {
            font-family: 'Oswald';
            color: var(--neon-red);
            font-size: 1.5rem;
            margin: 0 0 15px;
            text-transform: uppercase;
        }

        .calculator-cta .button {
            background: var(--neon-red);
            border-color: var(--neon-red);
            font-size: 1.1rem;
            padding: 14px 35px;
        }

        .calculator-cta .button:hover {
            background: #ff4444;
            box-shadow: 0 0 40px rgba(255, 30, 30, 0.8);
        }

        /* FOOTER */
        #footer-wrapper {
            background: #0a0a0a;
            border-top: 2px solid var(--neon-red);
            padding: 30px 0;
            margin-top: auto;
        }

        .footer-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h2 {
            font-size: 1.2rem;
            margin-top: 0;
            color: var(--text-gray);
            letter-spacing: 1px;
            font-family: 'Oswald';
        }

        ul.divided li {
            border-top: 1px solid #333;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        dl.contact dt {
            float: left;
            width: 100px;
            font-weight: bold;
            color: var(--neon-red);
        }

        dl.contact dd {
            margin-left: 110px;
            margin-bottom: 10px;
        }

        #copyright {
            text-align: center;
            margin-top: 30px;
            border-top: 1px solid #333;
            padding-top: 15px;
            color: #666;
            font-size: 0.8rem;
        }

        /* LANGUAGE FAB */
        .lang-fab-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .fab-trigger {
            width: 60px;
            height: 60px;
            background: #111;
            border: 2px solid var(--neon-red);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(255, 30, 30, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            padding: 0;
            overflow: hidden;
        }

        .fab-trigger:hover {
            transform: scale(1.15) rotate(5deg);
            background: #1a1a1a;
            box-shadow: 0 0 40px rgba(255, 30, 30, 0.7);
        }

        .flag-icon {
            width: 30px;
            height: auto;
            border-radius: 2px;
        }

        .fab-trigger .flag-icon {
            width: 32px;
        }

        .fab-menu {
            position: absolute;
            bottom: 75px;
            right: 0;
            background: rgba(15, 15, 15, 0.98);
            border: 1px solid #333;
            border-right: 3px solid var(--neon-red);
            padding: 10px 0;
            display: none;
            flex-direction: column;
            width: 170px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .fab-option {
            padding: 12px 20px;
            cursor: pointer;
            color: #ccc;
            font-family: 'Oswald';
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .fab-option:last-child {
            border-bottom: none;
        }

        .fab-option:hover {
            background: rgba(255, 30, 30, 0.15);
            color: var(--neon-red);
            padding-left: 25px;
        }

        .notranslate {
            transform: translate(0);
        }

        /* REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            filter: blur(10px);
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0) scale(1);
        }

        /* MEDIA QUERIES */
        @media (max-width: 900px) {
            #nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-sidebar {
                display: block;
            }

            header {
                padding: 60px 20px 20px;
            }

            header h1 {
                font-size: 1.8rem;
            }

            .logo-container {
                width: 90px;
                height: 90px;
            }

            .inner-content {
                padding: 20px;
            }

            /* TABS - 3 KOLUMNY OBOK SIEBIE */
            .tab-buttons {
                width: calc(100% + 40px);
                margin: -20px -20px 25px -20px;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
            }

            .tab-button {
                font-size: 0.75rem;
                padding: 14px 5px;
                letter-spacing: 1px;
            }

            .announcement-box {
                padding: 20px;
            }

            .announcement-box h2 {
                font-size: 1.3rem;
            }

            .button-group {
                flex-direction: column;
            }

            .footer-col {
                min-width: 100%;
            }

            dl.contact dt {
                width: 80px;
            }

            dl.contact dd {
                margin-left: 90px;
            }

            .lang-fab-container {
                bottom: 20px;
                right: 20px;
            }

            .fab-trigger {
                width: 50px;
                height: 50px;
            }
        }