:root {
	--swiss-red: #dc143c;
	--swiss-red-dark: #b91c1c;
	--swiss-white: #ffffff;
	--swiss-gray: #6b7280;
	--swiss-gray-light: #f3f4f6;
	--swiss-gray-dark: #374151;
	
	/* Casino Offers Colors */
	--primary-color: #ffffff;
	--secondary-color: #dc143c;
	--dark-gray: #2d3748;
	--medium-gray: #4a5568;
	--white: #ffffff;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

* {
	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;
}

.header__nav {
	display: none;
}

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

.header__nav-link {
	color: var(--swiss-gray-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.header__nav-link:hover {
	color: var(--swiss-red);
}

.header__buttons {
	display: flex;
	gap: 0.25rem;
}

@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 #dc2626;
	color: #dc2626;
	background-color: transparent;
}

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

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

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


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

.header-lang {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	position: relative;
}
.header-lang::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #000;
	opacity: .1;
}
a.header-lang__item {
	line-height: 1.1;
	color: #c00;
}
a.header-lang__item:hover {
	text-decoration: underline;
}

@media (max-width: 450px) {
	.header-lang {
		display: block;
		gap: 0;
	}
	.header-lang::before {
		display: none;
	}
	.header-lang__item {
		display: block;
		font-size: 13px;
	}
}


/* Hero Section - Compact & Beautiful */
.hero {
	background: linear-gradient(rgba(213, 43, 30, 0.8), rgba(213, 43, 30, 0.8)),
	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="%23d52b1e" 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;
}

.hero-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.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;
}

.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;
}

/* 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;
}

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

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

/* Hero Breadcrumbs - Like reference */
.hero-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
}

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

.breadcrumb-link:hover {
	opacity: 1;
}

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

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

.breadcrumb-badge:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Breadcrumbs - Compact (legacy) */
.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-compact {
	padding: 0.35rem 0.75rem;
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 0.75rem;
	display: inline-block;
	text-align: left;
}

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

.breadcrumbs a:hover {
	opacity: 1;
}

.breadcrumb-separator {
	margin: 0 0.4rem;
	opacity: 0.6;
	font-size: 0.65rem;
}

/* 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: var(--swiss-red);
	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, var(--swiss-red), #dc2626);
	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(220, 20, 60, 0.3);
}

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

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

.btn-review:hover {
	background: var(--swiss-red);
	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;
}

/* 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;
}

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

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

.author-meta a {
	text-decoration: none;
}
.author-meta a h3:hover {
	color: var(--swiss-red);
	transition: color 0.3s;
}

.author-title {
	color: var(--swiss-red);
	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: var(--swiss-red);
}

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

/* 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(220, 20, 60, 0.1);
	border: 1px solid rgba(220, 20, 60, 0.3);
	border-radius: 0.75rem;
	padding: 1rem;
	margin: 2rem 0;
	font-size: 0.875rem;
	color: #fca5a5;
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
	.logo img {
		max-width: 200px;
	}
	.hero {
		padding: 1rem 0 1rem 0rem;
		min-height: 30vh;
	}

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

	.author-info-minimal {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
		padding: 0.75rem 1rem;
	}
	
	.hero-footer,
	.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-content-left {
		text-align: center;
	}
	
	.hero h1 {
		text-align: center;
	}
	
	.hero-content-left p {
		text-align: center;
	}
	
	.hero-breadcrumbs {
		justify-content: center;
	}

	.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) {
	.logo img {
		max-width: 110px;
	}
	.hero h1 {
		font-size: 1.5rem;
	}

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

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

.text h1 {
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}
.text h2,
.text h3 {
	margin-bottom: 16px;
}
.text h2 {
	padding-top: 8px;
	font-size: 32px;
}
.text h3 {
	font-size: 28px;
}
.text h4 {
	margin-bottom: 20px;
	font-size: 24px;
}
@media (max-width: 750px) {
	.text h1 {
		font-size: 28px;
	}
	.text h2 {
		font-size: 24px;
	}
	.text h3 {
		font-size: 22px;
	}
	.text h4 {
		margin-bottom: 10px;
		font-size: 18px;
	}
}

.text p {
	margin-bottom: 20px;
}
.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;
}
.text table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 25px;
	background: #fff;
}
.text table thead {
	background-color: rgba(220,38,38, 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);
	}
}

/* Two-column lists */
.list-2col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem 1.5rem;
	list-style: none;
	padding-left: 0;
}

.list-2col li {
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	.list-2col {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

.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 */
.expert-quote {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	background: #fff;
	border-left: 4px solid var(--swiss-red);
	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(220, 20, 60, 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-red);
	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 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: var(--swiss-red);
	box-shadow: 0 4px 12px rgba(220, 20, 60, 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);
}

.faq-toggle {
	width: 32px;
	height: 32px;
	background: var(--swiss-red);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.125rem;
	transition: transform 0.3s;
}

.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;
}


/* Casino Offers Section */
.casino-offers-section {
    padding: 15px 0;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    counter-reset: casino-counter 0;
    gap: 8px;
}

.casino-offer-item {
    position: relative;
    display: grid;
    align-items: center;
    padding-left: 46px;
    counter-increment: casino-counter 1;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f3f3 100%);
	border: 1px solid #e5e7eb;
    gap: 16px;
    grid-template-areas: 'logo rating main';
    grid-template-columns: 187px 162px auto;
    grid-template-rows: 1fr;
    transition: all 0.3s ease;
    /* border: 2px solid transparent; */
}

.casino-offer-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
}

.casino-offer-item::before {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 100%;
    content: counter(casino-counter);
    color: var(--white);
    border-radius: 12px 0 0 12px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, var(--swiss-red-dark) 100%);
    box-shadow: 2px 0 8px rgba(220, 20, 60, 0.3);
}

.casino-offer-item-no-counter::before {
    display: none !important;
}

.casino-offer-item img {
	margin-bottom: 0;
}

.casino-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 90px;
    grid-area: logo;
	border-radius: 12px;
}

.casino-brand-logo img {
    width: 127px;
    height: 52px;
    object-fit: contain;
}

.casino-score-block {
    display: flex;
    align-items: center;
    gap: 16px;
    grid-area: rating;
}

.score-value {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    text-align: center;
    color: var(--white);
    border: 3px solid var(--swiss-red);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, var(--swiss-red-dark) 100%);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.star-rating-visual img {
    height: 18px;
}

.casino-brand-title {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    color: var(--swiss-gray-dark);
}

.casino-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    gap: 24px;
    grid-area: main;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonus-description {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: var(--white);
    flex: 0 0 220px;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    flex: 1 1 auto;
    min-width: 0;
}

.casino-features li {
    padding: 3px 0;
    padding-left: 20px;
    position: relative;
    border: none;
    list-style-type: none;
}

.casino-features li::marker {
    display: none;
    content: none;
}

.casino-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 15px;
}

.claim-bonus-button {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 800;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    min-width: 180px;
    height: 50px;
    flex-shrink: 0;
    text-align: center;
    color: var(--white) !important;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--swiss-red) 0%, var(--swiss-red-dark) 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.claim-bonus-button:hover {
    background: linear-gradient(135deg, #ff1744 0%, var(--swiss-red) 100%);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.claim-bonus-button:active {
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.claim-bonus-button::before {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M11.4552 1.90791L3.12187 11.9079H10.6219L9.78854 18.5746L18.1219 8.57458H10.6219L11.4552 1.90791Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7207 1.29638C11.9921 1.41423 12.1534 1.69694 12.1167 1.9906L11.3771 7.90792H18.1219C18.3806 7.90792 18.6159 8.05756 18.7256 8.29181C18.8353 8.52607 18.7996 8.80265 18.634 9.00137L10.3007 19.0014C10.1112 19.2287 9.79456 19.304 9.52308 19.1861C9.2516 19.0683 9.09031 18.7856 9.12702 18.4919L9.86669 12.5746H3.12187C2.8632 12.5746 2.62787 12.4249 2.51815 12.1907C2.40843 11.9564 2.44413 11.6798 2.60973 11.4811L10.9431 1.48113C11.1325 1.25377 11.4492 1.17853 11.7207 1.29638ZM4.54524 11.2412H10.6219C10.8131 11.2412 10.9951 11.3234 11.1217 11.4667C11.2482 11.6101 11.3071 11.8009 11.2834 11.9906L10.7321 16.4009L16.6985 9.24125H10.6219C10.4307 9.24125 10.2486 9.15914 10.1221 9.01578C9.99554 8.87243 9.93664 8.68164 9.96036 8.49189L10.5116 4.08155L4.54524 11.2412Z' fill='white'/%3E%3C/svg%3E");
    z-index: 1;
    position: relative;
}

@media (max-width: 991px) {
    .offers-grid {
        gap: 20px;
    }
    
    .casino-offer-item {
        padding: 10px;
        gap: 12px 16px;
        grid-template-areas: 'logo rating' 'main main';
        grid-template-columns: 176px auto;
        border-radius: 10px;
    }
    
    .casino-offer-item::before {
        top: 0;
        width: 36px;
        height: 28px;
        border-radius: 10px 0 0 0;
        font-size: 13px;
    }
    
    .casino-brand-logo {
        width: 176px;
        height: 70px;
        padding-left: 0px;
    }
    
    .casino-brand-logo img {
        width: 127px;
        height: 52px;
    }
    
    .casino-offer-content {
        flex-direction: column;
        align-items: center;
        margin: 0px;
        padding: 20px;
        gap: 16px;
    }
    
    .bonus-description {
        font-size: 17px;
        line-height: 22px;
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .casino-features {
        font-size: 13px;
        width: 100%;
        list-style: none;
    }
    
    .casino-features li {
        padding: 3px 0;
        padding-left: 20px;
        list-style-type: none;
    }
    
    .casino-features li::marker {
        display: none;
        content: none;
    }
    
    .claim-bonus-button {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        height: 50px;
    }
    
    .casino-score-block {
        gap: 12px;
    }
    
    .score-value {
        font-size: 20px;
        width: 44px;
        min-width: 44px;
        height: 44px;
    }
    
    .star-rating-visual img {
        height: 16px;
    }
    
    .casino-brand-title {
        font-size: 11px;
    }
}

@media (max-width: 599px) {
    .claim-bonus-button {
        font-size: 15px;
        padding: 12px 20px;
        height: 48px;
    }
    
    .casino-offer-content {
        padding: 16px;
        gap: 12px;
    }
    
    .bonus-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .casino-features {
        font-size: 12px;
        list-style: none;
    }
    
    .casino-features li {
        padding: 2px 0;
        padding-left: 18px;
        list-style-type: none;
    }
    
    .casino-features li::marker {
        display: none;
        content: none;
    }
    
    .score-value {
        font-size: 18px;
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
}

/* === TABLE OF CONTENTS (TOC) === */
.toc-section {
    background: var(--swiss-gray-light);
    padding: 20px 0;
}

.toc-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-toggle {
    width: 100%;
    background: #fff;
    color: var(--swiss-gray-dark);
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.toc-toggle:hover {
    background: #f9fafb;
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toc-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.toc-toggle[aria-expanded="true"] .toc-icon {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    background: #fff;
}

.toc-content[aria-hidden="false"] {
    max-height: 2000px;
    padding: 24px;
    border-top: 1px solid #e0e0e0;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 0!important;

}

.toc-list li::before {
    display: none;
}

.toc-list a {
    display: block;
    padding: 12px 16px;
    color: var(--swiss-gray-dark) !important;
    text-decoration: none !important;
    background: var(--swiss-gray-light);
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-size: 15px;
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--swiss-red) !important;
    background: #fff;
    border-color: var(--swiss-red);
    transform: translateX(4px);
    text-decoration: none !important;
}

.toc-list a:active {
    transform: translateX(2px);
}

/* Responsive TOC */
@media (max-width: 1024px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }
}

@media (max-width: 767px) {
    .toc-toggle {
        font-size: 18px;
        padding: 16px 20px;
    }
    
    .toc-content[aria-hidden="false"] {
        padding: 20px;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .toc-list a {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .toc-toggle {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .toc-title {
        gap: 8px;
    }
}

/* Author Page Styles */
.author-page-image {
	float: left;
	margin: 0 2rem 1.5rem 0;
	max-width: 350px;
	width: 100%;
}

.author-page-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.author-subtitle {
	font-size: 1.125rem;
	color: var(--swiss-gray);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #e5e7eb;
}

.text .author-page-image + .author-subtitle {
	margin-top: 0;
}

/* Clearfix for author page */
.text::after {
	content: "";
	display: table;
	clear: both;
}

/* Enhanced author page content styling */
.text h2:not(:first-of-type) {
	margin-top: 0.5rem;
}

.text ol {
	margin-left: 1.5rem;
}

.text ol li {
	margin-bottom: 0.75rem;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.author-page-image {
		float: none;
		margin: 1.5rem auto;
		max-width: 100%;
		text-align: center;
	}
	
	.author-page-image img {
		max-width: 100%;
		border-radius: 8px;
	}
	
	.author-subtitle {
		font-size: 1rem;
	}
}


.block-image img {
	max-width: 700px;
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
	margin: 15px auto;
}

/* 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;
}