			/* =========================================
			   TABS & RESULTS
			   ========================================= */
			.results-container {
				background: transparent;
				min-height: 400px;
				display: flex;
				flex-direction: column;
			}

			.tab-header-wrapper {
				display: flex;
				align-items: center;
				border-bottom: 1px solid #e5e5ea;
				background: transparent;
				margin-bottom: 10px;
				padding-right: 5px;
			}

			.tab-nav {
				display: flex;
				padding: 0 5px;
				overflow-x: auto;
				height: 44px;
				align-items: center;
				flex-shrink: 1;
				flex-grow: 1;
				-webkit-overflow-scrolling: touch;
				scrollbar-width: none;
			}

			.tab-nav::-webkit-scrollbar {
				display: none;
			}

			.tab-nav-item {
				height: 34px;
				padding: 0 14px;
				margin-right: 6px;
				background: rgba(0, 0, 0, 0.05);
				border: none;
				border-radius: 6px;
				cursor: pointer;
				display: flex;
				align-items: center;
				gap: 6px;
				font-size: 0.75rem;
				color: #666;
				transition: all 0.2s ease;
				flex-shrink: 0;
				max-width: 160px;
			}

			.tab-nav-item:hover {
				background: rgba(0, 0, 0, 0.08);
			}

			.tab-nav-title {
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				flex: 1;
				display: block;
			}

			.tab-nav-item.active {
				background: #fff;
				color: #333;
				font-weight: 600;
				box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
			}

			.tab-nav-close {
				font-size: 0.7em;
				width: 14px;
				height: 14px;
				display: flex;
				align-items: center;
				justify-content: center;
				border-radius: 50%;
				opacity: 0.5;
				flex-shrink: 0;
			}

			.tab-nav-close:hover {
				background: rgba(250, 45, 72, 0.1);
				color: var(--primary);
				opacity: 1;
			}

			.tab-controls {
				display: flex;
				align-items: center;
				gap: 4px;
				padding-left: 8px;
				border-left: 1px solid rgba(0, 0, 0, 0.05);
				flex-shrink: 0;
			}

			.tab-ctrl-btn {
				width: 30px;
				height: 30px;
				border-radius: 6px;
				border: none;
				background: transparent;
				color: #86868b;
				cursor: pointer;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 0.9rem;
				transition: all 0.2s;
			}

			.tab-ctrl-btn:hover {
				background: rgba(0, 0, 0, 0.05);
				color: #333;
			}

			.tab-ctrl-btn.danger:hover {
				background: #fff0f0;
				color: var(--primary);
			}

			.tab-dropdown {
				position: relative;
			}

			.tab-dropdown-menu {
				position: absolute;
				right: 0;
				top: 36px;
				background: #fff;
				border: 1px solid #e5e5ea;
				border-radius: 10px;
				box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
				width: 220px;
				z-index: 1000;
				padding: 5px;
				display: none;
				transform-origin: top right;
				animation: scaleIn 0.15s ease;
				max-height: 300px;
				overflow-y: auto;
			}

			@keyframes scaleIn {
				from {
					opacity: 0;
					transform: scale(0.95);
				}

				to {
					opacity: 1;
					transform: scale(1);
				}
			}

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

			.dropdown-item {
				padding: 8px 10px;
				font-size: 0.85rem;
				border-radius: 6px;
				cursor: pointer;
				display: flex;
				align-items: center;
				justify-content: space-between;
				color: #333;
				transition: background 0.1s;
			}

			.dropdown-item:hover {
				background: #f5f5f7;
			}

			.dropdown-item.active {
				color: var(--primary);
				font-weight: 600;
				background: rgba(250, 45, 72, 0.05);
			}

			.dropdown-item-close {
				opacity: 0.4;
				padding: 4px;
				font-size: 0.9em;
			}

			.dropdown-item-close:hover {
				opacity: 1;
				color: var(--primary);
			}

			.tab-panes-container {
				padding: 0 5px;
				flex: 1;
				position: relative;
				min-height: 50vh;
			}

			.tab-pane {
				animation: slideFadeIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
			}

			@keyframes slideFadeIn {
				from {
					opacity: 0;
					transform: translateX(10px);
				}

				to {
					opacity: 1;
					transform: translateX(0);
				}
			}

			.result-grid {
				display: grid;
				grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
				gap: 20px 15px;
				padding-bottom: 20px;
				width: 100%;
			}

			@media (max-width: 768px) {
				.result-grid {
					grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
					gap: 12px;
				}
			}

			.card {
				background: transparent;
				border: none;
				cursor: pointer;
				position: relative;
				z-index: 1;
				transition: opacity 0.3s;
				width: 100%;
				content-visibility: auto;
				contain-intrinsic-size: 160px 220px;
			}

			.card:hover .card-content h4 {
				color: var(--primary);
			}

			.card:active {
				opacity: 0.7;
			}

			.card-img-wrapper {
				width: 100%;
				padding-top: 100%;
				height: 0;
				border-radius: var(--radius-s);
				overflow: hidden;
				background: #f0f0f0;
				margin-bottom: 8px;
				position: relative;
			}

			.card-img-wrapper img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
				transition: transform 0.5s;
			}

			@media (min-width: 769px) {
				.card:hover .card-img-wrapper img {
					transform: scale(1.05);
				}
			}

			.card-content {
				padding: 0;
				text-align: left;
				width: 100%;
			}

			.card-content h4 {
				font-size: 0.9rem;
				font-weight: 600;
				color: var(--text-main);
				margin-bottom: 2px;
				display: flex;
				align-items: center;
				width: 100%;
				transition: color 0.2s;
			}

			.card-content h4 span:first-child {
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				flex: 1;
			}

			.card-content h4 span.rating {
				flex-shrink: 0;
				margin-left: 4px;
				background: #000;
				color: #fff;
				font-size: 0.6rem;
				padding: 1px 4px;
				border-radius: 3px;
				font-weight: 700;
				display: inline-block;
				line-height: 1.2;
			}

			.card-content p {
				font-size: 0.8rem;
				color: var(--text-secondary);
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				margin-top: 1px;
			}

			.album-detail {
				background: #fff;
				border-radius: 12px;
				padding: 20px;
				margin: 0 auto;
				border: 1px solid #eee;
				animation: fadeIn 0.3s ease;
			}

