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

:root {
	--color-primary: #e31e24;
	--color-primary-dark: #b71c1c;
	--color-primary-light: #ff5252;
	--color-bg-dark: #0a0a0a;
	--color-bg-darker: #050505;
	--color-bg-card: #1a1a1a;
	--color-bg-card-hover: #252525;
	--color-text-primary: #ffffff;
	--color-text-secondary: #b0b0b0;
	--color-text-muted: #707070;
	--color-border: #2a2a2a;
	--color-accent-gold: #ffd700;
	--color-accent-green: #4caf50;
	--sidebar-width: 60px;
	--header-height: 70px;
	--transition-speed: 0.3s;
}

body {
	font-family: -apple-system, BlinkMacMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background-color: var(--color-bg-dark);
	color: var(--color-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background-color: var(--color-bg-darker);
	border-right: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	z-index: 1000;
	transition: transform var(--transition-speed) ease;
}

.sidebar-header {
	padding: 15px;
	border-bottom: 1px solid var(--color-border);
}

.logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.logo-icon {
	width: 30px;
	height: 30px;
	color: var(--color-primary);
}

.sidebar-nav {
	flex: 1;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	color: var(--color-text-secondary);
	text-decoration: none;
	transition: all var(--transition-speed) ease;
	position: relative;
}

.nav-item svg {
	width: 24px;
	height: 24px;
}

.nav-item:hover {
	color: var(--color-primary);
	background-color: rgba(227, 30, 36, 0.1);
}

.nav-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background-color: var(--color-primary);
	transition: height var(--transition-speed) ease;
}

.nav-item:hover::before {
	height: 60%;
}

.sidebar-footer {
	padding: 20px 0;
	border-top: 1px solid var(--color-border);
}

.mobile-menu-toggle {
	position: fixed;
	top: 7px;
	left: 7px;
	width: 40px;
	height: 40px;
	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1001;
	transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle svg {
	width: 24px;
	height: 24px;
	color: var(--color-text-primary);
}

.mobile-menu-toggle:hover {
	background-color: var(--color-bg-card-hover);
	border-color: var(--color-primary);
}

.main-content {
	margin-left: var(--sidebar-width);
	min-height: 100vh;
}

.top-header {
	height: var(--header-height);
	background-color: var(--color-bg-darker);
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-logo .logo-text {
	font-size: 28px;
	font-weight: 900;
	color: var(--color-primary);
	letter-spacing: 2px;
}
.header-logo img {
	height: 30px;
	object-fit: contain;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-link {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 15px;
	transition: color var(--transition-speed) ease;
}

.header-link:hover {
	color: var(--color-primary);
}

.btn-login {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-text-primary);
	text-decoration: none;
	transition: all var(--transition-speed) ease;
}

.btn-login svg {
	width: 20px;
	height: 20px;
}

.btn-login:hover {
	background-color: var(--color-bg-card-hover);
	border-color: var(--color-primary);
}

.btn-register {
	padding: 10px 24px;
	background-color: var(--color-primary);
	color: var(--color-text-primary);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	transition: all var(--transition-speed) ease;
	white-space: nowrap;
}

.btn-register:hover {
	background-color: var(--color-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.nav-tabs {
	display: flex;
	gap: 5px;
	padding: 20px 30px;
	background-color: var(--color-bg-dark);
	overflow-x: auto;
	scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
	display: none;
}

.nav-tab {
	padding: 10px 20px;
	background-color: transparent;
	color: var(--color-text-secondary);
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: all var(--transition-speed) ease;
}

.nav-tab:hover {
	background-color: var(--color-bg-card);
	color: var(--color-text-primary);
}

.nav-tab.active {
	background-color: var(--color-primary);
	color: var(--color-text-primary);
}

.hero-section {
	padding: 40px 30px;
}

.hero-slider {
	position: relative;
	margin-bottom: 30px;
}

.hero-slides {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.hero-slide {
	display: none;
	animation: fadeIn 0.5s ease;
}

.hero-slide.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hero-content {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid rgba(227, 30, 36, 0.3);
	border-radius: 16px;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 500px;
	position: relative;
	overflow: hidden;
}

.hero-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.45) 0%,
		rgba(26, 5, 5, 0.25) 100%
	);
	z-index: 0;
}

.hero-text {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 600px;
}

.hero-label {
	display: inline-block;
	color: var(--color-text-secondary);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.hero-title {
	font-size: 64px;
	font-weight: 900;
	color: var(--color-text-primary);
	margin-bottom: 10px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 18px;
	color: var(--color-text-secondary);
	margin-bottom: 30px;
}

.btn-primary {
	display: inline-block;
	padding: 16px 40px;
	background-color: var(--color-primary);
	color: var(--color-text-primary);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;
	transition: all var(--transition-speed) ease;
	box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover {
	background-color: var(--color-primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 6px 30px rgba(227, 30, 36, 0.6);
}
.hero-image {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slider-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--color-bg-card);
	border: 2px solid var(--color-border);
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	padding: 0;
}

.slider-dot:hover {
	background-color: var(--color-text-secondary);
}

.slider-dot.active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	width: 32px;
	border-radius: 6px;
}

.promo-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.promo-card {
	background-color: var(--color-bg-card);
	background-size: cover;
	background-position: center;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 25px;
	display: flex;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: all var(--transition-speed) ease;
}

.promo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.95) 0%,
		rgba(26, 26, 26, 0.85) 100%
	);
	z-index: 1;
}

.promo-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-5px);
}

.promo-card:hover .promo-overlay {
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.9) 0%,
		rgba(26, 26, 26, 0.75) 100%
	);
}

.promo-icon {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}
a {
	text-decoration: none;
}
.promo-icon svg,
.promo-icon img {
	width: 100%;
	height: 100%;
	color: var(--color-text-primary);
	object-fit: contain;
}

.promo-content {
	flex: 1;
	position: relative;
	z-index: 2;
}

.promo-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text-primary);
	margin-bottom: 8px;
}

.promo-text {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.5;
}

.games-section {
	padding: 40px 30px;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.section-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-text-primary);
	letter-spacing: 1px;
}

.section-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color var(--transition-speed) ease;
}

.section-link svg {
	width: 18px;
	height: 18px;
}

.section-link:hover {
	color: var(--color-primary);
}

.games-carousel {
	position: relative;
}

.carousel-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
	display: none;
}

.game-card {
	flex: 0 0 250px;
	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all var(--transition-speed) ease;
}

.game-card:hover {
	transform: translateY(-8px);
	border-color: var(--color-primary);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.game-image {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-speed) ease;
}

.game-card:hover .game-image img {
	transform: scale(1.1);
}

.game-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.game-badge.new {
	background-color: var(--color-accent-green);
	color: var(--color-text-primary);
}

.game-badge.jackpot {
	background-color: var(--color-accent-gold);
	color: var(--color-bg-dark);
}

.game-badges {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.game-badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.game-badge-icon.trophy {
	background-color: rgba(255, 215, 0, 0.9);
}

.game-badge-icon.gift {
	background-color: rgba(227, 30, 36, 0.9);
}

.game-badge-icon svg {
	width: 20px;
	height: 20px;
	color: var(--color-text-primary);
}

.game-info {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.game-provider {
	font-size: 12px;
	color: var(--color-text-muted);
	font-weight: 500;
}

.game-name {
	font-size: 15px;
	color: var(--color-text-primary);
	font-weight: 600;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-speed) ease;
	z-index: 10;
}

.carousel-nav:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.carousel-nav svg {
	width: 24px;
	height: 24px;
	color: var(--color-text-primary);
}

.carousel-nav.prev {
	left: -22px;
}

.carousel-nav.next {
	right: -22px;
}

.jackpot-section {
	padding: 40px 30px;
	background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0f0505 100%);
}

.jackpot-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
	padding: 40px;
	background: radial-gradient(
		circle at center,
		rgba(227, 30, 36, 0.1) 0%,
		transparent 70%
	);
	border-radius: 16px;
}

.jackpot-visual {
	max-width: 300px;
}

.jackpot-image {
	width: 100%;
	height: auto;
}

.jackpot-info {
	text-align: center;
}

.jackpot-label {
	display: block;
	font-size: 18px;
	color: var(--color-primary);
	font-weight: 600;
	margin-bottom: 10px;
}

.jackpot-amount {
	font-size: 56px;
	font-weight: 900;
	color: var(--color-text-primary);
	text-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
}

.providers-section {
	padding: 40px 30px;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.provider-card {
	background-color: var(--color-bg-card);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all var(--transition-speed) ease;
	min-height: 100px;
}

.provider-card:hover {
	background-color: var(--color-bg-card-hover);
	border-color: var(--color-primary);
	transform: translateY(-5px);
}

.provider-card img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%) brightness(0.8);
	transition: filter var(--transition-speed) ease;
}

.provider-card:hover img {
	filter: grayscale(0%) brightness(1);
}

.footer {
	background-color: var(--color-bg-darker);
	border-top: 1px solid var(--color-border);
	padding: 50px 30px 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text-primary);
	margin-bottom: 5px;
}

.footer-text {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: var(--color-text-secondary);
	text-decoration: none;
	font-size: 14px;
	transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
	color: var(--color-primary);
}

.payment-methods {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.payment-methods img {
	height: 30px;
	width: auto;
	background-color: var(--color-bg-card);
	padding: 5px 10px;
	border-radius: 6px;
}

.responsible-gaming-logos {
	display: flex;
	gap: 15px;
	align-items: center;
}

.responsible-gaming-logos img {
	height: 40px;
	width: auto;
}

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.disclaimer {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 15px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.copyright {
	font-size: 13px;
	color: var(--color-text-muted);
}

@media (max-width: 1024px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
		min-height: 450px;
		justify-content: center;
	}

	.hero-text {
		max-width: 100%;
	}

	.hero-title {
		font-size: 48px;
	}

	.jackpot-header {
		flex-direction: column;
		gap: 20px;
	}

	.jackpot-amount {
		font-size: 42px;
	}
}

@media (max-width: 768px) {
	:root {
		--sidebar-width: 0px;
		--header-height: 60px;
	}

	.sidebar {
		transform: translateX(-100%);
		width: 250px;
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.main-content {
		margin-left: 0;
	}

	.top-header {
		padding: 0 10px 0 65px;
		gap: 8px;
	}

	.header-logo .logo-text {
		font-size: 20px;
		letter-spacing: 1px;
	}

	.header-link {
		display: none;
	}

	.btn-login {
		width: 36px;
		height: 36px;
	}

	.btn-login svg {
		width: 18px;
		height: 18px;
	}

	.btn-register {
		padding: 8px 16px;
		font-size: 13px;
	}

	.nav-tabs {
		padding: 15px;
		gap: 8px;
	}

	.nav-tab {
		padding: 8px 16px;
		font-size: 13px;
	}

	.hero-section {
		padding: 20px 15px;
	}

	.hero-content {
		padding: 30px 20px;
		min-height: 400px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.btn-primary {
		padding: 14px 32px;
		font-size: 15px;
	}

	.promo-cards {
		grid-template-columns: 1fr;
	}

	.games-section,
	.jackpot-section,
	.providers-section {
		padding: 30px 15px;
	}

	.section-title {
		font-size: 20px;
	}

	.carousel-nav {
		display: none;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 15px;
	}

	.footer {
		padding: 40px 15px 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.btn-register {
		padding: 8px 12px;
		font-size: 12px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 14px;
	}

	.btn-primary {
		padding: 12px 28px;
		font-size: 14px;
	}

	.hero-content {
		min-height: 350px;
	}

	.jackpot-amount {
		font-size: 28px;
	}

	.game-card {
		flex: 0 0 200px;
	}

	.game-image {
		height: 240px;
	}

	.promo-card {
		padding: 20px;
		gap: 15px;
	}

	.promo-icon {
		width: 45px;
		height: 45px;
	}

	.promo-title {
		font-size: 16px;
	}

	.promo-text {
		font-size: 13px;
	}
}

@media (max-width: 360px) {
	.top-header {
		padding: 0 8px 0 60px;
		gap: 6px;
	}

	.header-logo .logo-text {
		font-size: 18px;
	}

	.btn-login {
		width: 32px;
		height: 32px;
	}

	.btn-register {
		padding: 6px 10px;
		font-size: 11px;
	}

	.hero-title {
		font-size: 28px;
	}

	.jackpot-amount {
		font-size: 24px;
	}
}

@media (max-width: 320px) {
	.top-header {
		padding: 0 6px 0 55px;
		gap: 4px;
	}

	.header-logo .logo-text {
		font-size: 16px;
		letter-spacing: 0.5px;
	}

	.btn-login {
		width: 30px;
		height: 30px;
	}

	.btn-login svg {
		width: 16px;
		height: 16px;
	}

	.mobile-menu-toggle svg {
		width: 20px;
		height: 20px;
	}

	.nav-tabs {
		padding: 12px 10px;
	}

	.nav-tab {
		padding: 6px 12px;
		font-size: 12px;
	}

	.hero-title {
		font-size: 24px;
	}

	.hero-subtitle {
		font-size: 13px;
	}

	.btn-primary {
		padding: 10px 24px;
		font-size: 13px;
	}

	.hero-content {
		min-height: 300px;
	}
}

.text-wrapper {
	padding: 40px 30px;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.text-wrapper p {
	margin: 0 0 1.2em;
	line-height: 1.6;
}

.text-wrapper strong,
.text-wrapper b {
	font-weight: 600;
}

.text-wrapper em,
.text-wrapper i {
	font-style: italic;
}

.text-wrapper mark {
	background: #fffb91;
	padding: 0 2px;
}

.text-wrapper del {
	text-decoration: line-through;
}

.text-wrapper sup {
	font-size: 0.8em;
	vertical-align: super;
}

.text-wrapper sub {
	font-size: 0.8em;
	vertical-align: sub;
}

.text-wrapper h2,
.text-wrapper h3,
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 2em 0 1em;
	line-height: 1.3;
}

.text-wrapper ul,
.text-wrapper ol {
	margin: 0 0 1.2em;
	padding-left: 1.5em;
}

.text-wrapper li {
	margin-bottom: 0.4em;
	list-style-position: outside;
}

.text-wrapper dl {
	margin: 1.5em 0;
}

.text-wrapper dt {
	font-weight: 600;
}

.text-wrapper dd {
	margin: 0 0 1em 1.5em;
}

.text-wrapper a {
	text-decoration: underline;
	transition: all 0.2s;
}

.text-wrapper a:hover {
	font-weight: 600;
}

.text-wrapper code {
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: Consolas, Monaco, monospace;
	font-size: 0.9em;
}

.text-wrapper pre {
	background: #272822;
	color: #f8f8f2;
	padding: 1em;
	overflow-x: auto;
	border-radius: 6px;
	margin: 1.5em 0;
}

.text-wrapper pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.text-wrapper hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid #ddd;
}

.text-wrapper img,
.text-wrapper video,
.text-wrapper iframe {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
	border-radius: 6px;
}

.text-wrapper figure {
	margin: 2em 0;
	text-align: center;
}

.text-wrapper figcaption {
	margin-top: 0.5em;
	font-style: italic;
	opacity: 0.8;
}

.text-wrapper blockquote {
	margin: 2em 0;
	padding: 1em 1.5em;
	border-left: 4px solid #ccc;
	background: #f9f9f9;
	border-radius: 4px;
}

.text-wrapper blockquote p:last-child {
	margin-bottom: 0;
}

.text-wrapper > *:last-child {
	margin-bottom: 0;
}

.text-wrapper table {
	width: 100%;
	margin: 2em 0;
	border-collapse: collapse;
	font-size: 0.95em;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 768px) {
	.text-wrapper {
		padding: 30px 15px;
	}

	.text-wrapper table {
		display: inline-block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.3s ease;
	background: transparent;
}

.accordion-header:hover {
	background: transparent;
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}
.reviews {
	display: grid;
	width: 100%;
	gap: 20px;
	margin: 0 auto;
}

.review {
	background: var(--color-bg-card);
	padding: 24px;
	border-left: 4px solid var(--color-primary);
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.review-author {
	font-weight: 600;
	font-size: 1em;
	margin-bottom: 4px;
}

.review-text {
	color: var(--color-text-primary);
	line-height: 1.6;
	margin: 12px 0;
	font-style: italic;
}

.review-rating {
	margin-top: 12px;
	font-size: 1.1em;
	letter-spacing: 2px;
}

@media (max-width: 600px) {
	.review {
		padding: 16px;
	}

	.review-text {
		font-size: 0.95em;
	}
}
