		*,
		*::before,
		*::after {
			margin: 0;
			padding: 0;
			font-family: 'SUIT', sans-serif;
			box-sizing: border-box;
		}

		html body {
			font-size: 18px;
			word-break: keep-all;
			background-color: #030304;
			color: #f5f5f5;
			overflow-x: hidden;
		}

		.container-animate {
			height: 100%;
			width: 100%;
			position: fixed;
			visibility: hidden;
			background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%);
			backdrop-filter: blur(7px);
		}

		.container {
			display: grid;
			grid-template-columns: repeat(5, minmax(0, 1fr));
			grid-gap: 10px;
			width: 100%;
			padding: 1.5rem 2vw 3.5rem;
		}

		h1 {
			position: relative;
			font-size: 1.4rem;
			line-height: 1.5;
			font-weight: 500;
		}

		h4 {
			font-size: 1rem;
			line-height: 1.6;
			grid-area: right;
			position: relative;
			color: white;
			padding: 0;
		}

		h6 {
			visibility: hidden;
			position: fixed;
			text-align: center;
			top: 50%;
			left: 50%;
			font-size: 25px;
			font-weight: 900;
			transform: translate(-50%, -50%);
		}

		.image-wrapper {
			width: 100%;
			padding-bottom: 100%;
			position: relative;
			float: left;
			box-sizing: border-box;
			overflow: hidden;
			background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.16), transparent 55%) #15161d;
			border-radius: 8px;
			border: 1px solid rgba(255, 255, 255, 0.05);
			transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out;
		}

		.image-wrapper:hover {
			background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.26), transparent 55%) #181922;
			border-color: rgba(255, 255, 255, 0.5);
			box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
			transform: translateY(-3px);
		}

		.image-wrapper-animate {
			width: 100%;
			height: 100%;
			position: absolute;
			inset: 0;
			transition: transform 0.22s ease-out;
		}

		.image-wrapper:hover .image-wrapper-animate {
			transform: scale(1.08);
		}

		.image {
			width: 100%;
			height: 100%;
			object-fit: cover;
			visibility: hidden;
			position: absolute;
			inset: 0;
			opacity: 0;
		}

		.visible {
			visibility: visible;
			opacity: 1;
		}

		.about {
			visibility: hidden;
			position: fixed;
			inset: 0;
			z-index: 1000;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 2rem;
			box-sizing: border-box;
		}

		.about__backdrop {
			position: absolute;
			inset: 0;
			background: rgba(3, 4, 6, 0.82);
			backdrop-filter: blur(8px);
			cursor: pointer;
		}

		.about__panel {
			position: relative;
			z-index: 1;
			width: 100%;
			max-width: 520px;
			max-height: 85vh;
			overflow: auto;
			background: #0c0d10;
			border: 1px solid rgba(255, 255, 255, 0.12);
			border-radius: 12px;
			box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
			cursor: default;
		}

		.about__header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 1rem;
			padding: 1.5rem 1.5rem 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.08);
			padding-bottom: 1.25rem;
		}

		.about__title {
			font-size: 1rem;
			font-weight: 600;
			letter-spacing: 0.02em;
			color: #f2f2f2;
			margin: 0;
		}

		.about__close {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 36px;
			height: 36px;
			padding: 0;
			border: none;
			background: rgba(255, 255, 255, 0.06);
			border-radius: 8px;
			color: rgba(255, 255, 255, 0.8);
			cursor: pointer;
			transition: background 0.15s ease, color 0.15s ease;
		}

		.about__close:hover {
			background: rgba(255, 255, 255, 0.12);
			color: #fff;
		}

		.about__body {
			padding: 1.5rem 1.5rem 1.75rem;
			font-size: 0.9rem;
			line-height: 1.75;
			color: rgba(255, 255, 255, 0.88);
		}

		.about__lead {
			margin: 0 0 1rem;
			font-weight: 500;
			color: #e8e8e8;
		}

		.about__p {
			margin: 0 0 1rem;
			font-weight: 400;
		}

		.about__p:last-of-type {
			margin-bottom: 0;
		}

		.about__p--en {
			margin-top: 1.25rem;
			padding-top: 1.25rem;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
			color: rgba(255, 255, 255, 0.72);
			font-size: 0.85rem;
		}

		.about__credits {
			margin: 1.5rem 0 0;
			padding-top: 1.25rem;
			border-top: 1px solid rgba(255, 255, 255, 0.08);
			font-size: 0.8rem;
			color: rgba(255, 255, 255, 0.55);
			letter-spacing: 0.02em;
		}

		.navigation {
			padding: 2.25rem 2.5rem 1.8rem;
			display: grid;
			grid-template-columns: minmax(0, 3fr) minmax(0, 1.2fr);
			column-gap: 2.5rem;
			color: white;
			align-items: flex-start;
			background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%) #050608;
			border-bottom: 1px solid rgba(255, 255, 255, 0.16);
		}

		.nav-main {
			display: flex;
			flex-direction: column;
			gap: 0.75rem;
		}

		.nav-eyebrow {
			font-size: 0.7rem;
			letter-spacing: 0.18em;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.6);
		}

		.nav-subtitle {
			font-size: 0.9rem;
			line-height: 1.6;
			color: rgba(255, 255, 255, 0.82);
			max-width: 32rem;
		}

		.nav-about-button {
			font-size: 0.8rem;
			letter-spacing: 0.08em;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.85);
			background: rgba(0, 0, 0, 0.4);
			border: 1px solid rgba(255, 255, 255, 0.4);
			border-radius: 999px;
			padding: 0.5rem 1.3rem;
			cursor: pointer;
			transition: background 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
		}

		.nav-about-button:hover {
			background: rgba(255, 255, 255, 0.08);
			border-color: rgba(255, 255, 255, 0.7);
			transform: translateY(-1px);
		}

		.nav-right {
			display: flex;
			flex-direction: column;
			align-items: flex-end;
			justify-content: flex-start;
			gap: 1.25rem;
		}

		.nav-right .nav-logo img {
			width: 100%;
			max-width: 160px;
			display: block;
		}

		.nav-right .nav-logo {
			line-height: 0;
		}

		img {
			filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
		}

		#filter-select {
			padding: 0.35rem 0.6rem;
			margin: 0;
			height: auto;
			font-size: 0.85rem;
			width: 100%;
			margin-bottom: 0.6rem;
			border: 1px solid rgba(255, 255, 255, 0.25);
			border-radius: 999px;
			color: white;
			background: rgba(0, 0, 0, 0.85);
		}

		.outbox {
			font-family: 'SUIT', sans-serif;
			font-weight: 300;
			font-size: 0.65rem;
			padding-top: 1.2rem;
			pointer-events: none;
			animation: blink 1.2s infinite;
			color: rgba(0, 0, 0, 0.55);
		}

		@keyframes blink {
			50% {
				opacity: 0;
			}
		}

		@media only screen and (max-width: 768px) {
			.about {
				padding: 1rem;
			}
			.about__panel {
				max-height: 88vh;
			}
			.about__body {
				font-size: 0.85rem;
				line-height: 1.7;
				padding: 1.25rem 1.25rem 1.5rem;
			}
			.about__header {
				padding: 1.25rem 1.25rem 0;
				padding-bottom: 1rem;
			}
			h1{
				font-size: 1rem;
			}

			h2{
				padding-top: 4px;
				font-size: 1.1rem;
				font-weight: 500;
			}
			.nav-right .nav-logo img {
			width: 100%;
		}
			.container {
				grid-template-columns: repeat(3, minmax(0, 1fr));
				padding-inline: 1.25rem;
			}
		}
		
		@media only screen and (min-width: 769px) and (max-width: 992px) {
			.nav-right .nav-logo img {
				width: 80%;
			}
		h1{
			font-size: 18px;
		}
			.container {
				grid-template-columns: repeat(4, 1fr);
			}
		}
		
		@media only screen and (min-width: 993px) and (max-width: 1200px) {
			h1{
				font-size: 23px;
			}
		}		

		.bmx-footer {
			border-top: 1px solid rgba(255, 255, 255, 0.18);
			margin-top: 4rem;
			padding: 2.5rem 2rem 3rem;
			background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%) #050608;
			color: rgba(255, 255, 255, 0.85);
		}

		.bmx-footer__inner {
			max-width: 960px;
			margin: 0 auto;
		}

		.bmx-footer__title {
			font-size: 0.85rem;
			letter-spacing: 0.12em;
			text-transform: uppercase;
			color: rgba(255, 255, 255, 0.7);
			margin-bottom: 0.75rem;
		}

		.bmx-footer__text {
			font-size: 0.9rem;
			line-height: 1.7;
			color: rgba(255, 255, 255, 0.9);
			max-width: 52rem;
		}

		.bmx-footer__text + .bmx-footer__text {
			margin-top: 0.9rem;
		}

		.bmx-footer__text--en {
			font-size: 0.85rem;
			color: rgba(255, 255, 255, 0.78);
		}