* {
	overflow: visible;
}

body {
	margin: 0;
	padding: 0;
	background: black;
	font-family: Arial, sans-serif;
	overflow: hidden;
}

/* Back stage */
.bg {
	width: 100%;
	height: 100%;
}

/* Front stage */
.stage {
	background: url("../images/scene.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

/* TV static */
.tvStatic {
	width: 23%;
	height: 23vw;
	position: absolute;
	top: 50%;
	left: 48%;
	transform: translate(-50%, -38%);
}

/* YT player button */
.playButton {
	width: 21%;
	height: 19.5vw;
	position: absolute;
	top: 50.75%;
	left: 48%;
	cursor: pointer;
	transform: translate(-50%, -38%);
}

.playIcon {
	width: 33%;
	opacity: 0.85;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.2s, opacity 0.2s;
}

.playButton:hover .playIcon {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.2);
}

/* Video overlay */
.videoOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	display: none;
	justify-content: center;
	align-items: center;
}

.videoContainer {
	width: 90%;
	height: 90%;
	border: 2px solid #444;
	border-radius: 2px;
}

.videoContainer iframe {
	width: 100%;
	height: 100%;
}

/* Sticky notes - links to social media */
.notes {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	flex-direction: column;
	transform: translate(283%, 25%);
}

.note {
	width: 4vw;
	cursor: pointer;
	transform: rotate(-5deg);
	transition: transform 0.2s;
}

.note img {
	width: 100%;
}

.note:hover {
	transform: scale(1.1) rotate(-3deg);
}

/* Wishlist and disclaimer */
.info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	position: relative;
	top: 100%;
	transform: translate(0, -110%);
}

.steamWishlist {
	font-size: 48px;
	font-weight: bold;
	font-family: 'New Amsterdam', sans-serif;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: transform 0.2s ease, color 0.2s ease;
	transform-origin: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	white-space: nowrap;
	flex-wrap: nowrap;
}

.steamWishlist:hover {
	transform: scale(1.2);
	color: #9C2821;
}

.steam-icon {
	width: 48px;
	height: 48px;
}

.disclaimer {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
}

/* If width <550px */
@media screen and (max-width: 550px) {
	body {
		overflow-y: auto;
	}

	.steamWishlist {
		font-size: 8.75vw;
		gap: 2.5vw;
	}

	.steam-icon {
		width: 8.75vw;
		height: 8.75vw;
	}

	.disclaimer {
		font-size: 2.2vw;
	}
}

/* If height <500px and aspect ratio >1:1 */
@media screen and (min-width: 100vh) and (max-height: 500px) {
	.steamWishlist {
		font-size: 9.5vh;
		gap: 3.5vh;
	}

	.steam-icon {
		width: 9.5vh;
		height: 9.5vh;
	}

	.disclaimer {
		font-size: 2.4vh;
	}
}

/* If aspect ratio <36:75 */
@media screen and (max-height: 48vw) {
	body {
		overflow-y: auto;
	}

	.stage {
		height: 50vw;
	}

	.tvStatic {
		top: 25vw;
	}
}

/* If aspect ratio >16:9 */
@media screen and (min-height: 56.25vw) {
	.tvStatic {
		width: 41vh;
		height: 41%;
		left: 50%;
		transform: translate(-59%, -38%);
	}

	.playButton {
		width: 38vh;
		height: 35%;
		left: 50%;
		transform: translate(-59%, -38%);
	}

	.note {
		width: 7.1vh;
	}
}

/* If aspect ratio <10:16 */
@media screen and (max-width: 62.5vh) {
	.stage {
		background-size: 285% auto;
		background-position: top;
	}

	.tvStatic {
		width: 66%;
		height: 66vw;
		left: 50%;
		top: -45vw;
		transform: translate(-59%, 100vw);
	}

	.playButton {
		width: 60%;
		height: 55vw;
		left: 50%;
		top: -40vw;
		transform: translate(-59%, 100vw);
	}

	.notes {
		top: 74vw;
		left: 76.5%;
		transform: translate(50%, 50%);
	}

	.note {
		width: 11.5vw;
	}
}