#blogPostMain {
	width: 100%;
}

/* Image Hero */
#imageHero {
	position: relative;
	height: 600px;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

#heroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgba(17, 17, 17, 0.4) 50%, rgba(17, 17, 17, 0.7) 100%);
}

#heroContent {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 90%;
	max-width: 1000px;
}

/* Video Hero (YouTube) */
#videoHero {
	position: relative;
	padding: 100px 0 60px;
	background: #111;
	display: flex;
	justify-content: center;
	background: radial-gradient(circle at center, #263238 0%, #111 100%);
}

#videoStage {
	width: 90%;
	max-width: 1100px;
	z-index: 2;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	height: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.05);
	background: #000;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#videoPostInfo {
	margin-top: 40px;
	text-align: center;
}

/* Shared Titles */
.premiumTitle {
	font-size: 4rem;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: -2px;
	line-height: 0.9;
	margin-bottom: 20px;
}

.premiumMeta {
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.metaItem {
	color: #aaa;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.dot {
	width: 4px;
	height: 4px;
	background: #607d8b;
	border-radius: 50%;
}

/* Article Layout */
#articleContainer {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto 100px;
	gap: 60px;
	align-items: flex-start;
}

#blogMainContent {
	flex: 1;
}

#articleBody {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #ccc;
}

#articleBody p {
	margin-bottom: 25px;
}

#articleBody h2,
#articleBody h3 {
	color: #fff;
	margin: 40px 0 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

#articleBody blockquote {
	border-left: 4px solid #607d8b;
	padding: 20px 40px;
	margin: 40px 0;
	background: rgba(255, 255, 255, 0.03);
	font-style: italic;
	font-size: 1.4rem;
	color: #eee;
}

#articleBody img {
	max-width: 100%;
	border-radius: 10px;
	margin: 30px 0;
}

/* Gallery */
#articleGallery {
	margin-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 40px;
}

.sectionLabel {
	font-size: 0.8rem;
	text-transform: uppercase;
	color: #666;
	letter-spacing: 2px;
	margin-bottom: 25px;
	font-weight: bold;
}

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

.galleryImage {
	position: relative;
	height: 150px;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	cursor: pointer;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.imageOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(96, 125, 139, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.galleryImage:hover .imageOverlay {
	opacity: 1;
}

/* Sidebar */
#articleSidebar {
	width: 300px;
}

.sidebarCard {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 25px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.cardLabel {
	font-size: 0.7rem;
	text-transform: uppercase;
	color: #607d8b;
	letter-spacing: 2px;
	font-weight: 800;
	margin-bottom: 20px;
}

.sidebarBands {
	gap: 15px;
}

.sidebarBandLink {
	align-items: center;
	gap: 12px;
	color: #aaa;
	font-weight: bold;
	transition: color 0.3s ease, transform 0.2s ease;
}

.sidebarBandLink:hover {
	color: #fff;
	transform: translateX(5px);
}

.bandMiniThumb {
	width: 40px;
	height: 40px;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox */
#lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
}

#lbContent {
	max-width: 80%;
	max-height: 80%;
}

#lightboxImage {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 10px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

#lbPrev,
#lbNext,
#lbClose {
	position: absolute;
	color: #fff;
	font-size: 3rem;
	cursor: pointer;
	padding: 20px;
	user-select: none;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

#lbPrev:hover,
#lbNext:hover,
#lbClose:hover {
	opacity: 1;
}

#lbPrev {
	left: 40px;
}

#lbNext {
	right: 40px;
}

#lbClose {
	font-size: 4rem;
	right: 40px;
}

/* Sharing Actions */
#postFooterActions {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	align-items: center;
}

.shareIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.shareIcon img {
	transition: filter 0.3s ease;
}

.shareIcon:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shareIcon.fb:hover {
	background: #1877f2;
	border-color: #1877f2;
}

.shareIcon.x:hover {
	background: #000;
	border-color: #fff;
}

.shareIcon.ln:hover {
	background: #0077b5;
	border-color: #0077b5;
}

.shareIcon.wa:hover {
	background: #25d366;
	border-color: #25d366;
}

.shareIcon:hover img {
	filter: brightness(0) invert(1);
}

/* Mobile */
@media screen and (max-width: 900px) {
	#articleContainer {
		flex-direction: column;
	}

	#articleSidebar {
		width: 100%;
	}

	.premiumTitle {
		font-size: 2.5rem;
	}

	#imageHero {
		height: 400px;
	}
}

/* Spotify Embed */
.spotifyEmbed,
.spotifyCard {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.spotifyCard iframe {
	display: block;
	width: 100%;
}

.spotifyEmbed iframe,
.spotifyCard iframe {
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.05);
}