body {
	background: #000;
	color: #fff;
	margin: 0;
	padding: 0;
}

.other-main {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.other-bg-img {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	display: block;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.hitbox {
	position: absolute;
	width: 20vw;
	height: 30vh;
	background: rgba(255,255,255,0.1);
	z-index: 2;
	cursor: pointer;
	transition: box-shadow 0.2s;
	box-shadow: 0 0 0 transparent;
}
.hitbox:hover {
	box-shadow: 0 0 24px 4px rgba(255,255,255,0.15);
}

.hitbox-computer {
	left: 20vw;
	top: 35vh;
}
.hitbox-closet {
	right: 20vw;
	top: 35vh;
}


.hitbox-title {
	position: absolute;
	left: 50%;
	top: -2.2em;
	transform: translateX(-50%);
	color: #fff;
	font-family: 'VT323', 'Fira Mono', 'Consolas', 'monospace';
	font-size: 1vw;
	text-shadow: 0 0 6px #fff, 0 0 12px #00f;
	opacity: 0.8;
	letter-spacing: 0.05em;
	z-index: 4;
	pointer-events: none;
	white-space: nowrap;
}

.hitbox-text {
	position: absolute;
	left: 50%;
	top: 0.2em;
	transform: translateX(-50%);
	opacity: 0;
	pointer-events: none;
	color: #fff;
	font-family: 'VT323', 'Fira Mono', 'Consolas', 'monospace';
	font-size: 1.1vw;
	text-shadow: 0 0 8px #fff, 0 0 16px #00f, 0 0 2px #fff;
	max-width: 100%;
	width: 100%;
	white-space: pre-line;
	word-break: break-word;
	text-align: center;
	transition: opacity 0.2s;
	z-index: 3;
	filter: brightness(1.5) drop-shadow(0 0 6px #fff);
	letter-spacing: 0.03em;
	padding: 0 0.5vw;
	box-sizing: border-box;
}
.hitbox:hover .hitbox-text {
	opacity: 1;
}

@media (max-width: 900px) {
	.hitbox {
		width: 40vw;
		height: 20vh;
	}
	.hitbox-computer {
		left: 5vw;
		top: 60vh;
	}
	.hitbox-closet {
		right: 5vw;
		top: 60vh;
	}
	.hitbox-title {
		font-size: 2vw;
	}
	.hitbox-text {
		font-size: 2.5vw;
		padding: 0 1vw;
	}
}

/* ===========================
   MOBILE LAYOUT (max 1200px)
   =========================== */
.other-main--mobile {
	display: none;
}

@media (max-width: 1200px) {

	.other-main {
	margin-top: 1.7rem;
}
	
	.other-main--desktop {
		display: none;
	}
	.other-main--mobile {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
		overflow: visible;
		background: #000;
		padding: 4.5rem 0 0 0;
		gap: 0;
	}
	.mobile-card {
		display: block;
		position: relative;
		width: 100%;
		padding: 2vw 4vw;
		box-sizing: border-box;
		text-decoration: none;
		cursor: pointer;
	}
	.mobile-card img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
	}
	.mobile-card__label {
		position: absolute;
		bottom: calc(2.6vw + 1.5em);
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-family: 'W95FA', 'Courier New', monospace;
		font-size: 2.4rem;
		text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 2px #fff;
		white-space: nowrap;
		pointer-events: none;
		letter-spacing: 0.05em;
	}
	.mobile-card:hover img {
		filter: brightness(1.1);
	}
	.mobile-card:hover .mobile-card__label {
		text-shadow: 0 0 12px #fff, 0 0 24px #fff, 0 0 4px #fff;
	}
}

/* Transition and Footer styling for other page */
.transition-bottom {
	position: absolute;
	z-index: 3;
}

.other-label {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	padding: 5vw;
	transition: filter 0.1s;
}
.other-label:hover {
	filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 8px #fff) brightness(1.15);
}
.other-label img {
	display: block;
	max-height: 30vh;
	width: auto;
}
.other-label--left {
	left: 18vw;
	top:21vw;
}
.other-label--right {
	right: 21vw;
	top:21vw;
}

.s-footer {
	position: relative;
	z-index: 3;
}