/* Sticky Bottom Player - Adonis / TuneIn style */
.sticky-player-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 30px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.player-track-info {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1;
	min-width: 0;
}

.player-cover-art {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.player-metadata {
	min-width: 0;
	text-align: left;
}

.player-track-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 3px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.player-artist-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: #b7b7b7;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.player-platforms {
	display: flex;
	align-items: center;
	gap: 10px;
}

.player-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 20px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: #ffffff;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.player-btn-spotify {
	background-color: #1DB954;
}

.player-btn-spotify:hover {
	background-color: #179c45;
	color: #ffffff;
}

.player-btn-youtube {
	background-color: #FF0000;
}

.player-btn-youtube:hover {
	background-color: #cc0000;
	color: #ffffff;
}

.player-btn-apple {
	background: linear-gradient(135deg, #FC3C44, #FA233B);
}

.player-btn-apple:hover {
	background: linear-gradient(135deg, #d93037, #c4182d);
	color: #ffffff;
}

/* Responsive adjustment */
@media (max-width: 768px) {
	.sticky-player-wrapper {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
		text-align: center;
	}
	.player-track-info {
		justify-content: center;
		width: 100%;
	}
	.player-platforms {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* Portfolio custom cards and overlays */
.music-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	background: #111 !important;
	border-radius: 8px;
	overflow: hidden;
	padding: 15px;
	margin-bottom: 25px;
}
.music-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 200, 255, 0.2);
}
.music-card-img-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}
.music-card-img-wrapper img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}
.music-card:hover .music-card-img-wrapper img {
	transform: scale(1.05);
}
.music-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.music-card:hover .music-card-overlay {
	opacity: 1;
}
.play-icon-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #f6483b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: transform 0.2s ease;
	padding-left: 4px;
}
.play-icon-btn:hover {
	transform: scale(1.1);
	color: #fff;
}

.portfolio-section-title {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 40px 0 25px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	text-align: left;
}

