/* === Slots Catalog Block === */

.slots-catalog-block {
	padding: 30px 0 40px;
	width: 100%;
}

/* === Section Header === */
.scb-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 10px;
}

.scb-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--text-main, #fff);
	line-height: 1.2;
	margin: 0;
}

.scb-title-accent {
	color: var(--accent-color, #00E574);
}

.scb-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 229, 116, 0.1);
	color: var(--accent-color, #00E574);
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.scb-view-all i {
	transition: transform 0.3s ease;
}

.scb-view-all:hover {
	background: var(--accent-color, #00E574);
	color: #000;
}

.scb-view-all:hover i {
	transform: translateX(4px);
}

/* === Carousel Track === */
.scb-carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding-bottom: 20px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	cursor: grab;
}

.scb-carousel::-webkit-scrollbar {
	display: none;
}

.scb-carousel.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

/* === Card === */
.scb-card {
	background-color: var(--bg-surface, #151A23);
	border: 1px solid var(--border-color, #262D3D);
	border-radius: 16px;
	min-width: 260px;
	max-width: 260px;
	flex-shrink: 0;
	scroll-snap-align: start;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.scb-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-color, #00E574);
	box-shadow: 0 10px 25px rgba(0, 229, 116, 0.1);
}

/* === Image Area === */
.scb-image {
	width: 100%;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	color: rgba(255, 255, 255, 0.65);
	position: relative;
	flex-shrink: 0;
}

.scb-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* === Content === */
.scb-content {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

/* === Card Header === */
.scb-card-header {
	margin-bottom: 14px;
}

.scb-card-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--text-main, #fff);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.scb-provider {
	font-size: 12px;
	color: var(--accent-color, #00E574);
	font-weight: 600;
	margin-top: 2px;
}

/* === Specs Grid 2x2 === */
.scb-specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	background-color: var(--bg-main, #0B0E14);
	border: 1px solid var(--border-color, #262D3D);
	border-radius: 12px;
	padding: 12px;
	margin-bottom: 16px;
}

.scb-spec {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.scb-spec-label {
	font-size: 10px;
	color: var(--text-muted, #8A93A6);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.scb-spec-value {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-main, #fff);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* === Play Button === */
.scb-play-btn {
	display: block;
	width: 100%;
	background-color: var(--accent-color, #00E574);
	color: #000;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	transition: background-color 0.3s ease;
	margin-top: auto;
}

.scb-card:hover .scb-play-btn {
	background-color: var(--accent-hover, #00C462);
}

/* === Desktop === */
@media (min-width: 992px) {
	.scb-title { font-size: 32px; }
	.scb-view-all { font-size: 15px; padding: 10px 20px; }
	.scb-card { min-width: 280px; max-width: 280px; }
	.scb-image { height: 160px; }
}
