.header {
	width: 100%;
	/* Full width */
	position: fixed;
	height: 75px;
	/* 5% of the viewport height */
	background-color: #200020;
	/* Dark purple color */
	display: flex;
	align-items: center;
	/* Vertically center any content */
	justify-content: left;
	/* Horizontally center text (optional) */
	font-size: 1.5rem;
	color: #FFF0FF;
	/* Text color */
	font-family: "Bahnschrift Light", sans-serif;
	font-weight: bold;
	margin-bottom: 25px;
	transition: top 0.3s ease-in-out;
	/* Smooth movement */
	z-index: 1000
}

.logo {
	height: 50%;
	/* Adjusts size relative to the header */
	width: auto;
	/* Maintains aspect ratio */
	margin-left: 15px;
}

.site-name {
	font-size: 1.2rem;
	color: #FFF0FF;
	font-family: "Bahnschrift Light", sans-serif;
	font-weight: bold;
	margin-left: 15px;
}

.icon-container {
	display: flex;
	gap: 15px;
	/* Space between icons */
	position: absolute;
	right: 20px;
	/* Positions icons on the right */
}

/* Icon styling */
.icon-container img {
	height: 30px;
	cursor: pointer;
	/* Makes icons clickable */
}

.link {
	color: #FF80FF;
	text-decoration: none;
}

/* Page background */
body {
	background-color: #100010;
	margin: 0;


	padding-bottom: 15px;
	/* Adjust this so content isn't hidden */

}

@media (max-width: 768px) {
	body {
		padding-bottom: 90px;
	}

}

.heading-container {
	display: flex;
	align-items: center;
	/* Aligns items vertically */
	justify-content: left;
	gap: 15px;
	/* Space between heading and image */
	width: fit-content;
	/* Matches the heading width */
	margin-left: 5%;
	padding-top: 125px;
}

/* Style the info icon */
.info-icon {
	width: 25px;
	/* Adjust size */
	height: auto;
	cursor: pointer;
	/* Makes it clickable */
	padding-bottom: 12.5px;
}

/* Main heading */
h1 {
	width: 100%;
	margin: 0 auto;
	font-family: "Bahnschrift Light", sans-serif;
	font-size: 3rem;
	color: #FFF0FF;
	margin-bottom: 20px;

}



/* Rounded rectangle container */
.rounded-rectangle {
	width: 90%;
	height: 200px;
	margin: 0 auto;
	background-color: #200020;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 20px;
	position: relative;
	margin-bottom: 20px;
	transition: background-color 0.25s ease-in-out;

}

.rounded-rectangle:hover {
	background-color: #300030;
	cursor: pointer;
}

/* Number ranking */
.rank {
	font-size: 1.5rem;
	color: #FFF0FF;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin-right: 20px;
	/* Adds space between number and image */
}

/* Album cover image */
.rounded-rectangle img {
	width: 10%;
	height: auto;
}

/* Text container */
.text-container {
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Heading inside rectangle */
.text-container h2 {
	color: #FFF0FF;
	font-size: 2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 0;
}

/* Paragraph text inside rectangle */
.text-container p {
	color: #FFF0FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

/* Container for artist name & stats */
.info-container {
	display: flex;
	flex-direction: column;
	/* Stacks artist name & stats */
	align-items: flex-start;
	margin-bottom: 1px;
	margin-top: 0px;
}

.details-container {
	display: flex;
	flex-direction: row;
	/* Stacks artist name & stats */
	align-items: center;
	gap: 5px;
	margin-bottom: 1px;
	margin-top: 0px;
}

.details-container img {
	width: 25px;
	/* Adjust as needed */
	height: auto;
	/* Keeps aspect ratio */
}

/* Stats section */
.stats {
	display: flex;
	gap: 15px;
	/* Space between icons */
	margin-top: 5px;
	/* Space between artist name & stats */
}

/* Individual stat item */
.stat-item {
	display: flex;
	align-items: center;
	color: #FFF0FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

/* Icon styling */
.stat-item img {
	width: 25px;
	/* Icon size */
	height: auto;
	margin-right: 5px;
	/* Space between icon & number */
}

.trend-item {
	display: flex;
	align-items: center;
	color: #FFF0FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

.trend-item img {
	width: 15px;
	/* Icon size */
	height: auto;
	margin-right: 5px;
	/* Space between icon & number */
}

.trend-1 {
	display: flex;
	align-items: center;
	color: #FFC000;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

.trend-2 {
	display: flex;
	align-items: center;
	color: #FF8000;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

.trend-3 {
	display: flex;
	align-items: center;
	color: #FF4000;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

.trend-4 {
	display: flex;
	align-items: center;
	color: #C000C0;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 5px 0;
}

.age {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgb(255, 128, 255, 0.5);
	color: #FF80FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	padding: 5px 15px;
	/* Adds space around text */
	border-radius: 50px;
	/* Creates pill shape */
	font-weight: bold;
	/* Makes text stand out */
	margin-right: 10px;
	margin-top: 10px;
}

/* Background dim effect */
#popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	/* Slight dim */
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}

/* Popup box */
#popup-box {
	background-color: #200020;
	color: #FFF0FF;
	padding: 20px;
	border-radius: 15px;
	width: 300px;
	text-align: left;
}

/* Close button */
#close-popup {
	background-color: #FF80FF;
	color: #100010;
	border: none;
	padding: 10px 15px;
	border-radius: 15px;
	cursor: pointer;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
}

#popup-box p {
	color: #FFF0FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 10px 0;
	text-align: left;
}

#popup-box h2 {
	color: #FFF0FF;
	font-family: "Bahnschrift Light", sans-serif;
	margin: 5px 0;
	text-align: center;
	font-size: 1.2rem;
}

.video-container {
	width: 75%;
	/* Adjust as needed */
	display: flex;
	justify-content: left;
}

.media-container {
	display: flex;
	flex-direction: row;
	/* Default: video left, sidebar right */
	gap: 20px;
	/* Space between */
	margin-left: 5%;
	margin-right: 5%;
}

@media (max-width: 768px) {
	.media-container {
		flex-direction: column;
		/* Stack elements when screen is smaller */
	}

	.video-container {
		width: 100%;
		/* Full width on smaller screens */
	}
}

video {
	width: 100%;
	/* Ensures full container width */
	border-radius: 15px;
	/* Optional: Adds rounded edges */

}


.sidebar {
	display: flex;
	flex-direction: column;
	/* Stack elements vertically */
	align-items: left;
	/* Centers the song card */
	justify-content: flex-start;
	width: 25%;
	/* Ensures the sidebar takes up its space */
	margin-right: 5%;
}


@media (max-width: 768px) {
	.media-container {
		flex-direction: column;
		/* Stack video & sidebar */
	}

	.sidebar {
		width: 95% !important;
		/* Forces full width */
		max-width: none;
		/* Removes any restrictions */
	}
}

.button-container {
	display: flex;
	gap: 10px;
	/* Space between buttons */
}

.btn {
	background-color: #200020;
	color: #FFF0FF;
	border: none;
	padding: 10px 15px;
	border-radius: 15px;
	font-size: 1rem;
	cursor: pointer;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	transition: background-color 0.25s ease-in-out;
	/* Smooth fade */

}

.btn:not(.selected):hover {
	background-color: #300030;
	/* Slightly lighter shade */
	transition: background-color 0.25s ease-in-out;
	/* Smooth fade */
}

.selected {
	background-color: #C000C0;
	/* Highlighted button */
}

.mini-card {
	display: flex;
	align-items: center;
	justify-content: middle;
	gap: 15px;
	/* Space between elements */
	width: 100%;
	padding: 10px 15px;

	border-radius: 15px;
	color: #FFF0FF;
	margin-top: 10px;
	cursor: pointer;
	/* Changes to a hand cursor */


}

.mini-card:not(.selected) {
	background-color: #200020;
}

.mini-card selected {
	background-color: #C000C0;
}

.mini-card img {
	width: 50px;
	/* Adjust for smaller cover */
	height: auto;
	border-radius: 15px;
	/* Optional rounded cover */
}

.mini-card p {
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 0;
}

.mini-card p .track {
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	width: 5%;
	margin: 0;
	display: inline-block;
	max-width: 40px;
	/* Adjust width as needed */
	text-align: center;

}

.mini-card:not(.selected):hover {
	background-color: #300030;
	/* Slightly lighter shade */
	transition: background-color 0.25s ease-in-out;
	/* Smooth fade */
}

.album-name {
	color: #FFF0FF;
	font-size: 1.5rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 0;
	margin-top: 15px;
}

.hidden {
	opacity: 0;
	pointer-events: none;
	/* Prevent interaction */
	display: none;
}

.track-container {
	display: flex;
	justify-content: center;
	/* Keeps numbers aligned */
	align-items: center;
	width: 20px;
	/* Forces same width for all track numbers */
}

.stats {
	margin-left: 2.5%;
	display: flex;
	justify-content: left;
	/* Center below video */
	gap: 20px;
	/* Adds space between items */
}

.like-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	/* Space between icon & number */
	background-color: #300030;
	/* Button color */
	border: none;
	border-radius: 20px;
	/* Makes it pill-shaped */
	padding: 8px 15px;
	font-size: 1.2rem;
	color: white;
	cursor: pointer;
	/* Makes it clickable */
	transition: background-color 0.25s ease-in-out;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
}

.like-button:hover {
	background-color: #400040;
	/* Slightly darker on hover */
}

.liked {
	background-color: #C000C0 !important;
	/* New color after click */
}

.song-age {
	position: relative;
	/* Allow it to align inside .stats */
	margin-left: auto;
	/* Push it to the right, but only within .stats */
	bottom: 0;
	/* Aligns with the bottom of the video */
	background-color: rgba(255, 128, 255, 0.5);
	color: #FF80FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	padding: 5px 15px;
	border-radius: 50px;
	font-weight: bold;
	right: 2.5%;
	width: max-content;

}

.stats-box {
	display: flex;
	background-color: #200020;
	/* Dark purple */
	border-radius: 15px;
	/* Rounded corners */
	padding: 5px;
	display: flex;
	align-items: center;
	width: calc(65% - 40px);
	max-width: none;
	/* Removes any restrictions */
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 10px;
}

@media (max-width: 768px) {

	/* Adjusts when screen width is 768px or smaller */
	.stats-box {
		width: calc(85% + 25px) !important;
		/* Full width */
		position: fixed;
		/* Makes it stay visible */
		bottom: 10px;
		/* Slightly above the bottom */
		left: calc(50%) !important;
		/* Centers it */
		transform: translateX(-49.5%) !important;
		/* Ensures perfect centering */
		z-index: 9999;
		/* Keeps it above everything */
		margin: 0 !important;

		justify-content: space-between;
		box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.75);
		/* Adds floating effect */

	}
}

h2 {
	color: #FFF0FF;
	font-size: 2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 0;
	margin-left: 5%;
	margin-top: 25px;
}

.insights-box {
	display: flex;
	background-color: #200020;
	/* Dark purple */
	border-radius: 15px;
	/* Rounded corners */
	padding: 5px;
	display: flex;
	align-items: center;
	min-height: 50px;
	max-height: 200px;
	max-width: none;
	/* Removes any restrictions */
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 10px;
}

.insights-box p {
	color: #FFF0FF;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin: 10px 10px;
}

.comment-input-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 5%;
}

.comment-input-container form {
	display: flex;
	flex-grow: 1;
	align-items: center;
	gap: 10px;
	width: 100%;
	box-sizing: border-box;
}

#comment-input {
	flex-grow: 1;
	/* Expands to fit the space */
	padding: 15px;
	border-radius: 10px;
	border: none;
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	background-color: #200020;
	color: #FFF0FF;
}

#submit-comment {
	background-color: #FF80FF;
	color: #100010;
	border: none;
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 1.2rem;
	cursor: pointer;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
}

.comment {
	border-radius: 10px;
	/* Rounded corners */
	margin-top: 10px;
	margin-bottom: 10px;
	/* Spacing between comments */
	max-width: 100%;
	/* Removes any restrictions */
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin-left: 5%;
	margin-right: 5%;
	font-size: 1.2rem;
}

.artist-comment-name {
	font-weight: bold;
	color: #FF80FF;
	/* Stylish accent color */
	text-decoration: none;
	/* Removes underline */
	cursor: pointer;
}

.user-comment-name {
	font-weight: bold;
	color: #FF80FF;
	/* Stylish accent color */
	text-decoration: none;
	/* Removes underline */
}

.comment-text {
	color: #FFF0FF;
	font-size: 1.2rem;
	margin-top: 25px;
}

.comment p {
	color: #FFF0FF;
	/* Ensures correct text color */
	font-size: 1.2rem;
}

.live-image {
	position: fixed;
	/* Keeps it at the bottom */
	bottom: 0;
	left: 0;
	min-width: 100%;
	/* Stretches across the entire screen */
	height: 95vh;
	/* Adjust based on how much of the screen you want covered */
	background-image: url("live-image.png");
	background-size: 100% 100%;
	/* Ensures full image visibility */
	background-repeat: no-repeat;
	background-position: center bottom;
	z-index: -1000;
}

p {
	color: #FFF0FF;
	/* Ensures correct text color */
	font-size: 1.2rem;
	font-family: "Bahnschrift Light Condensed", "Bahnschrift Condensed", "Bahnschrift Light", sans-serif;
	margin-left: 5%;
	margin-right: 5%;
}

.bio-box {
	display: flex;
	align-items: center;
	justify-content: middle;
	gap: 15px;
	/* Space between elements */

	width: 100%;
	padding: 10px 15px;

	border-radius: 15px;

	margin-top: 10px;
}