:root {
	--swiss-primary: #C8102E;
	--swiss-primary-dark: #8B0000;
	--swiss-accent: #FFB300;
	--swiss-white: #ffffff;
	--swiss-gray: #6b7280;
	--swiss-gray-light: #f3f4f6;
	--swiss-gray-dark: #374151;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: var(--swiss-gray-dark);
	background-color: var(--swiss-white);
}

/* Header Styles */
header {
	background: white;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 50;
}

.header {
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 50;
}

.header__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 0.5rem;
}

.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.25rem 0;
	gap: 1rem;
}

.header__nav {
	display: none;
}

@media (min-width: 768px) {
	.header__nav {
		display: flex;
		gap: 2rem;
	}
}

.header__buttons {
	display: flex;
	gap: 0.25rem;
	margin-left: auto;
}

@media (min-width: 640px) {
	.header__buttons {
		gap: 0.75rem;
	}
}


.header__btn {
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.header__btn--login {
	border: 2px solid #C8102E;
	color: #C8102E;
	background-color: transparent;
}

.header__btn--login:hover {
	background-color: #C8102E;
	color: #fff;
}

.header__btn--register {
	border: 2px solid #C8102E;
	background-color: #C8102E;
	color: #fff;
}

.header__btn--register:hover {
	background-color: #8B0000;
}


.logo img {
	max-width: 120px;
	height: auto;
}

.logo.header__logo {
	line-height: 1;
}

/* Header right: lang dropdown + buttons */
.header-right {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}

.header-right .header__buttons {
	margin-left: 0;
	padding-left: 1rem;
	border-left: 1px solid rgba(0,0,0,.08);
}

/* Language dropdown */
.header-lang-dropdown {
	position: relative;
}

.header-lang__trigger {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 0.75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: all .2s;
}

.header-lang__trigger:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.header-lang__trigger:focus {
	outline: none;
	border-color: #C8102E;
	box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.2);
}

.header-lang__chevron {
	font-size: 0.65rem;
	opacity: 0.7;
	transition: transform .2s;
}

.header-lang-dropdown:hover .header-lang__chevron,
.header-lang-dropdown:has(.header-lang__menu--open) .header-lang__chevron {
	transform: rotate(180deg);
}

.header-lang__menu {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	min-width: 140px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	box-shadow: 0 10px 25px rgba(0,0,0,.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 100;
	overflow: hidden;
}

.header-lang__menu--open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header-lang__option {
	display: block;
	padding: 0.6rem 1rem;
	font-size: 0.875rem;
	color: #374151;
	text-decoration: none;
	transition: background .15s;
	border-bottom: 1px solid #f1f5f9;
}

.header-lang__option:last-child {
	border-bottom: none;
}

.header-lang__option:hover {
	background: #f8fafc;
	color: #C8102E;
}

.header-lang__option--active {
	background: #fef2f2;
	color: #C8102E;
	font-weight: 600;
}

/* Ссылки внутри strong тоже стилизуются */
.text a strong,
.hero a strong {
	color: inherit;
}
.text ul,
.text ol {
	margin-bottom: 20px;
	padding-left: 25px;
}
.text ul {
	list-style: disc;
}
.text ol {
	list-style: decimal;
}
.text ul li,
.text ol li {
	padding-bottom: 4px;
}
.text img {
	max-width: 100%;
	height: auto;
	margin-bottom: 25px;
}

/* Hero Section - Compact & Beautiful */
.hero {
	background: linear-gradient(rgba(200, 16, 46, 0.85), rgba(139, 0, 0, 0.85)),
	url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="600" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23ffffff"/><path d="M0,400 Q300,250 600,400 T1200,400 L1200,600 L0,600 Z" fill="%23C8102E" opacity="0.9"/></svg>');
	padding: 4rem 0 3rem;
	color: white;
	min-height: 35vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.hero-content-left {
	text-align: left;
}

.hero h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	text-align: left;
}

.hero-content-left p {
	text-align: left;
}

/* Author Info - Minimized */
.author-info-minimal {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2rem;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	margin-top: 1rem;
	position: relative;
	z-index: 2;
}

.author-avatar-small {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #C8102E;
	font-size: 0.875rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-avatar-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	margin: 0;
}

.author-text {
	color: white;
	opacity: 0.95;
}

.author-text a {
	color: white;
	text-decoration: none;
}

.author-text a:hover {
	text-decoration: underline;
}

/* Breadcrumbs - Compact */
.breadcrumbs {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 0.5rem 1rem;
	margin-top: 1rem;
	font-size: 0.8rem;
	display: inline-block;
	position: relative;
	z-index: 2;
}

.breadcrumbs a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.breadcrumbs a:hover {
	opacity: 1;
}

.breadcrumb-separator {
	margin: 0 0.5rem;
	opacity: 0.6;
}

/* Casino Table - French Translation & Swiss Style */
.casino-table {
	background: white;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 2px solid #fee2e2;
}

.casino-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 1.5rem;
	border-bottom: 1px solid #f3f4f6;
	position: relative;
	counter-increment: casino-counter;
}

@media (min-width: 1024px) {
	.casino-row {
		grid-template-columns: 200px 150px 250px 250px 200px;
		justify-content: space-between;
		align-items: center;
		padding: 1.25rem 1.5rem;
	}
}

.casino-row::before {
	content: counter(casino-counter);
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: #C8102E;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	z-index: 10;
}

.casino-counter {
	counter-reset: casino-counter;
}

.casino-logo {
	background: #f8fafc;
	border-radius: 0.5rem;
	padding: 1rem;
	text-align: center;
	font-weight: 600;
	color: var(--swiss-gray);
	min-height: 60px;
}
.casino-logo__thumb {
	width: 100%;
	margin-bottom: 4px;
}
.casino-logo__thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
}

.casino-rating {
	text-align: center;
	padding: 0.75rem;
}

.rating-score {
	display: inline-block;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.rating-stars {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	color: #fbbf24;
}

.casino-bonus {
	background: linear-gradient(135deg, #dbeafe, #bfdbfe);
	border-radius: 0.75rem;
	padding: 1rem;
	text-align: center;
	border: 1px solid #93c5fd;
}

.bonus-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1d4ed8;
	margin-bottom: 0.25rem;
}

.bonus-text {
	font-size: 0.875rem;
	color: #3730a3;
}

.casino-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
}

.info-label {
	color: var(--swiss-gray);
	font-weight: 500;
}

.info-value {
	font-weight: 600;
	color: var(--swiss-gray-dark);
}

.casino-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.btn-play {
	background: linear-gradient(135deg, #C8102E, #8B0000);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-play:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(200, 16, 46, 0.4);
}

.btn-review {
	background: white;
	color: #C8102E;
	padding: 0.75rem 1.5rem;
	border: 2px solid var(--swiss-primary);
	border-radius: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s;
}

.btn-review:hover {
	background: #C8102E;
	color: white;
}

.advantages {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.advantages {
		grid-template-columns: repeat(2, 1fr);
	}
}

.advantages__item {
	border-radius: 1rem;
	border: 1px solid;
	padding: 1.5rem;
}

.advantages__item--green {
	background-color: #f0fdf4;
	border-color: #bbf7d0;
}

.advantages__item--red {
	background-color: #fef2f2;
	border-color: #fecaca;
}

.advantages__title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}

.advantages__title--green {
	color: #065f46;
}

.advantages__title--red {
	color: #7f1d1d;
}

.advantages__icon-title {
	margin-right: 0.5rem;
}

.advantages__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.advantages__list li {
	display: flex;
	align-items: flex-start;
}

.advantages__icon-check {
	color: #16a34a;
	margin-right: 0.75rem;
	margin-top: 0.25rem;
}

.advantages__icon-times {
	color: #dc2626;
	margin-right: 0.75rem;
	margin-top: 0.25rem;
}

.casino-terms {
	grid-column: 1 / -1;
	font-size: 0.75rem;
	color: var(--swiss-gray);
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid #f3f4f6;
	margin-top: 0.5rem;
}

/* Notre Recommandation Block */
.reco-block {
	display: block;
	background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	padding: 1.5rem 2rem;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.reco-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--swiss-primary) 0%, var(--swiss-primary-dark) 100%);
}

.reco-block:hover {
	border-color: rgba(200, 16, 46, 0.4);
	box-shadow: 0 8px 30px rgba(200, 16, 46, 0.15);
	transform: translateY(-2px);
}

.reco-badge {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--swiss-primary);
	margin-bottom: 1rem;
	letter-spacing: 0.02em;
}

.reco-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.reco-logo-wrap {
	flex-shrink: 0;
	width: 140px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a1a2e;
	border-radius: 12px;
	padding: 0.5rem 1rem;
}

.reco-logo {
	max-width: 120px;
	max-height: 50px;
	object-fit: contain;
}

.reco-body {
	flex: 1;
	min-width: 200px;
}

.reco-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--swiss-gray-dark);
	margin-bottom: 0.35rem;
	line-height: 1.2;
}

.reco-features {
	font-size: 0.95rem;
	color: #4a5568;
	margin-bottom: 0.25rem;
}

.reco-bonus {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--swiss-primary);
}

.reco-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--swiss-primary) 0%, var(--swiss-primary-dark) 100%);
	color: white !important;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(200, 16, 46, 0.35);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.reco-block:hover .reco-cta {
	background: linear-gradient(135deg, #e01c3d 0%, var(--swiss-primary) 100%);
	box-shadow: 0 6px 20px rgba(200, 16, 46, 0.45);
}

@media (max-width: 768px) {
	.reco-block {
		padding: 1.25rem 1rem;
	}
	.reco-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	.reco-logo-wrap {
		width: 100%;
		height: 56px;
	}
	.reco-cta {
		justify-content: center;
	}
}

/* Author Section - Redesigned */
.author-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 4rem 0;
}

.author-card {
	background: white;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	max-width: 800px;
	margin: 0 auto;
	border: 1px solid #e2e8f0;
}

.author-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.author-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--swiss-primary), #8B0000);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	color: var(--swiss-gray-dark);
	box-shadow: 0 8px 16px rgba(200, 16, 46, 0.3);
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	margin: 0;
}

.author-meta h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--swiss-gray-dark);
	margin-bottom: 0.25rem;
}

.author-meta h3 a {
	color: inherit;
	text-decoration: none;
}

.author-meta h3 a:hover {
	color: var(--swiss-primary);
	transition: color 0.3s;
}

.author-title {
	color: #C8102E;
	font-weight: 600;
	font-size: 1rem;
}

.author-bio {
	color: var(--swiss-gray);
	line-height: 1.7;
}

.author-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #C8102E;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--swiss-gray);
	margin-top: 0.25rem;
}

.author-card--full {
	max-width: none;
	margin: 0;
}

.author-quote {
	font-style: italic;
	border-left: 4px solid #C8102E;
	padding-left: 1rem;
	margin: 1rem 0;
	color: var(--swiss-gray);
	font-size: 1.0625rem;
}

.author-credit {
	font-size: 0.9rem;
	color: var(--swiss-gray);
	margin-top: 1rem;
}

.sources-section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.sources-section h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.sources-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sources-list li {
	padding: 0.35rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.sources-list li:last-child {
	border-bottom: none;
}

.sources-list a {
	color: #2C5F8D;
}

/* Footer - Simplified */
.footer-simplified {
	background: var(--swiss-gray-dark);
	color: white;
	padding: 3rem 0 2rem;
}

.footer-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.footer-brand {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
}

.footer-description {
	color: #9ca3af;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-legal a {
	color: #d1d5db;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s;
}

.footer-legal a:hover {
	color: white;
}

.responsible-gaming {
	background: rgba(200, 16, 46, 0.1);
	border: 1px solid rgba(200, 16, 46, 0.3);
	border-radius: 0.75rem;
	padding: 1rem;
	margin: 2rem 0;
	font-size: 0.875rem;
	color: #C8102E;
}

.copyright {
	font-size: 0.75rem;
	color: #6b7280;
	padding-top: 2rem;
	border-top: 1px solid #374151;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
	.header__content {
		flex-wrap: nowrap;
		gap: 0.5rem;
	}
	
	.header-lang-dropdown {
		display: none;
	}
	
	.header-right .header__buttons {
		border-left: none;
		padding-left: 0;
	}
	
	.logo {
		flex-shrink: 0;
		min-width: 0;
	}
	
	.logo img {
		max-width: 135px;
	}
	
	.header__buttons {
		margin-left: auto;
		width: auto;
		justify-content: flex-end;
		flex-shrink: 0;
	}
	
	.header-right .header__buttons {
		margin-left: 0;
	}
	
	.header__btn {
		font-size: 0.875rem;
		padding: 0.4rem 0.7rem;
		white-space: nowrap;
	}
	.hero {
		padding: 2rem 0 1.5rem;
		min-height: 30vh;
	}

	.hero h1 {
		font-size: 1.75rem;
		text-align: center;
	}

	.hero-content-left {
		text-align: center;
	}

	.hero-content-left p {
		text-align: center;
	}

	.hero-breadcrumbs {
		justify-content: center;
	}

	.hero-footer-bar {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem 1rem;
	}

	.eeat-disclaimer {
		font-size: 0.7rem;
		white-space: normal;
		text-align: center;
	}

	.hero-selection-disclaimer {
		font-size: 0.8rem;
		padding: 0.6rem 1rem;
		margin-top: 0.75rem;
	}

	.hero-disclaimer-item {
		font-size: 0.8rem;
		padding: 0.6rem 1rem;
	}

	.author-info-minimal {
		flex-direction: row;
		text-align: left;
		gap: 0.5rem;
		padding: 0.75rem 1rem;
	}

	.casino-row {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1rem;
	}

	.casino-row::before {
		top: 0.5rem;
		left: 0.5rem;
	}

	.casino-actions {
		flex-direction: row;
		gap: 0.5rem;
	}

	.author-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.author-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.footer-legal {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.header__content {
		flex-wrap: nowrap;
		gap: 0.4rem;
		padding-left: 0.25rem;
		padding-right: 0.25rem;
	}
	
	.logo img {
		max-width: 135px;
	}
	
	.header-right {
		flex-shrink: 0;
		justify-content: flex-end;
	}
	
	.header__buttons {
		gap: 0.4rem;
	}
	
	.header__btn {
		font-size: 0.8125rem;
		padding: 0.35rem 0.6rem;
		flex-shrink: 0;
	}
	.hero h1 {
		font-size: 1.5rem;
	}

	.casino-actions {
		flex-direction: column;
	}

	.author-card {
		padding: 1.5rem;
		margin: 0;
	}
}

/* Überschriften: h1 > h2 > h3 */
.text h1,
.text h2,
.text h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
	font-weight: 700;
}
.text h1 {
	font-size: 2rem;
}
.text h2 {
	font-size: 1.5rem;
	padding-top: 0.5rem;
}
.text h3 {
	font-size: 1.25rem;
}
.text h4 {
	margin-bottom: 1rem;
	font-size: 1.125rem;
	font-weight: 600;
}
@media (min-width: 768px) {
	.text h1 { font-size: 2.5rem; }
	.text h2 { font-size: 1.75rem; }
	.text h3 { font-size: 1.375rem; }
}

.text p {
	margin-bottom: 20px;
}

/* Стили для ссылок в тексте и hero-блоке */
.text a,
.text p a,
.text li a {
	color: #2C5F8D;
	text-decoration: none;
	transition: all 0.3s ease;
	background-color: transparent;
	border-bottom: none;
}

.text a:hover,
.text p a:hover,
.text li a:hover {
	color: #1a4a6b;
	background-color: rgba(44, 95, 141, 0.12);
	padding: 2px 4px;
	margin: -2px -4px;
	border-radius: 4px;
}

.hero a.breadcrumb-link {
	color: white;
}

.hero a.breadcrumb-link:hover {
	color: rgba(255, 255, 255, 0.75);
	background-color: transparent;
}

.hero .author-text a {
	color: white;
	text-decoration: none;
}

.hero .author-text a:hover {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	background-color: transparent;
	padding: 0;
	margin: 0;
}

/* Hero: ссылка в абзаце под h1 — заметная, не синяя */
.hero .hero-content-left p a {
	color: rgba(255, 255, 255, 0.98);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hero .hero-content-left p a:hover {
	color: white;
	background-color: rgba(255, 255, 255, 0.15);
	padding: 2px 4px;
	margin: -2px -4px;
	border-radius: 4px;
}

/* Hero Footer Bar */
.hero-footer-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border-radius: 2rem;
	padding: 0.5rem 1.25rem;
	gap: 2rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 2;
}

.hero-footer-bar .author-info-minimal {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	backdrop-filter: none;
}

.eeat-disclaimer {
	color: white;
	font-size: 0.8rem;
	opacity: 0.9;
}

.eeat-disclaimer a {
	color: white;
	text-decoration: underline;
}

.eeat-disclaimer a:hover {
	opacity: 1;
	background-color: rgba(255, 255, 255, 0.12);
	color: white;
}

.hero-selection-disclaimer {
	margin-top: 1rem;
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	border-left: 4px solid rgba(255, 255, 255, 0.5);
	border-radius: 0 0.5rem 0.5rem 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.875rem;
	line-height: 1.5;
	font-style: italic;
	width: 100%;
	text-align: left;
}

.hero-disclaimers {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.hero-disclaimer-item {
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.1);
	border-left: 4px solid rgba(255, 255, 255, 0.5);
	border-radius: 0 0.5rem 0.5rem 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.875rem;
	line-height: 1.5;
}

.hero-disclaimer-item strong {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9375rem;
}

.hero-disclaimer-item p {
	margin: 0;
	font-style: italic;
	font-size: inherit;
}

.hero-disclaimer-item a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hero-disclaimer-item a:hover {
	color: #fff;
}

/* Selection disclaimer - under casino grid */
.selection-disclaimer {
	margin-top: 1.5rem;
	padding: 1rem 1.25rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: #475569;
}

.selection-disclaimer p {
	margin: 0 0 0.5rem;
}

.selection-disclaimer p:last-child {
	margin-bottom: 0;
}

/* Footnote / Hinweis callout */
.footnote-callout {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #64748b;
	background: #f8fafc;
	border-left: 4px solid #94a3b8;
	border-radius: 0 0.375rem 0.375rem 0;
}

.footnote-callout p {
	margin: 0;
}

.footnote-callout strong {
	color: #475569;
}

/* Bonus cards grid - 3 per row, 2 rows */
.bonus-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.bonus-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	padding: 1.25rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: box-shadow .2s, border-color .2s;
}

.bonus-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
	border-color: #cbd5e1;
}

.bonus-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #475569;
}

@media (max-width: 768px) {
	.bonus-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Game type cards - 2 per row */
.game-type-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.game-type-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	padding: 1.25rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: box-shadow .2s, border-color .2s;
}

.game-type-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
	border-color: #cbd5e1;
}

.game-type-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: #C8102E;
}

.game-type-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #475569;
}

@media (max-width: 768px) {
	.game-type-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Negative casino cards - 3 per row */
.negative-casino-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.negative-casino-card {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-left: 4px solid #dc2626;
	border-radius: 0 0.5rem 0.5rem 0;
	padding: 1.25rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.negative-casino-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #475569;
}

@media (max-width: 768px) {
	.negative-casino-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Step cards - vertical steps with numbers */
.step-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1.5rem 0;
}

.step-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	padding: 1rem 1.25rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: box-shadow .2s;
}

.step-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.step-card__num {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #C8102E;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 50%;
}

.step-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #475569;
}

/* Glossary cards - vertical layout */
.glossary-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1.5rem 0;
}

.glossary-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #C8102E;
	border-radius: 0 0.5rem 0.5rem 0;
	padding: 1rem 1.25rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	transition: box-shadow .2s, border-color .2s;
}

.glossary-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
	border-left-color: #8B0000;
}

.glossary-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #475569;
}

/* Hero Breadcrumbs - Top */
.hero-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	position: relative;
	z-index: 2;
}

.breadcrumb-link {
	color: white;
	text-decoration: none;
	opacity: 0.95;
}

.breadcrumb-link:hover {
	color: rgba(255, 255, 255, 0.85);
	opacity: 1;
	background-color: transparent;
	padding: 0;
	margin: 0;
}

.breadcrumb-sep {
	color: white;
	opacity: 0.6;
	font-size: 0.7rem;
}

a.breadcrumb-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 0.3rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.8rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s;
}

a.breadcrumb-badge:hover {
	/* background: white; */
	border-radius: 1rem;
	padding: 0.3rem 0.75rem;
	margin: 0;
	color: white;
}

figure.block-image {
	text-align: center;
	margin: 0px auto;
	max-width: 80%;
}

figure.block-image img {
	border-radius: 12px;
	max-width: 100%;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	figure.block-image {
		max-width: 95%;
		margin: 20px auto;
	}
	
	figure.block-image img {
		border-radius: 8px;
	}
}
.text table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 5px;
	background: #fff;
}
.text table thead {
	background-color: rgba(200, 16, 46, 1);
	color: #fff;
	font-weight: 600;
}
.text table th,
.text table td {
	border-bottom: 1px solid rgb(229, 231, 235);
	padding: 1rem 1.5rem;
	text-align: center;
}
.text table tr:last-child td {
	border-bottom: none;
}
.text table th:first-child,
.text table td:first-child {
	font-weight: 500;
	text-align: left;
}
.text table tbody tr:hover td {
	--tw-bg-opacity: 1;
	background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.block-table {
	overflow: hidden;
	border-radius: 8px;
}
@media (max-width: 900px) {
	.block-table {
		overflow-x: visible;
		padding-bottom: 8px;
		margin-bottom: 20px;
	}
	.block-table table {
		min-width: 600px;
		margin-bottom: 0;
	}
}

.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 16px);
	margin-left: -8px;
}
.item {
	width: calc(50% - 16px);
	margin: 0 8px 16px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, .2);
	padding: 20px 20px 4px;
	border-radius: 8px;
}
.item--full {
	width: calc(100% - 16px);
}

@media (max-width: 900px) {
	.item {
		width: calc(100% - 16px);
	}
}

.blockquote-style {
	border-left: 2px solid #696868;
	border-radius: 0;
	background: #fff;
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	padding: 1.5rem;
	margin: 20px auto;
}

/* Expert Quote Block (from sample - adapted for current site) */
.expert-quote {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	background: #fff;
	border-left: 4px solid var(--swiss-primary);
	border-radius: 12px;
	padding: 1.5rem;
	margin: 2rem 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expert-quote-avatar {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(200, 16, 46, 0.2);
}

.expert-quote-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.expert-quote-content {
	flex: 1;
}

.expert-quote-content p {
	font-size: 1.05rem;
	font-style: italic;
	color: var(--swiss-gray-dark);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.expert-quote-content cite {
	display: block;
	font-style: normal;
	font-weight: 600;
	color: var(--swiss-primary);
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.expert-quote {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.expert-quote-avatar {
		width: 70px;
		height: 70px;
	}
	
	.expert-quote-content p {
		font-size: 1rem;
	}
}
.casino-row-non:before {
	display: none;
}
.head-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-items: middle
}
.head-block-text {
	width: 60%;
	padding-right: 30px;
	text-align: justify;
}
.head-block-img {
	width: 40%;
}
@media (max-width: 1024px) {
	.head-block {
		flex-direction: column;
	}
	.head-block-text {
		width: 100%;
		padding-right: 0;
	}
	.head-block-img {
		width: 100%;
	}
}
	/* FAQ Section — reduced padding */
section.faq-section.section-padding {
	padding: 1.5rem 0 1rem;
}
	/* FAQ Styles */
.faq-item {
	background: white;
	border-radius: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item.active {
	border-color: #C8102E;
	box-shadow: 0 4px 12px rgba(200, 16, 46, 0.1);
}

.faq-question {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--swiss-gray-dark);
}
.faq-question h3 {
	width: calc(100% - 36px);
	font-size: 1rem;
	font-weight: 600;
}

.faq-toggle {
	width: 32px;
	height: 32px;
	/* background: #FFB300; */
	background: #C8102E;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.125rem;
	transition: transform 0.3s;
	line-height: 1;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: #f8fafc;
	transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 1.5rem;
}

/* 404 page — full screen, centered */
.page-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 120px);
	flex: 1;
}
.page-404__inner {
	text-align: center;
}
.page-404__title {
	font-size: clamp(6rem, 20vw, 12rem);
	font-weight: 700;
	color: var(--swiss-gray-dark);
	line-height: 1;
	margin: 0;
}
body.page-404-body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
body.page-404-body main {
	flex: 1;
}