body {
	font-family: Arial, sans-serif;
	padding: 20px;
	max-width: 689px;
	margin: auto;
}
h1 {
	text-align: center;
}
ul {
	list-style: none;
	padding-left: 0;
}
li {
	margin: 10px 0;
}
a {
	color: #61dafb;
	text-decoration: none;
	font-size: 1.2em;
}
nav {
	text-align: center;
	margin-top: 40px;
	margin-left: 10px;
}
nav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	padding: 8px 15px;
	border: 1px solid white;
	border-radius: 5px;
}
nav a:hover {
	background: white;
	color: black;
}
.tv-strip-wrapper {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow-x: auto;
}
.scroll-strip {
	display: flex;
	overflow-x: auto;
	gap: 1rem; /* optional: space between TVs */
	scroll-behavior: smooth;
	padding: 1rem; /* optional */
}

#video-tv-strip {
	display: flex;
	gap: 30px;
	padding: 20px;
	scroll-behavior: smooth;

	width: fit-content; /* content decides width */
	box-sizing: border-box;
}

/* Individual TV preview container */
.tv-container {
	position: relative;
	max-width: 300px;
	cursor: pointer;
	text-align: center;
	flex-shrink: 0;
}

/* TV image frame */
.tv-image {
	width: 100%;
	z-index: 2;
	display: block;
	pointer-events: none;
}

.tv-video {
	position: absolute;
	top: 9.5%;
	left: 9%;
	width: 62%;
	height: 56%;
	object-fit: cover;
	transform: scale(1.15);
	/* no display: none here */
	pointer-events: none;
	border-radius: 22px;
	opacity: 1;
	filter: brightness(0.4); /* optional: make it darker when paused */
	transition: filter 0.3s ease;
}
.tv-container:hover .tv-video {
	filter: brightness(1);
}

/* Invisible clickable layer over TV */
.tv-click-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: transparent;
	cursor: pointer;
}

/* Song title label */
.tv-label {
	display: block;
	color: #61dafb;
	text-decoration: none;
	font-size: 1em;
	margin-top: 8px;
}

/* Scrollable TV strip */
#video-tv-strip,
#audio-album-strip {
	display: flex;
	overflow-x: auto;
	gap: 30px;
	padding: 20px;
	margin-top: 20px;
	scroll-behavior: smooth;
	width: 100vw;
	box-sizing: border-box;
}

/* Container for audio album art */
.album-container {
	text-align: center;
	flex: 0 0 auto;
	width: 160px;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.album-container:hover {
	transform: scale(1.05);
}

/* Album art image */
.album-image {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s ease;
}

/* Album label under the image */
.album-label {
	display: block;
	margin-top: 8px;
	color: #61dafb;
	font-size: 1em;
	text-decoration: none;
}

.album-label:hover {
	text-decoration: underline;
}
.album-strip-wrapper {
	width: 100vw;
	overflow-x: auto;
	margin-left: calc(-50vw + 50%);
	box-sizing: border-box;
	padding: 20px 0;
}

#audio-album-strip {
	display: flex;
	gap: 30px;
	min-width: max-content; /* ensures children can overflow horizontally */
	scroll-behavior: smooth;

	/* Hide scrollbars */
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE */
}

#audio-album-strip::-webkit-scrollbar {
	display: hidden; /* Chrome, Safari */
}

/* Optional: styles for the album containers */
.album-container {
	flex: 0 0 auto;
	text-align: center;
}

.album-container {
	flex: 0 0 auto;
	text-align: center;
}

.album-image {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	transition: transform 0.2s;
}

.album-image:hover {
	transform: scale(1.05);
}

.album-label {
	display: block;
	color: #61dafb;
	margin-top: 8px;
	font-size: 0.9em;
	text-decoration: none;
}
