:root {
	--lind-navy: #071d2b;
	--lind-navy-light: #103247;
	--lind-gold: #cda85b;
	--lind-background: #f5f7f8;
	--lind-surface: #ffffff;
	--lind-text: #102028;
	--lind-muted: #5d6b73;
	--lind-border: #dce3e7;
	--lind-container: 1240px;
	--lind-radius: 14px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lind-background);
	color: var(--lind-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.lind-container {
	width: min(calc(100% - 32px), var(--lind-container));
	margin-inline: auto;
}

.site-header {
	background: var(--lind-navy);
	color: #ffffff;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 32px;
}

.site-name {
	color: #ffffff;
	font-size: 21px;
	font-weight: 800;
	text-decoration: none;
}

.primary-navigation ul,
.footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a,
.footer-navigation a {
	text-decoration: none;
}

.site-main {
	padding-block: 56px;
}

.site-main article {
	padding: clamp(24px, 4vw, 52px);
	background: var(--lind-surface);
	border: 1px solid var(--lind-border);
	border-radius: var(--lind-radius);
}

h1,
h2,
h3 {
	line-height: 1.2;
}

h1 {
	margin-top: 0;
	font-size: clamp(32px, 5vw, 54px);
}


.lind-page-title {
	overflow-wrap: anywhere;
	word-break: normal;
}

.lind-page-title__domain {
	white-space: nowrap;
}

.site-footer {
	margin-top: 64px;
	padding-block: 40px;
	background: var(--lind-navy);
	color: #ffffff;
}

.responsible-gambling,
.site-copyright {
	color: rgba(255, 255, 255, 0.72);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #ffffff;
	color: #000000;
}

@media (max-width: 760px) {
	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 20px;
	}

	.primary-navigation ul {
		gap: 10px 18px;
	}

	.site-main {
		padding-block: 28px;
	}
}

/* Casino comparison */

.casino-comparison {
	margin-block: 48px;
}

.casino-comparison__heading {
	margin-bottom: 20px;
}

.casino-comparison__heading h2 {
	margin: 0;
	font-size: clamp(26px, 4vw, 38px);
}

.casino-table {
	overflow: hidden;
	background: var(--lind-surface);
	border: 1px solid var(--lind-border);
	border-radius: var(--lind-radius);
	box-shadow: 0 18px 50px rgba(7, 29, 43, 0.08);
}

.casino-table__header,
.casino-row {
	display: grid;
	grid-template-columns:
		minmax(190px, 1.2fr)
		minmax(190px, 1.15fr)
		minmax(220px, 1.2fr)
		minmax(135px, 0.75fr);
	align-items: center;
	column-gap: 24px;
}

.casino-table__header {
	padding: 15px 20px;
	background: var(--lind-navy);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.casino-row {
	position: relative;
	min-height: 154px;
	padding: 20px;
	background: #ffffff;
	border-top: 1px solid var(--lind-border);
}

.casino-row:first-of-type {
	border-top: 0;
}

.casino-row:hover {
	background: #fbfcfc;
}

.casino-row__casino {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	text-align: center;
}

.casino-position {
	position: absolute;
	top: -8px;
	left: -4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding-inline: 8px;
	background: var(--lind-gold);
	color: var(--lind-navy);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 900;
}

.casino-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 74px;
	padding: 8px;
	background: #ffffff;
	border-radius: 10px;
	text-decoration: none;
}

.casino-logo {
	width: 100%;
	max-width: 140px;
	height: 64px;
	object-fit: contain;
}

.casino-name {
	margin-top: 6px;
	color: var(--lind-navy);
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
}

.casino-row__bonus strong {
	display: block;
	color: var(--lind-navy);
	font-size: 18px;
	line-height: 1.35;
}




.casino-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.casino-payment {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 5px 8px;
	background: #f2f5f6;
	border: 1px solid var(--lind-border);
	border-radius: 7px;
	color: var(--lind-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.casino-payment img {
	width: auto;
	max-width: 44px;
	height: 22px;
	object-fit: contain;
}

.casino-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 11px 16px;
	background: var(--lind-navy);
	color: #ffffff;
	border-radius: 9px;
	box-shadow: 0 8px 18px rgba(7, 29, 43, 0.18);
	font-size: 14px;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		transform 150ms ease,
		background-color 150ms ease,
		box-shadow 150ms ease;
}

.casino-cta:hover,
.casino-cta:focus-visible {
	background: var(--lind-navy-light);
	box-shadow: 0 10px 24px rgba(7, 29, 43, 0.24);
	transform: translateY(-1px);
}

.casino-mobile-label {
	display: none;
}

@media (max-width: 980px) {
	.casino-table__header {
		display: none;
	}

	.casino-table {
		display: grid;
		gap: 16px;
		overflow: visible;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.casino-row {
		display: grid;
		grid-template-columns: 1fr;
		row-gap: 18px;
		min-height: 0;
		padding: 24px;
		border: 1px solid var(--lind-border);
		border-radius: var(--lind-radius);
		box-shadow: 0 12px 34px rgba(7, 29, 43, 0.07);
	}

	.casino-row:first-of-type {
		border-top: 1px solid var(--lind-border);
	}

	.casino-position {
		top: -10px;
		left: -10px;
	}

	.casino-logo-link {
		width: 170px;
		height: 82px;
	}

	.casino-logo {
		max-width: 155px;
		height: 70px;
	}

	.casino-name {
		font-size: 14px;
	}

	.casino-mobile-label {
		display: block;
		margin-bottom: 5px;
		color: var(--lind-muted);
		font-size: 11px;
		font-weight: 900;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.casino-row__bonus,
	.casino-row__payments {
		text-align: left;
	}

	.casino-row__action {
		margin-top: 2px;
	}

	.casino-cta {
		min-height: 52px;
	}
}

/* Market content */

.lind-market-intro {
	max-width: 900px;
	margin-bottom: 36px;
	font-size: 18px;
}

.lind-market-intro p:first-child {
	margin-top: 0;
}

.lind-market-sections {
	display: grid;
	gap: 10px;
	max-width: 920px;
	margin-top: 54px;
}

.lind-content-section {
	padding-block: 24px;
	border-bottom: 1px solid var(--lind-border);
}

.lind-content-section h2,
.lind-faq h2,
.lind-internal-links h2 {
	margin-top: 0;
	color: var(--lind-navy);
	font-size: clamp(24px, 3vw, 34px);
}

.lind-faq {
	max-width: 920px;
	margin-top: 52px;
}

.lind-faq__items {
	display: grid;
	gap: 12px;
}

.lind-faq__item {
	background: #ffffff;
	border: 1px solid var(--lind-border);
	border-radius: 10px;
}

.lind-faq__item summary {
	position: relative;
	padding: 18px 48px 18px 20px;
	color: var(--lind-navy);
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.lind-faq__item summary::-webkit-details-marker {
	display: none;
}

.lind-faq__item summary::after {
	position: absolute;
	top: 50%;
	right: 20px;
	font-size: 22px;
	content: "+";
	transform: translateY(-50%);
}

.lind-faq__item[open] summary::after {
	content: "−";
}

.lind-faq__item div {
	padding: 0 20px 18px;
	color: var(--lind-muted);
}

.lind-faq__item p {
	margin: 0;
}

.lind-internal-links {
	margin-top: 52px;
	padding: 28px;
	background: #eef2f4;
	border-radius: var(--lind-radius);
}

.lind-internal-links ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lind-internal-links a {
	color: var(--lind-navy);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

@media (max-width: 700px) {
	.lind-market-intro {
		font-size: 16px;
	}

	.lind-internal-links ul {
		grid-template-columns: 1fr;
	}
}


@media (max-width: 700px) {
	.site-main article {
		padding: 22px 18px;
	}

	.lind-page-title {
		font-size: clamp(27px, 8vw, 38px);
	}

	.lind-page-title__keyword,
	.lind-page-title__domain {
		display: block;
	}

	.lind-page-title__domain {
		margin-top: 8px;
		font-size: 0.64em;
		line-height: 1.25;
		white-space: normal;
		overflow-wrap: anywhere;
	}
}

/* Content Engine V2 */
.lind-market-content--v2 .lind-v2-block {
	max-width: 920px;
	margin-top: 42px;
	padding-top: 4px;
}
.lind-market-content--v2 .lind-v2-block:first-child {
	margin-top: 0;
}
.lind-market-content--v2 .lind-v2-block h2 {
	margin: 0 0 16px;
	color: var(--lind-navy);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
}
.lind-market-content--v2 .lind-v2-block p {
	margin: 0 0 16px;
}
.lind-market-content--v2 .lind-v2-block ul {
	margin: 10px 0 0;
	padding-left: 22px;
}
.lind-market-content--v2 .casino-comparison {
	margin-top: 34px;
}
