.em-casino-slots {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #fff;
}

.em-casino-slot {
	display: grid;
	grid-template-columns: 36px 56px minmax(0, 1fr) 88px 72px 120px;
	align-items: center;
	gap: 14px;
	padding: 8px 14px;
	min-height: 64px;
	border-top: 1px solid #f3f4f6;
	transition: background 0.1s ease;
}

.em-casino-slot * {
	margin: 0;
	padding: 0;
}

.em-casino-slot:first-child {
	border-top: 0;
}

.em-casino-slot:hover {
	background: #f9fafb;
}

.em-casino-slot__rank {
	font-size: 18px;
	font-weight: 700;
	color: #6b7280;
	text-align: center;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.em-casino-slot:nth-child(1) .em-casino-slot__rank { color: #d4af37; }
.em-casino-slot:nth-child(2) .em-casino-slot__rank { color: #9ca3af; }
.em-casino-slot:nth-child(3) .em-casino-slot__rank { color: #b87333; }

.em-casino-slot__image {
	width: 56px;
	height: 56px;
	border-radius: 6px;
	overflow: hidden;
	background: #f3f4f6;
}

.em-casino-slot__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.em-casino-slot__info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}

.em-casino-slot__name {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.em-casino-slot__provider {
	margin: 0;
	font-size: 12px;
	color: #9ca3af;
	white-space: nowrap;
	line-height: 1.2;
}

.em-casino-slot__stats {
	display: contents;
	font-variant-numeric: tabular-nums;
}

.em-casino-slot__stat {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1px;
	line-height: 1.1;
}

.em-casino-slot__stat-label {
	font-size: 10px;
	font-weight: 500;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.em-casino-slot__stat-value {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.em-casino-slot__stat--rating .em-casino-slot__stat-value::after {
	content: " ★";
	color: #f59e0b;
	font-size: 12px;
}

.em-casino-slot__stat--jackpot .em-casino-slot__stat-value {
	color: #059669;
}

.em-casino-slot__stat--jackpot .em-casino-slot__stat-value.is-empty {
	color: #d1d5db;
	font-weight: 400;
}

@media (max-width: 640px) {
	.em-casino-slot {
		grid-template-columns: 24px 40px minmax(0, 1fr);
		grid-template-rows: auto auto;
		gap: 2px 8px;
		padding: 6px 8px;
		min-height: 0;
	}

	.em-casino-slot__image {
		width: 40px;
		height: 40px;
		grid-row: span 2;
	}

	.em-casino-slot__rank {
		grid-row: span 2;
		font-size: 14px;
	}

	.em-casino-slot__name {
		font-size: 13px;
	}

	.em-casino-slot__provider {
		display: none;
	}

	.em-casino-slot__stats {
		display: flex;
		grid-column: 3 / -1;
		grid-row: 2;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 4px 14px;
		line-height: 1.05;
	}

	.em-casino-slot__stat {
		flex-direction: column;
		align-items: flex-start;
		gap: 1px;
	}

	.em-casino-slot__stat-label {
		font-size: 9px;
	}

	.em-casino-slot__stat-value {
		font-size: 12px;
	}
}
