.appImage {
	opacity: 0;
	animation: fade-in-bottom 1s;
}

.appsContainer {
	top: 65px;
	position: absolute;
	max-width: 1070px;
	display: inline-flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 20px;
	justify-content: flex-start;
}

.appsContainer img {
	width: 198px;
	height: 128px;
	object-fit: cover;
	border-radius: 14px;
	cursor: pointer;
	transition: 0.2s ease-in-out !important;
}

.appsContainer img:hover {
	transform: scale(1.05);
	transition: 0.2s ease-in-out !important;
}

.appsContainer img:active {
	transition: 0s;
	outline: 2px solid var(--image-outline-color);
}

.gameImage {
	opacity: 0;
	animation: fade-in-bottom 1s;
}

.appsContainer {
	opacity: 1;
}

.gameContain {
	top: 65px;
	position: absolute;
	max-width: 1070px;
	display: inline-flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 20px;
	justify-content: flex-start;
}

.gameContain img {
	width: 198px;
	height: 128px;
	object-fit: cover;
	border-radius: 14px;
	cursor: pointer;
	transition: 0.2s ease-in-out !important;
}

.gameContain img:hover {
	transform: scale(1.05);
	transition: 0.2s ease-in-out !important;
}

.gameContain img:active {
	transition: 0s;
	outline: 2px solid var(--image-outline-color);
}

.scrolltop {
	background-color: var(--scrolltop-background-color);
	backdrop-filter: var(--scrolltop-backdrop-filter);
	width: 49px;
	height: 49px;
	border-radius: 50%;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	transition: 0.3s ease-in-out all;
	opacity: 0;
}

.scrolltop:hover {
	transform: scale(1.1);
}

.scrolltop span.material-symbols-outlined {
	justify-content: center;
	transform: translateY(-10px);
	font-size: 30px;
}

.randomBtn {
	height: 35px;
	padding: 0 20px;
	text-wrap: nowrap;
	background-color: var(--random-btn-background-color);
	border-radius: 10px;
	border: 0;
	text-align: center;
	outline: #ffffff17 1px solid;
	user-select: none;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	width: 140px;
	margin-left: -13em;
	font-weight: 200;
	color: #868686;
	font-family: 'DM Sans';
	transition: 0.3s all ease-in-out;
	animation: fade-in-left 1s;
	display: flex;
	align-items: center;
}

.randomBtn:hover {
	background-color: var(--random-btn-hover-background-color);
	outline: var(--border-color) 1px solid;
}

.randomBtn:active {
	background-color: var(--random-btn-active-background-color);
}

.gameSearchInput,
.appsSearchInput,
#gointospace {
	padding-left: 40px;
}


/* NEW!!!!!!!!!!!!!!! */
			/* Floating, vertically-centered, glassmorphic sidebar (index page only) */
			.navbar {
				position: fixed !important;
				top: 50% !important;
				right: auto !important;
				left: 18px !important;
				transform: translateY(-50%);
				height: auto !important;
				width: auto !important;
				padding: 10px 8px !important;
				background: rgba(22, 22, 22, 0.55) !important;
				backdrop-filter: blur(14px) saturate(140%);
				-webkit-backdrop-filter: blur(14px) saturate(140%);
				border: 1px solid rgba(255, 255, 255, 0.08);
				border-radius: 22px !important;
				box-shadow:
					0 10px 30px rgba(0, 0, 0, 0.35),
					0 1px 0 rgba(255, 255, 255, 0.04) inset;
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 4px;
				transition: transform 0.3s ease, opacity 0.3s ease;
			}
			.navbar:hover {
				background: rgba(22, 22, 22, 0.68) !important;
			}
			.navbar li {
				width: 40px;
				height: 40px;
				display: flex;
				align-items: center;
				justify-content: center;
				margin: 0 !important;
				border-radius: 12px;
				transition: background 0.18s ease, transform 0.18s ease;
				position: relative;
			}
			.navbar li:hover {
				background: rgba(255, 255, 255, 0.08);
				transform: translateY(-1px);
			}
			.navbar li a {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 100%;
				height: 100%;
				color: rgba(255, 255, 255, 0.72);
				text-decoration: none;
				transition: color 0.18s ease;
			}
			.navbar li:hover a,
			.navbar li:hover .material-symbols-outlined,
			.navbar li:hover .fa-brands {
				color: #fff;
			}
			.navbar .material-symbols-outlined,
			.navbar .fa-brands {
				font-size: 22px !important;
				margin: 0 !important;
				transform: none !important;
				color: rgba(255, 255, 255, 0.72);
				transition: color 0.18s ease;
			}
			.navbar li:has(#navactive) {
				background: rgba(255, 255, 255, 0.12);
			}
			.navbar li:has(#navactive)::before {
				content: '';
				position: absolute;
				left: -10px;
				top: 50%;
				transform: translateY(-50%);
				width: 3px;
				height: 18px;
				background: #bdf730;
				border-radius: 2px;
				box-shadow: 0 0 8px rgba(189, 247, 48, 0.6);
			}
			.navbar li:has(#navactive) .material-symbols-outlined {
				color: #fff;
			}
			.navbar .logo {
				width: 42px;
				height: 42px;
				border-radius: 8px;
			}
			.navbar hr {
				width: 24px !important;
				height: 1px;
				background: rgba(255, 255, 255, 0.1) !important;
				border: none;
				margin: 6px 0 !important;
			}
			/* Override the inline transforms on the Discord icon wrapper */
			.navbar li > a > div {
				height: auto !important;
				width: auto !important;
				margin: 0 !important;
				display: flex;
				align-items: center;
				justify-content: center;
			}
			.navbar li > a > div .fa-brands {
				transform: none !important;
			}
			html, body { overflow-x: visible !important; }
			.navbar {
				border: none;
				animation: navbarNeon 8s ease-in-out infinite;
			}
			@keyframes navbarNeon {
				0%   { border-color: #bdf730; box-shadow: 0 0 15px 2px rgba(189, 247, 48, 0.95), 0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
				20%  { border-color: #00f0ff; box-shadow: 0 0 15px 2px rgba(0, 240, 255, 0.95),   0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
				40%  { border-color: #ff00d4; box-shadow: 0 0 15px 2px rgba(255, 0, 212, 0.95),   0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
				60%  { border-color: #ffaa00; box-shadow: 0 0 15px 2px rgba(255, 170, 0, 0.95),   0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
				80%  { border-color: #b300ff; box-shadow: 0 0 15px 2px rgba(179, 0, 255, 0.95),   0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
				100% { border-color: #bdf730; box-shadow: 0 0 15px 2px rgba(189, 247, 48, 0.95), 0 10px 30px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset; }
			}
			.navbar .fa-discord  { color: #5865F2 !important; } /* discord brand */
			.navbar a[href*="classroom15x"] .material-symbols-outlined {
				color: #ffd60a !important;                       /* bookmark -> yellow */
			}