			/* =========================================
			   ALBUM HEADER REDESIGN
			   ========================================= */
			.album-header-new {
				display: flex;
				gap: 25px;
				margin-bottom: 45px;
				position: relative;
			}

			.album-header-new .art-box {
				width: 230px;
				height: 230px;
				border-radius: 8px;
				overflow: hidden;
				box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
				flex-shrink: 0;
			}

			.album-header-new .art-box img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
			}

			.album-header-new .info-box {
				flex: 1;
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				padding-top: 5px;
			}

			.album-header-new .album-title {
				font-size: 1.8rem;
				font-weight: 700;
				color: #111;
				margin-bottom: 8px;
				line-height: 1.2;
				display: block;
			}

			.album-header-new .explicit-badge {
				background: #000000;
				color: #fff;
				font-size: 0.8rem;
				padding: 2px 5px;
				border-radius: 4px;
				font-weight: 600;
				display: inline-block;
				vertical-align: middle;
				margin-left: 6px;
				position: relative;
				top: -1px;
			}

			.album-header-new .artist-row {
				font-size: 1.2rem;
				font-weight: 500;
				color: var(--primary);
				margin-bottom: 8px;
				display: flex;
				align-items: center;
			}

			.album-header-new .artist-row .clickable-text {
				color: var(--primary);
				text-decoration: none;
			}

			.album-header-new .artist-row .clickable-text:hover {
				text-decoration: underline;
			}

			.album-header-new .meta-row {
				font-size: 0.95rem;
				color: #86868b;
				margin-bottom: 20px;
				font-weight: 400;
			}

			.album-header-new .action-row {
				display: flex;
				align-items: center;
				justify-content: flex-start;
				flex-wrap: wrap;
				gap: 10px;
			}

			.btn-download-pill {
				background: #f0f5ff;
				color: #4a90e2;
				border: 1px solid #d0e1fd;
				border-radius: 6px;
				padding: 8px 24px;
				width: auto;
				min-width: 120px;
				font-size: 0.9rem;
				font-weight: 600;
				display: inline-flex;
				align-items: center;
				justify-content: center;
				gap: 6px;
				cursor: pointer;
				transition: all 0.2s;
			}

			.btn-download-pill:hover {
				background: #e1ecff;
				transform: translateY(-1px);
			}

			.btn-download-pill i {
				font-size: 0.9em;
			}

			.more-menu-container {
				position: absolute;
				bottom: 0;
				right: 0;
			}

			.btn-more-trigger {
				width: 32px;
				height: 32px;
				background: #f2f2f7;
				color: var(--primary);
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				border: none;
				font-size: 1rem;
				transition: all 0.2s;
			}

			.btn-more-trigger:hover {
				background: #e5e5ea;
			}

			.album-menu-dropdown {
				position: absolute;
				bottom: 40px;
				right: 0;
				background: #fff;
				border: 1px solid rgba(0, 0, 0, 0.1);
				border-radius: 12px;
				box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
				width: 260px;
				padding: 8px;
				display: none;
				z-index: 100;
				animation: fadeIn 0.1s ease;
				transform-origin: bottom right;
			}

			.album-menu-dropdown.show {
				display: block;
			}

			.menu-item.link-item {
				padding: 10px 12px;
				border-radius: 8px;
				cursor: pointer;
				transition: background 0.1s;
				display: flex;
				flex-direction: column;
				gap: 4px;
				position: relative;
			}

			.menu-item.link-item:hover {
				background: #f5f5f7;
			}

			.menu-item .link-label {
				font-size: 0.85rem;
				font-weight: 600;
				color: #333;
			}

			.menu-item .link-url {
				font-size: 0.75rem;
				color: #888;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				width: 90%;
			}

			.menu-item .copy-icon {
				position: absolute;
				right: 12px;
				top: 50%;
				transform: translateY(-50%);
				color: var(--primary);
				opacity: 0.6;
			}

			.menu-item:hover .copy-icon {
				opacity: 1;
			}

			@media (max-width: 768px) {
				.album-header-new {
					flex-direction: column;
					align-items: center;
					text-align: center;
					gap: 15px;
					margin-bottom: 25px;
				}

				.album-header-new .art-box {
					width: 180px;
					height: 180px;
				}

				.album-header-new .info-box {
					align-items: center;
				}

				.album-header-new .album-title {
					font-size: 1.5rem;
				}

				.album-header-new .action-row {
					justify-content: center;
				}

				.more-menu-container {
					position: relative;
					bottom: auto;
					right: auto;
					margin-top: 15px;
				}

				.album-menu-dropdown {
					right: 50%;
					transform: translateX(50%);
					bottom: 45px;
					transform-origin: bottom center;
				}
			}

			.info-row {
				display: flex;
				align-items: flex-start;
				margin-bottom: 5px;
				font-size: 0.95rem;
				justify-content: space-between;
				gap: 10px;
			}

			.info-label {
				font-weight: 500;
				color: #4a90e2;
				flex-shrink: 0;
				white-space: nowrap;
			}

			.info-value {
				color: #333;
				text-align: right;
				flex: 1;
				min-width: 0;
				word-break: break-all;
				overflow-wrap: break-word;
				line-height: 1.4;
			}

			.track-item {
				padding: 12px 15px;
				border-bottom: 1px solid #f5f5f7;
				display: flex;
				align-items: center;
				cursor: pointer;
				transition: background-color 0.2s;
				content-visibility: auto;
				contain-intrinsic-size: 100% 55px;
			}

			.track-item:hover {
				background: #f9f9fb;
			}

			.track-number {
				width: 30px;
				color: #999;
				font-weight: 500;
				flex-shrink: 0;
				font-size: 0.85rem;
			}

			.track-info-wrapper {
				flex: 1;
				display: flex;
				flex-direction: column;
				justify-content: center;
				overflow: hidden;
				margin-right: 8px;
			}

			.track-name-row {
				display: flex;
				align-items: center;
				width: 100%;
			}

			.track-name-text {
				color: #333;
				font-weight: 500;
				font-size: 1.1rem;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				flex: 0 1 auto;
			}

			.track-explicit {
				flex-shrink: 0;
				margin-left: 4px;
				background: #000;
				color: #fff;
				font-size: 0.6rem;
				padding: 1px 3px;
				border-radius: 2px;
				font-weight: 700;
				line-height: 1.2;
			}

			.track-duration {
				color: #888;
				width: 45px;
				text-align: right;
				flex-shrink: 0;
				font-size: 0.8rem;
			}

			@media (max-width: 768px) {
				.track-item {
					padding: 10px 5px;
				}
			}

