/* Box sizing reset */
.acb-ss-wrapper,
.acb-ss-wrapper * {
	box-sizing: border-box;
}

.acb-ss-wrapper {
	width: 100%;
	background-color: #0b071e;
	padding: 80px 20px;
}

.acb-ss-container {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

/* Header */
.acb-ss-header {
	text-align: center;
	margin-bottom: 45px;
}

.acb-ss-subtitle {
	color: #c7b3ce;
	font-size: 13px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 12px;
}

.acb-ss-title {
	color: #d99a6c;
	font-size: 48px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0;
}

/* Tracklist Outer Box */
.acb-ss-box {
	border: 1px dashed rgba(255, 255, 255, 0.15);
	padding: 10px 30px;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.01);
}

.acb-ss-list {
	width: 100%;
}

/* Individual Track Item */
.acb-ss-item {
	display: flex;
	align-items: center;
	padding: 22px 10px;
	transition: background 0.2s ease;
}

.acb-ss-item:not(:last-child) {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.acb-ss-item:hover {
	background-color: rgba(255, 255, 255, 0.02);
}

/* Track Number */
.acb-ss-number {
	color: #d99a6c;
	font-size: 16px;
	font-weight: 700;
	width: 50px;
	flex-shrink: 0;
	letter-spacing: 1px;
}

/* Song Title */
.acb-ss-song-title {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	flex-grow: 1;
	padding-right: 20px;
	letter-spacing: 0.3px;
}

/* Play Button */
.acb-ss-play-btn {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	outline: none;
	transition: transform 0.2s ease;
}

.acb-ss-play-btn:hover {
	transform: scale(1.15);
}

.acb-ss-play-btn svg {
	stroke: #d99a6c;
	fill: none;
	transition: stroke 0.2s ease;
}

/* Mobile Responsive */
@media (max-width: 600px) {
	.acb-ss-wrapper {
		padding: 50px 15px;
	}

	.acb-ss-title {
		font-size: 32px;
	}

	.acb-ss-box {
		padding: 5px 15px;
	}

	.acb-ss-item {
		padding: 16px 5px;
	}

	.acb-ss-number {
		width: 35px;
		font-size: 14px;
	}

	.acb-ss-song-title {
		font-size: 14px;
	}
}