/* [casino-list] — comparison cards (reference layout, brand teal) */
.bmz-list {
	--bmz-brand: #00655d;
	--bmz-brand-dark: #004a44;
	--bmz-brand-mid: #0a7a70;
	--bmz-brand-soft: #e7f4f2;
	--bmz-head: #0b3d38;
	--bmz-ink: #1a1a1a;
	--bmz-muted: #6b7280;
	--bmz-line: #e6ebef;
	--bmz-ok: #1f9d63;
	--bmz-ok-bg: #e8f7ef;
	--bmz-star: #f5b400;
	--bmz-bg: #ffffff;
	--bmz-cols: minmax(150px, 1.15fr) minmax(130px, 1fr) minmax(110px, 0.85fr) minmax(140px, 1.05fr) minmax(110px, 0.9fr) 148px;
	width: 100%;
	max-width: 100%;
	margin: 1.25rem 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	color: var(--bmz-ink);
	box-sizing: border-box;
}

.bmz-list *,
.bmz-list *::before,
.bmz-list *::after {
	box-sizing: border-box;
}

.bmz-list a {
	box-shadow: none !important;
	text-decoration: none !important;
}

.bmz-item {
	display: grid;
	grid-template-columns: var(--bmz-cols);
	gap: 0;
	align-items: stretch;
	width: 100%;
	background: var(--bmz-bg);
	border: 1px solid var(--bmz-line);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.bmz-item > [class^="bmz-item__"] {
	position: relative;
	padding: 16px 14px;
	min-width: 0;
}

/* Casino */
.bmz-item__casino {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 4px;
	padding-left: 16px !important;
}

.bmz-casino-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
}

.bmz-list--single .bmz-item__casino {
	justify-content: center;
}

.bmz-list--single .bmz-logo,
.bmz-list--single .bmz-logo-link {
	margin: 0 0 6px;
}

.bmz-brand-lockup {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.bmz-rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 22px;
	padding: 0 6px;
	border-radius: 5px;
	background: var(--bmz-brand);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.bmz-logo-link {
	display: inline-block;
	line-height: 0;
	border-radius: 10px;
}

.bmz-logo-link:hover .bmz-logo,
.bmz-logo-link:focus .bmz-logo {
	opacity: 0.92;
}

.bmz-logo {
	width: 132px;
	height: 56px;
	margin: 2px 0 6px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.bmz-logo img {
	display: block;
	max-width: 72%;
	max-height: 68%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.bmz-logo__fallback {
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	padding: 0 6px;
	text-align: center;
}

.bmz-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--bmz-ink);
}

.bmz-license {
	font-size: 11px;
	line-height: 1.3;
	color: var(--bmz-muted);
}

.bmz-kicker {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: var(--bmz-muted);
	margin-bottom: 6px;
	line-height: 1.2;
}

/* Bonus highlight */
.bmz-item__bonus {
	background: var(--bmz-brand-soft);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.bmz-bonus__text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
}

.bmz-bonus__main {
	display: block;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.05;
	color: var(--bmz-brand);
	letter-spacing: -0.02em;
}

.bmz-bonus__sub {
	display: block;
	margin-top: 2px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--bmz-ink);
}

/* Deposit */
.bmz-item__deposit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.bmz-deposit__value {
	display: block;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--bmz-ink);
}

.bmz-coupon {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	width: 100%;
	max-width: 150px;
	margin-top: 10px;
	padding: 7px 10px;
	border: 1.5px dashed #9fc4bf;
	border-radius: 8px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(0, 101, 93, 0.04);
	cursor: pointer;
	text-align: center;
	font: inherit;
	color: inherit;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.bmz-coupon--beside {
	display: none;
}

.bmz-coupon:hover,
.bmz-coupon:focus {
	border-color: var(--bmz-brand);
	outline: none;
	background-color: var(--bmz-brand-soft);
}

.bmz-coupon.is-copied {
	border-color: var(--bmz-ok);
	background-color: var(--bmz-ok-bg);
}

.bmz-coupon__label {
	font-size: 10px;
	font-weight: 700;
	color: var(--bmz-muted);
	line-height: 1.2;
}

.bmz-coupon__code {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #e67e22;
	line-height: 1.2;
	word-break: break-all;
}

.bmz-coupon__hint {
	font-size: 10px;
	font-weight: 700;
	color: var(--bmz-brand);
	line-height: 1.2;
}

.bmz-coupon.is-copied .bmz-coupon__hint {
	color: var(--bmz-ok);
}

/* Payments */
.bmz-item__payments {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bmz-pays {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.bmz-pays li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 4px 10px 4px 5px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--bmz-line);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	color: #4b5563;
	white-space: nowrap;
	max-width: 100%;
}

.bmz-pay__icon {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex: 0 0 auto;
}

.bmz-pay__name {
	overflow: hidden;
	text-overflow: ellipsis;
}

.bmz-muted {
	color: var(--bmz-muted);
	font-weight: 600;
}

/* Rating */
.bmz-item__rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2px;
}

.bmz-rating__value {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	color: var(--bmz-ink);
	font-variant-numeric: tabular-nums;
}

.bmz-rating__of {
	font-size: 14px;
	font-weight: 700;
	color: var(--bmz-muted);
}

.bmz-stars {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	margin: 4px 0 2px;
	line-height: 1;
}

.bmz-star {
	display: block;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.bmz-rating__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--bmz-ok);
	line-height: 1.2;
}

/* Actions */
.bmz-item__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 8px;
}

.bmz-cta,
.bmz-review {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.bmz-cta {
	background: var(--bmz-brand);
	color: #fff !important;
	border: 1px solid var(--bmz-brand);
}

.bmz-cta:hover,
.bmz-cta:focus {
	background: var(--bmz-brand-dark);
	border-color: var(--bmz-brand-dark);
	color: #fff !important;
}

.bmz-review {
	background: #fff;
	color: var(--bmz-brand) !important;
	border: 1px solid #b7d4d0;
}

.bmz-review:hover,
.bmz-review:focus {
	background: var(--bmz-brand-soft);
	border-color: var(--bmz-brand);
	color: var(--bmz-brand-dark) !important;
}

.bmz-show-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	margin: 4px 0 0;
	padding: 12px 20px;
	border: 1px solid #c5ddd9;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, var(--bmz-brand-soft) 100%);
	color: var(--bmz-brand-dark);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 101, 93, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bmz-show-more__text {
	line-height: 1.2;
}

.bmz-show-more__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #b7d4d0;
	color: var(--bmz-brand);
	flex: 0 0 auto;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bmz-show-more__icon svg {
	display: block;
}

.bmz-show-more:hover,
.bmz-show-more:focus {
	background: linear-gradient(180deg, var(--bmz-brand-soft) 0%, #dceeea 100%);
	border-color: var(--bmz-brand);
	color: var(--bmz-brand-dark);
	box-shadow: 0 4px 14px rgba(0, 101, 93, 0.12);
	outline: none;
}

.bmz-show-more:hover .bmz-show-more__icon,
.bmz-show-more:focus .bmz-show-more__icon {
	background: var(--bmz-brand);
	border-color: var(--bmz-brand);
	color: #fff;
	transform: translateY(2px);
}

.bmz-item.is-more[hidden] {
	display: none !important;
}

@media (max-width: 1100px) {
	.bmz-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"casino casino"
			"bonus deposit"
			"payments rating"
			"actions actions";
	}

	.bmz-item > [class^="bmz-item__"] {
		padding: 14px;
	}

	.bmz-item__casino {
		grid-area: casino;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 12px;
		border-bottom: 1px solid var(--bmz-line);
	}

	.bmz-brand-lockup {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.bmz-item__bonus { grid-area: bonus; }
	.bmz-item__deposit {
		grid-area: deposit;
		border-left: 1px solid rgba(0, 101, 93, 0.08);
	}
	.bmz-item__payments {
		grid-area: payments;
		border-top: 1px solid var(--bmz-line);
	}
	.bmz-item__rating {
		grid-area: rating;
		align-items: flex-start;
		text-align: left;
		border-top: 1px solid var(--bmz-line);
	}
	.bmz-item__actions {
		grid-area: actions;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		border-top: 1px solid var(--bmz-line);
	}

	.bmz-logo,
	.bmz-logo-link {
		margin: 0;
		flex: 0 0 auto;
	}

	.bmz-logo-link {
		display: block;
		width: 118px;
		min-width: 118px;
		line-height: normal;
	}

	.bmz-logo {
		width: 118px;
		min-width: 118px;
		height: 50px;
	}

	.bmz-logo-link .bmz-logo {
		width: 100%;
		min-width: 0;
	}

	.bmz-casino-meta {
		flex: 1 1 120px;
	}

	.bmz-pays {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.bmz-cta,
	.bmz-review {
		flex: 1 1 140px;
	}

	.bmz-bonus__main {
		font-size: 24px;
	}

	.bmz-stars {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.bmz-list {
		gap: 10px;
		margin: 1rem 0 1.5rem;
	}

	.bmz-item {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"casino casino"
			"bonus bonus"
			"deposit rating"
			"payments payments"
			"actions actions";
		border-radius: 12px;
	}

	.bmz-item > [class^="bmz-item__"] {
		padding: 12px;
		min-width: 0;
	}

	.bmz-item__casino {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 8px;
		padding: 16px 12px !important;
		background: #fff;
		border-bottom: 1px solid var(--bmz-line);
	}

	.bmz-brand-lockup {
		position: relative;
		display: block;
		width: 140px;
		margin: 0 auto;
		flex-direction: unset;
		align-items: unset;
		gap: 0;
	}

	.bmz-brand-lockup .bmz-rank {
		position: absolute;
		right: calc(100% + 8px);
		top: 50%;
		transform: translateY(-50%);
		margin: 0;
		grid-area: unset;
	}

	.bmz-casino-meta {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 100%;
		flex: 0 0 auto;
		grid-area: unset;
	}

	.bmz-logo-link {
		display: block;
		width: 140px;
		min-width: 140px;
		max-width: 100%;
		margin: 0;
		line-height: normal;
		flex: 0 0 auto;
		grid-area: unset;
	}

	.bmz-brand-lockup > .bmz-logo,
	.bmz-logo-link .bmz-logo {
		display: flex;
		width: 140px;
		min-width: 140px;
		max-width: 100%;
		height: 56px;
		margin: 0;
		flex: 0 0 auto;
		border-radius: 8px;
		grid-area: unset;
	}

	.bmz-logo-link .bmz-logo {
		width: 100%;
		min-width: 0;
	}

	.bmz-logo img {
		max-width: 78%;
		max-height: 72%;
	}

	.bmz-name {
		font-size: 15px;
	}

	.bmz-item__bonus {
		grid-area: bonus;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		text-align: left;
		min-height: 0;
		border-top: 0;
		border-left: 0;
	}

	.bmz-bonus__text {
		align-items: flex-start;
		text-align: left;
		flex: 1 1 auto;
		min-width: 0;
	}

	.bmz-coupon--beside {
		display: flex;
		flex: 0 0 auto;
		width: 100px;
		min-width: 100px;
		max-width: 100px;
		margin-top: 0;
		padding: 6px 8px;
	}

	.bmz-coupon--under {
		display: none;
	}

	.bmz-item__deposit {
		grid-area: deposit;
		align-items: flex-start;
		border-left: 0;
		border-top: 1px solid var(--bmz-line);
		min-height: 0;
	}

	.bmz-item__rating {
		grid-area: rating;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
		text-align: left;
		border-top: 1px solid var(--bmz-line);
		border-left: 1px solid var(--bmz-line);
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.bmz-kicker {
		font-size: 10px;
		margin-bottom: 4px;
	}

	.bmz-bonus__main {
		font-size: 26px;
	}

	.bmz-bonus__sub {
		font-size: 13px;
	}

	.bmz-deposit__value {
		font-size: 18px;
	}

	.bmz-item__payments {
		border-top: 1px solid var(--bmz-line);
	}

	.bmz-pays {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 6px;
	}

	.bmz-pays li {
		padding: 5px 10px 5px 6px;
		font-size: 12px;
	}

	.bmz-rating__value {
		font-size: 20px;
	}

	.bmz-stars {
		margin: 0;
		justify-content: flex-start;
	}

	.bmz-rating__label {
		display: none;
	}

	.bmz-item__actions {
		flex-direction: column;
		gap: 8px;
		padding: 12px !important;
		border-top: 1px solid var(--bmz-line);
		background: #fbfcfc;
	}

	.bmz-cta,
	.bmz-review {
		width: 100%;
		flex: none;
		min-height: 46px;
		font-size: 14px;
		border-radius: 10px;
	}

	.bmz-show-more {
		min-height: 48px;
		padding: 12px 14px;
		font-size: 13px;
		gap: 8px;
		border-radius: 12px;
	}

	.bmz-show-more__icon {
		width: 26px;
		height: 26px;
	}
}

@media (max-width: 380px) {
	.bmz-brand-lockup,
	.bmz-logo-link,
	.bmz-brand-lockup > .bmz-logo {
		width: 120px;
		min-width: 120px;
	}

	.bmz-brand-lockup > .bmz-logo,
	.bmz-logo-link .bmz-logo {
		height: 50px;
	}
}
