			/* =========================================
			   SKELETON & STATES
			   ========================================= */
			@keyframes skeleton-loading {
				0% {
					background-position: 100% 50%;
				}

				100% {
					background-position: 0 50%;
				}
			}

			.skeleton {
				background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 37%, #f0f0f0 63%);
				background-size: 400% 100%;
				animation: skeleton-loading 1.4s ease infinite;
				border-radius: 4px;
			}

			.skeleton-text {
				height: 14px;
				margin-bottom: 6px;
				width: 100%;
				display: block;
			}

			.skeleton-text.title {
				height: 24px;
				margin-bottom: 10px;
				width: 70%;
				border-radius: 6px;
			}

			.skeleton-text.subtitle {
				height: 16px;
				margin-bottom: 15px;
				width: 40%;
			}

			.skeleton-text.short {
				width: 30%;
			}

			.skeleton-text.medium {
				width: 60%;
			}

			.card-skeleton {
				width: 100%;
				margin-bottom: 20px;
				pointer-events: none;
			}

			.card-skeleton .img-box {
				width: 100%;
				padding-top: 100%;
				border-radius: var(--radius-s);
				margin-bottom: 10px;
				position: relative;
				overflow: hidden;
			}

			.album-detail-skeleton {
				background: #fff;
				border-radius: 12px;
				padding: 20px;
				border: 1px solid #eee;
			}

			.album-header-skeleton {
				display: flex;
				gap: 20px;
				margin-bottom: 25px;
			}

			.album-art-skeleton {
				width: 230px;
				height: 230px;
				border-radius: 8px;
				flex-shrink: 0;
			}

			.album-info-skeleton {
				flex: 1;
				display: flex;
				flex-direction: column;
				justify-content: center;
			}

			.album-actions-skeleton {
				display: flex;
				align-items: center;
				flex-wrap: wrap;
				gap: 10px;
				margin-top: 15px;
			}

			.album-action-skeleton {
				width: 120px;
				height: 34px;
				border-radius: 6px;
				flex: 0 0 auto;
			}

			.album-tools-skeleton {
				display: flex;
				align-items: center;
				justify-content: flex-end;
				align-self: flex-end;
				flex-wrap: wrap;
				gap: 6px;
				margin-left: auto;
			}

			.album-tool-skeleton {
				width: 56px;
				height: 28px;
				border-radius: 6px;
				flex: 0 0 auto;
			}

			.track-skeleton {
				display: flex;
				align-items: center;
				padding: 12px 15px;
				border-bottom: 1px solid #f9f9f9;
			}

			@media (max-width: 768px) {
				.album-header-skeleton {
					flex-direction: column;
					align-items: center;
				}

				.album-art-skeleton {
					width: 180px;
					height: 180px;
				}

				.album-info-skeleton {
					width: 100%;
					align-items: center;
					margin-top: 15px;
				}

				.album-actions-skeleton {
					justify-content: center;
				}

				.album-tools-skeleton {
					align-self: center;
					justify-content: center;
					margin-left: 0;
					margin-top: 10px;
				}
			}

			.state-box {
				grid-column: 1 / -1;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				padding: 60px 20px;
				text-align: center;
				color: var(--text-secondary);
				animation: fadeIn 0.3s ease;
				width: 100%;
			}

			.state-title {
				font-size: 1.2rem;
				font-weight: 600;
				color: var(--text-main);
				margin-bottom: 8px;
			}

			.state-desc {
				font-size: 0.95rem;
				max-width: 300px;
				line-height: 1.5;
				margin-bottom: 25px;
			}

			.retry-btn {
				background: #fff;
				color: var(--primary);
				border: 1px solid var(--primary);
				padding: 8px 25px;
				border-radius: 20px;
				font-size: 0.9rem;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.2s;
				width: auto;
				height: auto;
			}

			.retry-btn:hover {
				background: var(--primary);
				color: #fff;
			}

			.retry-btn:active {
				transform: scale(0.95);
			}

