body {
	margin: 0;
	height: 100vh;

	background: #07070a;

	font-family: "Poppins", sans-serif;

	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 12vw;
}

#cursor {
	position: fixed;
	width: 32px;
	height: 32px;
	pointer-events: none;
	z-index: 99999;
}

* {
	cursor: none !important;
	user-select: none;
	-webkit-user-select: none;
}

.cyber-column {
	position: relative;
	container-type: flex;
	flex-direction: column;

	width: 25vw;
	min-width: 100px;
	max-width: 480px;

	height: 100vh;

	background: rgba(255, 30, 30, 0.05);

	backdrop-filter: blur(10px);

	border: 1px solid rgba(255, 90, 90, 0.45);

	box-shadow:
		0 0 30px rgba(255, 60, 60, 0.35),
		0 0 80px rgba(255, 40, 40, 0.2),
		0 0 0 1px rgba(255, 120, 120, 0.25),
		inset 0 0 50px rgba(255, 40, 40, 0.1);

	overflow: visible;

	border-radius: 0px;

	justify-content: center;
}

.buttons-container {
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translateX(-50%);

	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2vh;
	padding-left: 36px;
	padding-right: 36px;
	height: 30vh;

	z-index: 10;
}

.cyber-column::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;

	background:
		radial-gradient(
			ellipse at left center,
			rgba(255, 140, 140, 0.15),
			transparent 75%
		),
		radial-gradient(
			ellipse at center center,
			rgba(255, 90, 90, 0.1),
			transparent 80%
		),
		radial-gradient(
			ellipse at right center,
			rgba(255, 50, 50, 0.04),
			transparent 85%
		),
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.55) 0%,
			rgba(255, 70, 70, 0.05) 30%,
			rgba(255, 90, 90, 0.08) 50%,
			rgba(255, 70, 70, 0.05) 70%,
			rgba(0, 0, 0, 0.55) 100%
		);

	filter: blur(7px);

	opacity: 0.6;

	animation: energyFieldPulse 7s infinite ease-in-out;
}

.line-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;

	background: repeating-linear-gradient(
		to bottom,
		rgba(255, 90, 90, 0.6) 0px,
		rgba(255, 90, 90, 0.6) 1px,
		transparent 2px,
		transparent 4px
	);

	opacity: 1;

	-webkit-mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 18%,
		rgba(0, 0, 0, 0.85) 40%,
		rgba(0, 0, 0, 0.45) 70%,
		rgba(0, 0, 0, 0) 100%
	);

	mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 18%,
		rgba(0, 0, 0, 0.85) 40%,
		rgba(0, 0, 0, 0.45) 70%,
		rgba(0, 0, 0, 0) 100%
	);

	filter: drop-shadow(0 0 3px rgba(255, 70, 70, 0.55))
		drop-shadow(0 0 10px rgba(255, 60, 60, 0.35))
		drop-shadow(0 0 18px rgba(255, 40, 40, 0.18));

	animation: flicker 6s infinite alternate;
}

@keyframes flicker {
	0% {
		opacity: 0.3;
	}
	40% {
		opacity: 0.45;
	}
	70% {
		opacity: 0.38;
	}
	100% {
		opacity: 0.42;
	}
}

@keyframes energyFieldPulse {
	0% {
		transform: scale(1) translateX(0px);
		opacity: 0.75;
	}
	50% {
		transform: scale(1.02) translateX(1px);
		opacity: 0.95;
	}
	100% {
		transform: scale(1) translateX(-1px);
		opacity: 0.85;
	}
}

.bg-camera {
	position: fixed;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: #07070a;
}

.bg-camera video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;

	filter: blur(6px) brightness(0.35) contrast(1.1) saturate(1.2);

	transform: scale(1.12);
	will-change: transform;

	animation: breathe 10s ease-in-out infinite;
}

.bg-camera::after {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(
		circle at center,
		transparent 35%,
		rgba(0, 0, 0, 0.35) 65%,
		rgba(0, 0, 0, 0.85) 100%
	);

	pointer-events: none;
}

.bg-camera::before {
	content: "";
	position: absolute;
	inset: 0;

	background: radial-gradient(
		circle at 30% 40%,
		rgba(255, 40, 40, 0.08),
		transparent 60%
	);

	mix-blend-mode: screen;
	opacity: 0.6;
	pointer-events: none;
}

@keyframes breathe {
	0% {
		transform: scale(1.05) translate(0px, 0px);
	}
	25% {
		transform: scale(1.07) translate(-6px, 4px);
	}
	50% {
		transform: scale(1.06) translate(4px, -5px);
	}
	75% {
		transform: scale(1.08) translate(-3px, -3px);
	}
	100% {
		transform: scale(1.05) translate(0px, 0px);
	}
}

@font-face {
	font-family: "Cyberpunk";
	src: url("../fonts/Cyberpunk.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

.cyberpunk-text {
	position: relative;
	z-index: 2;

	font-family: "Cyberpunk", sans-serif;
	font-size: 80px;
	letter-spacing: -10px;

	color: #f8ef02;

	white-space: nowrap;

	text-shadow:
		0 0 2px rgba(248, 239, 2, 0.7),
		0 0 6px rgba(248, 239, 2, 0.25);
}

.cyberpunk-text-wrapper {
	position: absolute;
	margin-bottom: 200px;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	z-index: 20;
}

.cyberpunk-shadow {
	position: absolute;
	top: 0;
	left: 0;

	font-family: "Cyberpunk", sans-serif;
	font-size: 88px;
	letter-spacing: -10px;

	color: rgba(0, 0, 0, 0.22);

	z-index: 1;
	pointer-events: none;

	white-space: nowrap;
}

.cyberpunk-shadow .leo {
	display: inline-block;
	transform: translateX(-36px);
	text-shadow: -14px 0 18px rgba(0, 0, 0, 0.18);
}

.cyberpunk-shadow .tang {
	display: inline-block;
	transform: translateX(18px);
	text-shadow: 14px 0 18px rgba(0, 0, 0, 0.18);
}

.cyberpunk-title {
	height: auto;

	display: block;
	z-index: 2;
	filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.25))
		drop-shadow(0 0 18px rgba(0, 255, 255, 0.15));
}

.title-wrapper {
	position: relative;
	display: inline-block;
	pointer-events: none;
}

.title-main {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 600px;
	height: auto;
	filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.2))
		drop-shadow(0 0 18px rgba(0, 255, 255, 0.1));
}

.title-shadow {
	position: absolute;
	top: 6px;
	left: 6px;

	width: 100%;
	max-width: 600px;
	height: auto;

	z-index: 1;

	opacity: 0.35;
	filter: brightness(0) blur(0.5px);
}

html,
body {
	height: 100%;
	overflow: hidden;
}

.cyber-button {
	width: 100%;
	height: 7vh;
	max-height: 60px;
	cursor: pointer;
	display: block;
	overflow: visible;
	min-width: 100%;
}

.btn-shape {
	fill: transparent;
	stroke: transparent;
	width: 100%;
	stroke-width: 1;
	transition: all 0.25s ease;
}

.cyber-button text {
	font-family: "Oxanium", sans-serif;
	/* font-size: 24px; */
	fill: rgb(255, 70, 70);
	letter-spacing: 0px;
	text-transform: uppercase;
}

.cyber-button:hover .btn-shape {
	fill: rgba(10, 10, 14, 0.65);
	stroke: rgba(0, 255, 255, 0.9);
}

.cyber-button:hover text {
	fill: rgb(0, 255, 255);
}

.back-cyber-button {
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: block;
	overflow: visible;
	min-width: 100%;
}

.back-cyber-button text {
	font-family: "Oxanium", sans-serif;
	font-size: 20px;
	fill: rgb(0, 255, 255);
	letter-spacing: 0px;
	text-transform: uppercase;

	filter: drop-shadow(0 0 2px rgba(0, 255, 255, 0.35))
		drop-shadow(0 0 6px rgba(0, 255, 255, 0.15));
}

.btn-shape-back {
	stroke: rgba(0, 255, 255, 0.9);
	fill: rgba(10, 10, 14, 0.25);
}

.back-cyber-button:hover .btn-shape-back {
	fill: rgba(10, 10, 14, 0.65);
}

.bottom-left-text {
	position: absolute;
	bottom: 9%;
	left: 4%;

	font-family: "Oxanium", sans-serif;
	font-size: 24px;
	color: rgb(255, 70, 70);
	text-shadow: 0 0 6px rgba(255, 70, 70, 0.25);
}

.bg-red-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;

	pointer-events: none;
}

.bg-red-overlay::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		radial-gradient(
			ellipse at 50% 18%,
			rgba(255, 40, 40, 0.22),
			transparent 80%
		),
		radial-gradient(
			ellipse at 15% 25%,
			rgba(255, 40, 40, 0.14),
			transparent 85%
		),
		radial-gradient(
			ellipse at 85% 25%,
			rgba(255, 40, 40, 0.14),
			transparent 85%
		),
		radial-gradient(ellipse at 50% 0%, rgba(255, 40, 40, 0.08), transparent 90%);

	mix-blend-mode: screen;
	opacity: 1;
}

.bg-red-overlay::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.02) 0%,
		rgba(0, 0, 0, 0.15) 35%,
		rgba(0, 0, 0, 0.45) 70%,
		rgba(0, 0, 0, 0.75) 100%
	);

	mix-blend-mode: multiply;
}

.bg-resume-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;

	pointer-events: none;
}

.bg-resume-overlay::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		radial-gradient(
			ellipse at 50% 18%,
			rgba(255, 40, 40, 0.14),
			transparent 80%
		),
		radial-gradient(
			ellipse at 15% 25%,
			rgba(255, 40, 40, 0.08),
			transparent 85%
		),
		radial-gradient(
			ellipse at 85% 25%,
			rgba(255, 40, 40, 0.08),
			transparent 85%
		),
		radial-gradient(ellipse at 50% 0%, rgba(255, 40, 40, 0.05), transparent 90%);

	mix-blend-mode: screen;
	opacity: 0.85;
}

.bg-resume-overlay::after {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.02) 0%,
		rgba(0, 0, 0, 0.15) 35%,
		rgba(0, 0, 0, 0.45) 70%,
		rgba(0, 0, 0, 0.75) 100%
	);

	mix-blend-mode: multiply;
}

.top-hud {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6vh;
	min-height: 60px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 0 2.5%;
	z-index: 50;

	font-family: "Oxanium", sans-serif;
	color: rgb(255, 70, 70);
}

.hud-bar {
	position: absolute;
	bottom: 0;
	left: 2.5%;
	width: 95%;
	height: 1px;

	background: rgba(255, 70, 70, 0.8);
	box-shadow: 0 0 8px rgba(255, 70, 70, 0.4);
}

.hud-title {
	position: static;
	transform: none;
	font-size: 22px;
	letter-spacing: 4px;

	text-transform: uppercase;
	text-shadow: 0 0 6px rgba(255, 70, 70, 0.25);
}

.back-button {
	position: static;
	width: 110px;
	overflow: visible;
	height: 3.5vh;
	min-height: 40px;
}

.download-button {
	position: static;
	width: 170px;
	height: 3.5vh;
	min-height: 40px;
}

.page-content {
	position: absolute;
	top: 10%;
	left: 0;
	width: 100%;

	display: flex;
	padding: 40px 10%;
	gap: 5vw;
	box-sizing: border-box;
}

.left-panel::-webkit-scrollbar {
	width: 6px;
}

.left-panel::-webkit-scrollbar-track {
	background: transparent;
}

.left-panel::-webkit-scrollbar-thumb {
	background: rgb(255, 220, 0);
	border-radius: 0;
}

.left-panel::-webkit-scrollbar-thumb:hover {
	background: rgb(255, 235, 60);
}

.left-panel {
	margin-top: 90px;
	width: 40%;
	display: flex;
	flex-direction: column;
	padding-right: 4px;
	height: 60vh;
	overflow-y: auto;
	overflow-x: hidden;
	gap: 10px;
}

.list-item {
	width: 100%;
	height: 80px;
	cursor: pointer;
	overflow: visible;
}

.list-item path {
	fill: rgba(45, 38, 12, 0.65);
	stroke: rgba(255, 229, 105, 0.9);
	stroke-width: 1;
	transition: all 0.2s ease;
}

/* .list-item text {
	font-family: "Oxanium", sans-serif;
	font-size: 20px;
	fill: rgb(0, 255, 255);
	font-weight: 500;
} */

.project-title {
	font-family: "Oxanium", sans-serif;
	font-size: 20px;
	fill: rgb(0, 255, 255);
	font-weight: 500;
}

.list-item:hover path {
	fill: rgba(10, 10, 14, 0.75);
}

.project-item-wrapper {
	width: 100%;
	height: 80px;
	overflow: visible;
}

.project-subtext {
	font-family: "Oxanium", sans-serif;
	font-size: 16px;
	font-weight: 500;
	fill: rgba(180, 180, 180, 0.75);
	letter-spacing: 0.5px;
	/* pointer-events: none; */

	/* width: calc(100% - 64px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis; */
}

.right-panel {
	width: 60%;
	height: 80vh !important;
	display: flex;
	flex-direction: column;
}

.right-title-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.right-title {
	font-family: "Oxanium", sans-serif;
	font-size: 28px;
	color: rgb(255, 70, 70);
	letter-spacing: 2px;
	white-space: nowrap;
	font-weight: 500;

	text-shadow:
		0 0 4px rgba(255, 70, 70, 0.35),
		0 0 10px rgba(255, 70, 70, 0.15);
}

.right-title-block {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-top: 80px;
}

.right-line {
	height: 1px;
	flex: 1;
	background: rgba(255, 70, 70, 0.7);
	box-shadow: 0 0 8px rgba(255, 70, 70, 0.3);
}

.right-title-image {
	width: clamp(120px, 14vw, 320px);
	aspect-ratio: 16 / 9;
}

.right-text {
	font-family: "Oxanium", sans-serif;
	font-size: 18px;
	color: rgba(255, 70, 70, 0.85);
	line-height: 1.6;
	overflow-y: auto;
	flex: 1 !important;
}

.right-text::-webkit-scrollbar {
	width: 6px;
}

.right-text::-webkit-scrollbar-track {
	background: transparent;
}

.right-text::-webkit-scrollbar-thumb {
	background: rgb(255, 70, 70);
	border-radius: 0;
}

.right-text::-webkit-scrollbar-thumb:hover {
	background: rgb(255, 110, 110);
}

.right-image {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.right-image path {
	stroke: rgba(255, 70, 70, 0.7);
	stroke-width: 2;
	transition: all 0.2s ease;
	fill: rgba(25, 0, 0, 0.75);
}

.right-image text {
	font-family: "Oxanium", sans-serif;
	font-size: 20px;
	fill: rgb(0, 255, 255);
	font-weight: 500;
}
.right-meta-row {
	display: flex;
	gap: 14px;
	margin: 10px 0 18px 0;
}

.meta-box {
	width: 44px;
	height: 44px;
	position: relative;
	overflow: visible;
}

.meta-svg {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.hidden {
	visibility: hidden !important;
	pointer-events: none !important;
}

.meta-shape {
	fill: rgba(35, 8, 10, 0.75);
	stroke: rgba(255, 70, 70, 0.8);
	stroke-width: 1;
}

.meta-icon-path {
	fill: rgba(255, 235, 140, 0.9);
}

.meta-box:hover .meta-shape {
	fill: rgba(10, 10, 14, 0.75);
	stroke: rgb(255, 235, 140);
}

.meta-box:hover .meta-icon-path {
	fill: rgb(255, 245, 170);
}

.right-meta-inline {
	display: flex;
	gap: 10px;
	align-items: center;
}

.page {
	width: 100%;
	height: 100vh;

	display: flex;
	align-items: center;
	justify-content: center;
}

.left-deco {
	position: relative;

	height: 55vh;
	width: auto;

	opacity: 1;
	filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.15));
}

.center-box {
	width: 42vw;
	height: 55vh;

	display: flex;
	flex-direction: column;

	align-items: flex-start;
	justify-content: flex-start;

	background: rgba(10, 10, 14, 0.55);
	border: 1px solid rgba(0, 255, 255, 0.9);

	backdrop-filter: blur(12px);

	box-shadow:
		0 0 25px rgba(0, 255, 255, 0.15),
		0 0 80px rgba(0, 255, 255, 0.08);

	padding: 40px;

	overflow-y: auto;
}

.center-layout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
}

.right-stack {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding-top: 56px;
	gap: 12px;
}

.center-box-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.center-title {
	font-family: "Oxanium", sans-serif;
	font-size: 42px;
	color: rgb(0, 255, 255);
	letter-spacing: 2px;

	text-shadow:
		0 0 6px rgba(0, 255, 255, 0.4),
		0 0 18px rgba(0, 255, 255, 0.2);
}

.content-row {
	display: flex;
	align-items: center;
}

.center-subtitle {
	margin-top: 20px;

	font-family: "Oxanium", sans-serif;
	font-size: 18px;
	color: rgb(0, 255, 255);

	text-shadow: none;
	opacity: 0.85;
}

.resume-header {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 12px;
}

.resume-section {
	width: 100%;
	margin-bottom: 28px;
}

.resume-title {
	font-family: "Oxanium", sans-serif;
	font-size: 22px;
	color: rgb(0, 255, 255);
	letter-spacing: 1px;
	font-weight: 450;

	text-shadow: 0 0 6px rgba(0, 255, 255, 0.35);

	white-space: nowrap;
	margin-right: 12px;
}

.resume-line {
	height: 1px;
	flex: 1;
	background: rgba(0, 255, 255, 0.6);
	box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
}

.resume-item {
	font-family: "Oxanium", sans-serif;
	font-size: 15px;
	color: rgba(0, 255, 255, 0.9);

	margin-left: 16px;
	margin-bottom: 6px;
}

.resume-subtitle {
	font-family: "Oxanium", sans-serif;
	font-size: 15px;
	color: rgba(0, 255, 255, 0.9);
	margin-bottom: 6px;
}

.resume-item::before {
	content: "• ";
	color: rgb(0, 255, 255);
}

.resume-entry {
	width: 100%;
	margin-bottom: 18px;
}

.entry-top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;

	width: 100%;
	margin-bottom: 6px;
}

.entry-title {
	font-family: "Oxanium", sans-serif;
	font-size: 18px;
	color: rgb(0, 255, 255);

	text-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
}

.entry-date {
	font-family: "Oxanium", sans-serif;
	font-size: 14px;
	color: rgba(0, 255, 255, 0.6);
}

.entry-info {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.entry-location {
	font-family: "Oxanium", sans-serif;
	font-size: 14px;
	color: rgba(0, 255, 255, 0.6);
}

.entry-body {
	margin-left: 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.skill-label {
    font-weight: 500;
}

.center-box::-webkit-scrollbar {
	width: 6px;
}

.center-box::-webkit-scrollbar-track {
	background: transparent;
}

.center-box::-webkit-scrollbar-thumb {
	background: rgb(0, 255, 255);
	border-radius: 0px;
	box-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
}

.center-box::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 255, 255, 0.85);
}

.resume-top {
	width: 100%;
	margin-bottom: 14px;
}

.center-title {
	font-family: "Oxanium", sans-serif;
	font-size: 34px;
	color: rgb(0, 255, 255);
	letter-spacing: 2px;
	font-weight: 500;

	text-shadow:
		0 0 6px rgba(0, 255, 255, 0.4),
		0 0 18px rgba(0, 255, 255, 0.2);
}

.center-subtitle {
	margin-top: 6px;

	font-family: "Oxanium", sans-serif;
	font-size: 14px;
	color: rgba(0, 255, 255, 0.9);

	opacity: 0.9;
}

.center-subtitle a {
	color: rgb(0, 255, 255);
	text-decoration: none;
	opacity: 0.9;
}

.center-subtitle a:hover {
	opacity: 1;
	text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}

.title-line {
	margin-top: 14px;
	width: 100%;
	height: 1px;

	background: rgba(0, 255, 255, 0.6);
	box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
}

.credits-page {
	width: 100%;
	height: 100vh;

	display: flex;
	align-items: center;

	padding: 0 8vw;
	box-sizing: border-box;
}

.credits-column {
	width: 32vw;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 1px;
}

.credits-container {
	display: flex;
	flex-direction: column;
	align-items: center;

	max-width: 700px;
}

.credits-title {
	font-family: "Oxanium", sans-serif;
	font-size: 42px;
	color: rgb(193, 236, 233);
	font-weight: 350;

	text-shadow:
		0 0 6px rgba(0, 255, 255, 0.4),
		0 0 18px rgba(0, 255, 255, 0.2);

	margin-bottom: 64px;
}

.credits-subtitle {
	font-family: "Oxanium", sans-serif;
	font-size: 28px;
	font-weight: 300;
	color: rgb(193, 236, 233);

	text-shadow:
		0 0 6px rgba(0, 255, 255, 0.4),
		0 0 18px rgba(0, 255, 255, 0.2);

	margin-bottom: 36px;
}

.credits-back-spacer {
	margin-top: 32px;
}

.credit-row {
	display: flex;
	align-items: center;

	width: 100%;
	margin-bottom: 28px;

	font-family: "Oxanium", sans-serif;
	font-size: 18px;
}

.credit-label,
.credit-source {
	flex: 1;
}

.credit-label {
	color: rgba(103, 198, 202, 0.95);
	text-align: right;
	padding-right: 14px;
}

.credit-source {
	color: rgb(193, 236, 233);
	text-align: left;
	padding-left: 14px;
	display: inline;
	width: fit-content;
	padding-right: auto;

	text-decoration: none;
	transition:
		color 0.2s ease,
		text-shadow 0.2s ease;
}

.credit-source-link {
	color: rgb(193, 236, 233);
	text-align: left;
	display: inline;
	width: fit-content;
	padding-right: auto;

	text-decoration: none;
	transition:
		color 0.2s ease,
		text-shadow 0.2s ease;
}

.button-row {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	width: 100%;
}

.credit-source-link:hover {
	color: rgba(0, 255, 255, 0.7);

	text-shadow:
		0 0 6px rgba(0, 255, 255, 0.45),
		0 0 14px rgba(0, 255, 255, 0.2);
}

.credit-fill {
	flex: 1;
	pointer-events: none;
}

.tree-container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.skill-tree {
	width: 100%;
	height: 100%;
}

.wire line {
	stroke: #00ffff;
	stroke-width: 1.8;

	filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
}

.node {
	fill: rgba(15, 20, 25, 0.85);

	stroke: #00ffff;
	stroke-width: 2;

	filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6))
		drop-shadow(0 0 20px rgba(0, 255, 255, 0.25));

	transition: 0.25s;
}

.node:hover {
	fill: rgba(25, 40, 45, 0.95);

	filter: drop-shadow(0 0 14px rgba(0, 255, 255, 1))
		drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
}

.center {
	stroke-width: 3;
}
/* TEST */
.coming-soon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	font-family: "Oxanium", sans-serif;
	font-size: 72px;
	font-weight: 600;
	letter-spacing: 8px;

	color: #00ffff;

	text-shadow:
		0 0 10px rgba(0, 255, 255, 0.9),
		0 0 25px rgba(0, 255, 255, 0.7),
		0 0 50px rgba(0, 255, 255, 0.5),
		0 0 80px rgba(0, 255, 255, 0.3);

	animation: glowPulse 2.5s ease-in-out infinite;
	pointer-events: none;
	user-select: none;
    text-align: center;
}
