html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #000;
	font-family: "Montserrat", sans-serif;
}
.webgl {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.ui-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
	box-sizing: border-box;
	color: #fff;
}

.pointer-auto {
	pointer-events: auto;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	font-family: "Oswald", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.logo span {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 1px;
	opacity: 0.8;
}
.logo img {
	width: 100px;
}
nav ul {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-right a {
	color: #fff;
	text-decoration: none;
}
.footer-right a:hover {
	color: burlywood;
	opacity: 1;
}
.footer-right a.active {
	opacity: 1;
	color: #ff0055;
	text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}
nav a {
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
	transition: opacity 0.3s;
	position: relative;
}
nav a:hover {
	opacity: 1;
}
nav a.active {
	opacity: 1;
	color: #ff0055;
	text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}
nav a.active::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 4px;
	background: #ff0055;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 0, 85, 0.8);
}

.search-icon {
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.search-icon:hover {
	opacity: 1;
	color: #ff0055;
}
.search-icon svg {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

.hero-section {
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 5%;
}

.hero-subtitle {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 15px;
	opacity: 0.9;
	font-weight: 500;
}
.hero-subtitle::before {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #ff0055;
}

h1.hero-title {
	font-size: 10rem;
	margin: 10px 0;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: -2px;
	color: #fff;
	background: none;
	-webkit-text-fill-color: initial;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-desc {
	max-width: 450px;
	font-size: 1rem;
	line-height: 1.7;
	opacity: 0.9;
	margin-top: 20px;
	border-left: 0;
	padding-left: 0;
	font-weight: 300;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 20px;
}
.social-label {
	margin-right: 10px;
	font-size: 0.9rem;
	opacity: 0.8;
}
.social-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: #fff;
	text-decoration: none;
	backdrop-filter: blur(4px);
}
.social-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.social-icon:hover {
	background: #ff0055;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
	border-color: transparent;
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 40px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	opacity: 0.8;
}
.scroll-arrow {
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-arrow::after {
	content: "↓";
	font-weight: bold;
}

.footer-right {
	position: relative;
	font-size: 1.5rem;
	font-family: "Oswald", sans-serif;
	letter-spacing: 8px;
	text-transform: uppercase;
	opacity: 0.8;
	display: flex;
	align-items: center;
	z-index: 100;
}
.footer-right::before {
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #fff;
	margin-right: 20px;
}

.sidebar-pagination {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.dot {
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	opacity: 0.3;
	cursor: pointer;
	transition: all 0.3s ease;
}
.dot.active {
	opacity: 1;
	background: #ff0055;
	transform: scale(1.2);
	box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}
.dot.active::after {
	display: none;
}

.hero-desc > * {
	pointer-events: auto;
}
.hero-desc a {
	color: white;
}
@media (max-width: 768px) {
	.ui-layer {
		padding: 24px;
	}

	header {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		position: relative;
	}

	.logo {
		margin-bottom: 5px;
		text-align: center;
	}

	.logo span {
		display: inline-block;
	}

	nav ul {
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav a {
		font-size: 0.75rem;
		letter-spacing: 2px;
	}

	.search-icon {
		position: absolute;
		top: 5px;
		right: 0;
	}

	.hero-section {
		padding-left: 0;
		align-items: center;
		text-align: center;
		margin-top: 40px;
		justify-content: flex-start;
	}

	.hero-subtitle {
		justify-content: center;
		font-size: 0.8rem;
		margin-bottom: 10px;
	}

	.hero-subtitle::before {
		display: none; /* Remove the side line on mobile */
	}

	h1.hero-title {
		font-size: clamp(3rem, 13vw, 5rem);
		line-height: 0.9;
		margin-bottom: 20px;
	}

	.hero-desc {
		font-size: 0.9rem;
		max-width: 90%;
		border: none;
		margin-top: 10px;
		padding: 0;
		line-height: 1.6;
	}

	footer {
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		padding-bottom: 30px;
		gap: 30px;
	}

	.social-links {
		margin-bottom: 0;
	}
/*
	.footer-right {
		display: none;
	}
*/
	.sidebar-pagination {
		display: none;
	}

	.scroll-indicator {
		position: relative;
		bottom: auto;
		left: auto;
		transform: none;
		margin-top: 10px;
	}
}