body {
	font-family: Arial, sans-serif;
	margin: 0;
	background: #0f2027;
}
header {
	text-align: center;
	padding: 1rem;
	background: linear-gradient(135deg, #EC4899, #F99C74);
	color: white;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
header h3 {
	font-size: 1.5rem;
	margin: 0;
	font-weight: bold;
	text-shadow: 1px 1px 20px rgba(0,0,0,0.4);
}
header p {
	font-size: 16px;
	margin-top: 10px;
	opacity: 0.9;
}
.album-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
	justify-content: start;
}
.album {
	background: rgb(0 123 255 / 19%);           
	transition: transform 0.2s, background 0.3s;
}
.album:hover {
	transform: scale(1.05);
	background: #ec489a5d;
}
.album-list a {
	text-decoration: none;            
	color: #fff;            
}
.album-icon {
	font-size: 50px;
}
#theGobalSeekbar {
	accent-color: #ec4899;
}