<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: white;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
}

/* Header styles */
header {
	position: fixed;
	width: 160px;
	top: 0;
	left: 0;
	padding: 15px 10px;
	background: white;
	z-index: 100;
	height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}

header &gt; a {
	display: block;
	width: 100%;
	text-align: center;
}

header &gt; a img {
	max-width: 100%;
	height: auto;
	margin-bottom: 15px;
}

.nav-links {
	list-style: none;
	margin-top: 10px;
	width: 100%;
}

.nav-links li {
	margin: 10px 0;
	text-align: center;
}

.nav-links img {
	max-width: 100%;
	height: auto;
	transition: transform 0.2s ease;
}

.nav-links img:hover {
	transform: scale(1.05);
}

/* Main content */
main {
	padding: 7rem 2rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* Music container */
.music-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.albums-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.album {
	flex-shrink: 0;
}

/* Social media section */
.social-links {
	margin-top: 60px;
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #eee;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	padding: 20px;
}

.social-icon {
	display: inline-block;
	transition: transform 0.3s ease;
	width: 45px;
	height: 45px;
}

.social-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.social-icon:hover {
	transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	header {
		position: fixed;
		width: 100%;
		height: auto;
		border-right: none;
		border-bottom: 1px solid #eee;
		padding: 8px;
		background: white;
		z-index: 100;
	}

	header &gt; a {
		display: block;
		width: 100%;
		text-align: center;
	}

	header &gt; a img {
		max-width: 100px;
		margin-bottom: 8px;
	}

	.nav-links {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px;
		padding: 0 5px;
	}

	.nav-links li {
		margin: 0;
		flex: 0 0 auto;
	}

	.nav-links img {
		max-width: 65px;
		height: auto;
	}

	main {
		margin-left: 0;
		padding: 120px 10px 20px;
	}

	.music-container {
		padding: 0 10px;
	}

	.albums-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.album-cover {
		width: 100%;
		height: auto;
	}

	.album-info h2 {
		font-size: 1rem;
	}

	.album-info p {
		font-size: 0.9rem;
	}

	.social-links {
		margin-top: 30px;
		padding-top: 20px;
	}

	.social-icons {
		gap: 20px;
	}

	.social-icon {
		width: 35px;
		height: 35px;
	}
}

/* Additional adjustments for very small screens */
@media (max-width: 360px) {
	.albums-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 10px;
	}

	.nav-links img {
		max-width: 70px;
	}
}

/* Landscape mode adjustments */
@media (max-width: 768px) and (orientation: landscape) {
	header {
		position: absolute;
	}

	main {
		padding-top: 160px;
	}

	.albums-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	}
}

/* Focus styles for accessibility */
a:focus {
	outline: 3px transparent ;
	outline-offset: 2px;
}

.container
{
	width: 75%;
	height: 100%;
}

</pre></body></html>