/* PLTRAW subpages stylesheet (rebuilt from backup) */

/* --- from kalendarz.html --- */

: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;
		}

		.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);
		}

		/* 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: 0 0 30px;
			text-transform: uppercase;
			letter-spacing: 0.18em;
		}

		/* YEAR HEADER */
		.year-header {
			font-family: 'Oswald';
			font-size: 2.5rem;
			color: var(--neon-red);
			margin: 40px 0 30px;
			text-align: center;
			text-transform: uppercase;
			letter-spacing: 0.15em;
			position: relative;
			padding-bottom: 15px;
		}

		.year-header:first-of-type {
			margin-top: 0;
		}

		.year-header::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			width: 100px;
			height: 3px;
			background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
		}

		/* EVENT LIST */
		.event-list {
			list-style: none;
			padding: 0;
			margin: 0;
		}

		.event-item {
			padding: 20px 0 20px 40px;
			border-left: 2px solid rgba(255, 30, 30, 0.3);
			position: relative;
			margin-bottom: 25px;
			transition: all 0.3s ease;
		}

		.event-item::before {
			content: '✓';
			position: absolute;
			left: -11px;
			top: 20px;
			width: 20px;
			height: 20px;
			background: var(--neon-red);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 0.7rem;
			color: white;
			font-weight: bold;
		}

		.event-item:hover {
			border-left-color: var(--neon-red);
		}

		.event-date {
			font-family: 'Oswald', sans-serif;
			font-size: 1.1rem;
			color: var(--text-white);
			font-weight: 600;
			margin-bottom: 8px;
			display: block;
		}

		.event-title {
			font-family: 'Oswald', sans-serif;
			font-size: 1.2rem;
			color: var(--neon-red);
			margin: 5px 0;
			text-transform: uppercase;
			letter-spacing: 0.05em;
			line-height: 1.4;
		}

		.event-title.international::before {
			content: '🌍 ';
		}

		.event-description {
			color: #d0d0d0;
			margin: 8px 0;
			line-height: 1.6;
			font-size: 0.95rem;
		}

		.event-link {
			display: inline-block;
			margin-top: 8px;
			color: var(--neon-red);
			font-size: 0.9rem;
			text-decoration: underline;
		}

		.event-link:hover {
			color: #ff4444;
		}

		.results-link {
			display: inline-block;
			padding: 12px 25px;
			background: var(--neon-red);
			color: white;
			font-family: 'Oswald';
			text-transform: uppercase;
			border-radius: 999px;
			letter-spacing: 0.15em;
			font-size: 0.95rem;
			margin: 20px 0;
			transition: all 0.3s ease;
		}

		.results-link:hover {
			background: #ff4444;
			box-shadow: 0 0 25px rgba(255, 30, 30, 0.6);
			transform: translateY(-2px);
		}

		/* INFO SECTION */
		.info-section {
			background: rgba(12, 12, 12, 0.92);
			border-radius: 14px;
			border: 1px solid rgba(255, 255, 255, 0.09);
			padding: 40px;
			margin-top: 50px;
			backdrop-filter: blur(5px);
			-webkit-backdrop-filter: blur(5px);
		}

		.info-section h3 {
			font-family: 'Oswald';
			font-size: 1.5rem;
			color: var(--neon-red);
			margin: 0 0 20px;
			text-transform: uppercase;
			letter-spacing: 0.08em;
		}

		.info-section p {
			color: #d0d0d0;
			line-height: 1.8;
			margin-bottom: 15px;
			font-size: 1rem;
		}

		.info-section strong,
		.info-section b {
			color: var(--text-white);
		}

		/* 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;
			}

			.year-header {
				font-size: 1.8rem;
			}

			.event-item {
				padding-left: 30px;
			}

			.event-date {
				font-size: 1rem;
			}

			.event-title {
				font-size: 1.05rem;
			}

			.event-description {
				font-size: 0.9rem;
			}

			.info-section {
				padding: 25px;
			}

			.info-section h3 {
				font-size: 1.2rem;
			}

			.info-section p {
				font-size: 0.9rem;
			}

			.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;
			}
		}

/* --- from kalkulatordots.html --- */

: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;
        }

        .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);
        }

        /* 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;
        }

        /* CALCULATOR STYLES */
        .calculator-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;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .calculator-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);
        }

        .calculator-box label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--text-white);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .calculator-box input,
        .calculator-box select {
            width: 100%;
            padding: 12px;
            margin-bottom: 18px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.5);
            color: var(--text-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .calculator-box input:focus,
        .calculator-box select:focus {
            border-color: var(--neon-red);
            box-shadow: 0 0 15px rgba(255, 30, 30, 0.3);
            outline: none;
        }

        .calculator-box input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .inline-fields {
            display: flex;
            gap: 12px;
        }

        .inline-fields input {
            flex: 1;
        }

        .hidden {
            display: none;
        }

        .calc-button {
            width: 100%;
            padding: 15px;
            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: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            cursor: pointer;
            margin-top: 10px;
        }

        .calc-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;
        }

        .calc-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);
        }

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

        .result {
            margin-top: 25px;
            text-align: center;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--neon-red);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 20px;
            background: rgba(255, 30, 30, 0.1);
            border-radius: 10px;
            border: 1px solid var(--neon-red);
        }

        /* RESULTS LIST */
        .results-list {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 30px;
            margin-top: 30px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .results-list h2 {
            font-family: 'Oswald';
            font-size: 1.6rem;
            color: var(--neon-red);
            margin: 0 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
        }

        .results-list ul {
            list-style-type: none;
            padding: 0;
        }

        .results-list ul li {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #d0d0d0;
            transition: all 0.3s ease;
        }

        .results-list ul li:last-child {
            border-bottom: none;
        }

        .results-list ul li:hover {
            background: rgba(255, 30, 30, 0.05);
            padding-left: 20px;
        }

        .results-list ul li button {
            background-color: #ff4d4d;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 8px 15px;
            cursor: pointer;
            font-family: 'Oswald';
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .results-list ul li button:hover {
            background-color: #ff1a1a;
            box-shadow: 0 0 15px rgba(255, 30, 30, 0.5);
            transform: scale(1.05);
        }

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

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

        .cta-box a {
            color: var(--neon-red);
            font-weight: bold;
            text-decoration: underline;
        }

        /* SEO SECTION */
        .seo-section {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 40px;
            margin-top: 40px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .seo-section h1 {
            font-family: 'Oswald';
            font-size: 2rem;
            color: white;
            margin: 0 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
        }

        .seo-section h2 {
            font-family: 'Oswald';
            font-size: 1.5rem;
            color: var(--neon-red);
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .seo-section p {
            color: #d0d0d0;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .seo-section ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .seo-section ul li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #d0d0d0;
            line-height: 1.7;
        }

        .seo-section ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--neon-red);
            font-weight: bold;
        }

        .seo-section strong {
            color: var(--neon-red);
        }

        .call-to-action {
            font-size: 1.2rem;
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 30, 30, 0.1);
            border-radius: 10px;
            border: 1px solid var(--neon-red);
        }

        /* 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;
            }

            .inline-fields {
                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;
            }

            .seo-section {
                padding: 25px;
            }

            .seo-section h1 {
                font-size: 1.5rem;
            }

            .seo-section h2 {
                font-size: 1.2rem;
            }
        }

/* --- from kontakt.html --- */

: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;
        }

        .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);
        }

        /* 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: 0 0 30px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        /* CONTACT CARDS */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact-card {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--neon-red);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 30, 30, 0.3);
        }

        .contact-card-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .contact-card h3 {
            font-family: 'Oswald';
            font-size: 1.2rem;
            color: var(--neon-red);
            margin: 0 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .contact-info {
            color: #d0d0d0;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .contact-info strong {
            color: var(--text-white);
            display: block;
            margin-top: 0px;
            margin-bottom: 0px;
        }

        .contact-info a {
            color: var(--neon-red);
            font-weight: 500;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* INFO SECTION */
        .info-section {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 40px;
            margin-top: 40px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .info-section h2 {
            font-family: 'Oswald';
            font-size: 1.8rem;
            color: white;
            margin: 0 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .info-section h3 {
            font-family: 'Oswald';
            font-size: 1.3rem;
            color: var(--neon-red);
            margin: 30px 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .info-section p {
            color: #d0d0d0;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .info-section ul {
            list-style: none;
            padding-left: 0;
            margin: 20px 0;
        }

        .info-section ul li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #d0d0d0;
            line-height: 1.7;
        }

        .info-section ul li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--neon-red);
            font-weight: bold;
        }

        .info-section strong {
            color: var(--neon-red);
        }

        /* 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;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-card {
                padding: 15px;
            }

            .contact-card-icon {
                font-size: 1.5rem;
                margin-bottom: 8px;
            }

            .contact-card h3 {
                font-size: 1rem;
                margin: 0 0 10px;
            }

            .contact-info {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .contact-info strong {
                margin-top: 8px;
                margin-bottom: 2px;
            }

            .info-section {
                padding: 20px;
            }

            .info-section h2 {
                font-size: 1.4rem;
            }

            .info-section h3 {
                font-size: 1.1rem;
            }

            .info-section p {
                font-size: 0.9rem;
            }

            .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;
            }
        }

/* --- from rekordy.html --- */

: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;
        }

        .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);
        }

        /* 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: 0 0 30px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            text-align: left;
        }

        /* RECORD CARDS */
        .records-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .record-card {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 40px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }

        .record-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 30, 30, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .record-card:hover::before {
            opacity: 1;
        }

        .record-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-red);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(255, 30, 30, 0.4);
        }

        .record-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(255, 30, 30, 0.3));
        }

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

        .record-card p {
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0 0 25px;
            font-size: 1rem;
        }

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

        .record-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;
        }

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

        .record-button:hover::before {
            opacity: 0.3;
        }

        /* 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;
            }

            .records-grid {
                grid-template-columns: 1fr;
            }

            .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;
            }
        }

/* --- from rekordytop10.html --- */

: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);
            --success-green: #00ff00;
            --failed-red: #ff1e1e;
        }

        * {
            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;
        }

        .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: 1400px;
        }

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

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

        .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);
        }

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

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

        /* INTRO TEXT */
        .intro-text {
            background: rgba(255, 30, 30, 0.08);
            border: 1px solid rgba(255, 30, 30, 0.3);
            border-radius: 14px;
            padding: 25px;
            margin-bottom: 40px;
            line-height: 1.8;
            font-size: 1rem;
            color: #d0d0d0;
        }

        .intro-text strong {
            color: var(--neon-red);
        }

        .intro-text a {
            color: var(--neon-red);
            font-weight: bold;
            text-decoration: underline;
        }

        /* TABLE STYLES */
        .table-wrapper {
            overflow-x: auto;
            margin-bottom: 50px;
            border-radius: 14px;
            background: rgba(12, 12, 12, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 0;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1200px;
            font-family: 'Roboto', sans-serif;
        }

        table thead {
            background: linear-gradient(to bottom, rgba(255, 30, 30, 0.2), rgba(255, 30, 30, 0.1));
            border-bottom: 2px solid var(--neon-red);
        }

        table th {
            padding: 15px 10px;
            text-align: center;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: white;
            font-weight: 600;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        table th:last-child {
            border-right: none;
        }

        table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        table tbody tr:hover {
            background: rgba(255, 30, 30, 0.1);
            transform: scale(1.01);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        table td {
            padding: 12px 10px;
            text-align: center;
            font-size: 0.9rem;
            border-right: 1px solid rgba(255, 255, 255, 0.03);
        }

        table td:last-child {
            border-right: none;
        }

        /* PLACE COLUMN - MEDAL STYLE */
        .place {
            font-family: 'Oswald', sans-serif;
            font-weight: bold;
            font-size: 1.1rem;
            color: white;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .place-1 {
            color: #FFD700;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        }

        .place-2 {
            color: #C0C0C0;
            text-shadow: 0 0 15px rgba(192, 192, 192, 0.8);
        }

        .place-3 {
            color: #CD7F32;
            text-shadow: 0 0 15px rgba(205, 127, 50, 0.8);
        }

        /* ATHLETE NAME - INTERACTIVE LINK */
        .athlete-name {
            font-weight: bold;
            color: white;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

        .athlete-name a {
            color: white;
            text-decoration: none;
            display: inline-block;
            padding: 2px 0;
            position: relative;
        }

        .athlete-name a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-red);
            transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        }

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

        .athlete-name a:hover::after {
            width: 100%;
        }

        .athlete-name.no-link {
            color: #999;
            font-style: italic;
        }

        /* TEAM NAME */
        .team-name {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* DATE */
        .date {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        /* WEIGHT */
        .weight {
            color: white;
            font-weight: 600;
        }

        /* LIFT RESULTS */
        .success {
            color: var(--success-green);
            font-weight: 600;
        }

        .failed {
            color: var(--failed-red);
            font-weight: 600;
        }

        /* TOTAL & DOTS */
        .total,
        .dots {
            color: white;
            font-weight: bold;
            font-size: 1rem;
            text-shadow: 0 0 10px rgba(255, 30, 30, 0.3);
        }

        /* 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;
            }

            h2.section-title {
                font-size: 1.4rem;
            }

            .table-wrapper {
                margin-left: -20px;
                margin-right: -20px;
                border-radius: 0;
            }

            table {
                font-size: 0.85rem;
            }

            table th {
                padding: 12px 8px;
                font-size: 0.75rem;
            }

            table td {
                padding: 10px 8px;
            }

            .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;
            }
        }

/* --- from trenerzy.html --- */

/* Stylizacja ogólna */
	

		h1 {
			text-align: center;
			color: #c0392b;
			margin-bottom: 30px;
		}

		.trenerzy-content h3 {
			background: #f8f9fa;
			padding: 15px;
			margin-top: 35px;
			border-left: 5px solid #c0392b;
			color: #2c3e50;
		}

		.form-group {
			margin-bottom: 20px;
		}

		label.main-label {
			display: block;
			margin-bottom: 8px;
			font-weight: 700;
			font-size: 14px;
			color: #2c3e50;
		}

		.sub-label {
			font-size: 0.85em;
			color: #7f8c8d;
			font-weight: normal;
			font-style: italic;
			margin-left: 5px;
		}

		input,
		select {
			width: 100%;
			padding: 12px;
			border: 2px solid #dfe6e9;
			border-radius: 6px;
			font-size: 16px;
			box-sizing: border-box;
			transition: 0.3s;
		}

		input:focus,
		select:focus {
			border-color: #c0392b;
			outline: none;
		}

		input:required,
		select:required {
			border-left: 4px solid #c0392b;
		}

		/* Kafelki (Checkbox Cards) */
		.checkbox-card {
			display: flex;
			align-items: center;
			padding: 15px;
			background: #fff;
			border: 2px solid #dfe6e9;
			border-radius: 8px;
			margin-bottom: 10px;
			cursor: pointer;
			transition: 0.2s;
			position: relative;
		}

		.checkbox-card:hover {
			background: #fdfdfd;
			border-color: #aaa;
		}

		.checkbox-card.checked {
			border-color: #27ae60;
			background: #e8f8f5;
		}

		/* Ukryty checkbox, stylowany przez .checkbox-square */
		.checkbox-card input[type="checkbox"] {
			display: none;
		}

		/* Własny kwadracik "ptaszka" */
		.checkbox-square {
			width: 24px;
			height: 24px;
			border: 2px solid #bdc3c7;
			border-radius: 4px;
			margin-right: 15px;
			display: flex;
			align-items: center;
			justify-content: center;
			background: white;
			transition: 0.2s;
			flex-shrink: 0;
		}

		/* Stan zaznaczony */
		.checkbox-card.checked .checkbox-square {
			background-color: #27ae60;
			border-color: #27ae60;
		}

		/* Ikonka ptaszka (SVG) */
		.checkbox-square svg {
			fill: none;
			stroke: white;
			stroke-width: 3px;
			width: 16px;
			height: 16px;
			display: none;
		}

		.checkbox-card.checked .checkbox-square svg {
			display: block;
		}

		.checkbox-content b {
			display: block;
			font-size: 15px;
		}

		.checkbox-content span {
			font-size: 13px;
			color: #7f8c8d;
		}

		.hidden {
			display: none !important;
		}

		/* Footer */
		.price-sticky {
			position: sticky;
			bottom: 0;
			background: #2c3e50;
			color: white;
			padding: 20px;
			text-align: center;
			font-size: 1.4em;
			font-weight: bold;
			margin: 40px -40px -40px -40px;
			border-bottom-left-radius: 10px;
			border-bottom-right-radius: 10px;
			box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
			z-index: 999;
		}

		button.submit-btn {
			width: 100%;
			margin-top: 10px;
			padding: 15px;
			background: #e74c3c;
			color: white;
			border: none;
			font-size: 18px;
			font-weight: bold;
			cursor: pointer;
			border-radius: 6px;
		}

		button.submit-btn:hover {
			background: #c0392b;
		}

/* --- from wspolpraca.html --- */

: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;
        }

        .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);
        }

        /* 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: 0 0 30px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        /* HERO SECTION */
        .hero-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-section h2 {
            font-family: 'Oswald';
            font-size: 2.2rem;
            color: white;
            margin: 0 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-section p {
            color: #d0d0d0;
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        /* STATS SECTION */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .stat-card {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--neon-red);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 30, 30, 0.3);
        }

        .stat-number {
            font-family: 'Oswald';
            font-size: 3rem;
            color: var(--neon-red);
            font-weight: bold;
            margin: 0;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* SPONSOR PACKAGES */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

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

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), #ff6b6b);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .package-card:hover::before {
            opacity: 1;
        }

        .package-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-red);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 30, 30, 0.4);
        }

        .package-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .package-title {
            font-family: 'Oswald';
            font-size: 1.6rem;
            color: var(--neon-red);
            margin: 0 0 25px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .package-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .package-features li {
            padding: 10px 0 10px 25px;
            position: relative;
            color: #d0d0d0;
            font-size: 0.9rem;
            line-height: 1.6;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--neon-red);
            font-weight: bold;
        }

        .package-features li.premium {
            color: white;
            font-weight: 500;
            font-style: italic;
        }

        .package-features li.premium::before {
            content: '★';
        }

        /* GALLERY */
        .gallery-section {
            margin: 50px 0;
        }

        .gallery-year {
            font-family: 'Oswald';
            font-size: 1.8rem;
            color: var(--neon-red);
            margin: 40px 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            border-color: var(--neon-red);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 30, 30, 0.3);
            z-index: 10;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* CTA SECTION */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 30, 30, 0.1), rgba(255, 30, 30, 0.05));
            border: 2px solid var(--neon-red);
            border-radius: 14px;
            padding: 50px 40px;
            text-align: center;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 30, 30, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .cta-section h3 {
            font-family: 'Oswald';
            font-size: 2rem;
            color: white;
            margin: 0 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            color: #d0d0d0;
            font-size: 1.1rem;
            margin: 0 0 30px;
            position: relative;
            z-index: 1;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: var(--neon-red);
            color: white;
            font-family: 'Oswald';
            text-transform: uppercase;
            border-radius: 999px;
            letter-spacing: 0.2em;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(255, 30, 30, 0.4);
        }

        .cta-button:hover {
            background: #ff4444;
            box-shadow: 0 15px 40px rgba(255, 30, 30, 0.7);
            transform: translateY(-3px);
        }

        .email-highlight {
            display: block;
            font-family: 'Oswald';
            font-size: 1.3rem;
            color: var(--neon-red);
            margin-top: 15px;
            letter-spacing: 0.05em;
        }

        /* 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: 15px 20px 15px;
            }

            header h1 {
                font-size: 1.3rem;
                margin: 8px 0 0;
            }

            header p {
                font-size: 0.7rem;
                letter-spacing: 2px;
                margin-top: 3px;
                padding-top: 3px;
            }

            .logo-container {
                width: 60px;
                height: 60px;
                margin-bottom: 5px;
            }

            .container {
                margin: 10px auto;
            }

            .inner-content {
                padding: 15px;
            }

            .section-title {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .hero-section {
                margin-bottom: 25px;
            }

            .hero-section h2 {
                font-size: 1.4rem;
                margin-bottom: 12px;
            }

            .hero-section p {
                font-size: 0.95rem;
                margin-bottom: 10px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin: 25px 0;
            }

            .stat-card {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 2.3rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
                margin: 25px 0;
                gap: 20px;
            }

            .package-card {
                padding: 20px 15px;
            }

            .package-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .package-title {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .package-features li {
                padding: 8px 0 8px 22px;
                font-size: 0.85rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-bottom: 25px;
            }

            .gallery-section {
                margin: 30px 0;
            }

            .gallery-year {
                font-size: 1.4rem;
                margin: 25px 0 15px;
            }

            .cta-section {
                padding: 25px 15px;
                margin: 30px 0;
            }

            .cta-section h3 {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }

            .cta-section p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 0.95rem;
            }

            .email-highlight {
                font-size: 1.1rem;
                margin-top: 12px;
            }

            /* Info box mobile */
            .inner-content>div[style*="border-left: 4px solid"] {
                margin: 20px 0 !important;
                padding: 15px !important;
            }

            .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;
            }
        }

/* --- from wyniki.html --- */

: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;
        }

        .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);
        }

        /* 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: 0 0 30px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
        }

        /* RESULT ARTICLE */
        .result-article {
            background: rgba(12, 12, 12, 0.92);
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 25px;
            margin-bottom: 30px;
            display: flex;
            gap: 25px;
            align-items: flex-start;
            transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .result-article: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);
        }

        .result-image {
            flex-shrink: 0;
            width: 200px;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .result-article:hover .result-image {
            border-color: var(--neon-red);
            box-shadow: 0 0 20px rgba(255, 30, 30, 0.4);
        }

        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .result-article:hover .result-image img {
            transform: scale(1.05);
        }

        .result-content {
            flex: 1;
        }

        .result-date {
            display: inline-block;
            background: var(--neon-red);
            color: white;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .result-content h3 {
            font-family: 'Oswald';
            font-size: 1.5rem;
            color: white;
            margin: 0 0 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .result-content h4 {
            font-family: 'Oswald';
            font-size: 1.1rem;
            color: var(--neon-red);
            margin: 8px 0;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .result-content p {
            color: #d0d0d0;
            line-height: 1.7;
            margin: 8px 0;
            font-size: 0.95rem;
        }

        .result-content strong,
        .result-content b {
            color: var(--text-white);
        }

        .result-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }

        .result-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            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.15em;
            font-size: 0.85rem;
            transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .result-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;
        }

        .result-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(-2px);
        }

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

        /* 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;
            }

            .result-article {
                flex-direction: column;
            }

            .result-image {
                width: 100%;
                height: 250px;
            }

            .result-links {
                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;
            }
        }
@media (max-width: 768px) {
    .hero-compact.hero-new, #bg-video { transform: none !important; }
    .box.excerpt, .calendar-item, .why-card, .hero-button, .button.medium, .cta-button { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    #bg-video { display: none !important; }
}


/* === CEC2026 full-page banner background (subpages) — match posty/CEC2026.html === */
html body {
    background-image: url('/images/2026CEC/baner.webp') !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: var(--bg-color, #050505) !important;
}

html body::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.85)
    ) !important;
}
