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

:root {
	--bg-primary: #1d202b;
	--bg-secondary: #313848;
	--bg-card: #3a3f52;
	--text-primary: #ffffff;
	--text-secondary: #a0a5b9;
	--accent-primary: #ffa500;
	--accent-hover: #ff8c00;
	--border-color: #4a4f62;
	--success-color: #4ade80;
	--sidebar-width: 200px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg-primary);
	color: var(--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(--bg-secondary);
	border-right: 1px solid var(--border-color);
	z-index: 1000;
	transition: transform 0.3s ease;
	overflow: hidden;
}

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

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-image {
	height: 75px;
	object-fit: contain;
}

.sidebar-nav {
	padding: 1.5rem 0;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
	position: relative;
}

.nav-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(255, 165, 0, 0.1) 0%,
		transparent 100%
	);
	transition: width 0.3s ease;
}

.nav-item:hover::before {
	width: 100%;
}

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

.nav-item.active {
	background-color: var(--bg-card);
	color: var(--accent-primary);
	border-left-color: var(--accent-primary);
}

.nav-item svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.nav-item:hover svg {
	transform: scale(1.1);
}

.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: var(--bg-secondary);
	border-bottom: 1px solid var(--border-color);
	padding: 0 1rem;
	align-items: center;
	justify-content: space-between;
	z-index: 1001;
}

.mobile-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-logo-image {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.mobile-cta {
	padding: 0.5rem 1rem;
	background-color: var(--accent-primary);
	color: var(--bg-primary);
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.mobile-cta:hover {
	background-color: var(--accent-hover);
	box-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
	transform: translateY(-2px);
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 10;
	transition: all 0.3s ease;
}

.menu-toggle:focus {
	outline: none;
}

.menu-toggle span {
	width: 100%;
	height: 3px;
	background-color: var(--text-primary);
	border-radius: 3px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.menu-toggle:hover span {
	background-color: var(--accent-primary);
}

.menu-toggle.active span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

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

.hero {
	padding: 4rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	isolation: isolate;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.35;
	background-image: url('img/banner_img-desktop--bq3XSw4.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.5;
		transform: translateX(-50%) scale(1);
	}
	50% {
		opacity: 0.8;
		transform: translateX(-50%) scale(1.1);
	}
}

.hero-content {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	background: linear-gradient(135deg, #ffffff 0%, #ffa500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-description {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.8;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
	display: flex;
	gap: 3rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: linear-gradient(
		135deg,
		rgba(255, 165, 0, 0.1) 0%,
		transparent 100%
	);
	border-radius: 12px;
	border: 1px solid rgba(255, 165, 0, 0.2);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
	border-color: rgba(255, 165, 0, 0.4);
}

.stat-icon {
	color: var(--accent-primary);
	flex-shrink: 0;
	animation: rotate 3s linear infinite;
}

@keyframes rotate {
	0%,
	90%,
	100% {
		transform: rotate(0deg);
	}
	95% {
		transform: rotate(10deg);
	}
}

.stat-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.stat-value {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-primary);
	text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn > * {
	position: relative;
	z-index: 1;
}

.btn-primary {
	background: linear-gradient(
		135deg,
		var(--accent-primary) 0%,
		var(--accent-hover) 100%
	);
	color: var(--bg-primary);
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

@keyframes glow {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
	}
	50% {
		box-shadow: 0 4px 30px rgba(255, 165, 0, 0.6);
	}
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6);
}

.btn-primary:active {
	transform: translateY(-1px);
}

.btn-secondary {
	background-color: transparent;
	color: var(--text-primary);
	border: 2px solid var(--border-color);
}

.btn-secondary:hover {
	border-color: var(--accent-primary);
	background-color: rgba(255, 165, 0, 0.1);
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
	transform: translateY(-3px);
}

.btn-sm {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

.carousel-section {
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.carousel {
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	min-width: 100%;
	flex-shrink: 0;
}

.promo-card {
	height: 300px;
	border-radius: 12px;
	padding: 3rem;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.promo-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.6) 0%,
		rgba(0, 0, 0, 0.3) 100%
	);
	z-index: 0;
}

.promo-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	animation: rotate-slow 20s linear infinite;
	z-index: 1;
}

.promo-content {
	position: relative;
	z-index: 1;
	z-index: 2;
}
.promo-content div {
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 0.5rem;
}

.promo-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	margin-top: 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	background: linear-gradient(
		135deg,
		var(--accent-primary) 0%,
		var(--accent-hover) 100%
	);
	color: var(--bg-primary);
	box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
}

.promo-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.promo-btn:hover::before {
	width: 300px;
	height: 300px;
}

.promo-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6);
}

.promo-btn:active {
	transform: translateY(-1px);
}

.games-section {
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.section-title-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff 0%, #ffa500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-count {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 0.875rem;
}

.section-count svg {
	animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
}

.game-card {
	background-color: var(--bg-card);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.game-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	border-color: rgba(255, 165, 0, 0.3);
}

.game-image {
	width: 100%;
	aspect-ratio: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.game-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.game-card:hover .game-image::before {
	left: 100%;
}

.game-placeholder {
	font-size: 4rem;
	transition: transform 0.3s ease;
}

.game-card:hover .game-placeholder {
	transform: scale(1.2) rotate(5deg);
}

.game-info {
	padding: 1rem;
	background: linear-gradient(
		180deg,
		var(--bg-card) 0%,
		rgba(58, 63, 82, 0.8) 100%
	);
}

.game-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.game-provider {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.providers-section {
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.provider-card {
	background-color: var(--bg-card);
	border-radius: 12px;
	padding: 2rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.provider-card::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(
		circle,
		rgba(255, 165, 0, 0.2) 0%,
		transparent 70%
	);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
}

.provider-card:hover::before {
	width: 200%;
	height: 200%;
}

.provider-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 165, 0, 0.3);
}

.provider-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	color: var(--text-primary);
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.provider-card:hover .provider-logo {
	color: var(--accent-primary);
	transform: scale(1.1);
}
.provider-logo img {
	width: 100%;
	object-fit: contain;
}

.footer {
	background-color: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	padding: 3rem 2rem 1.5rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

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

.footer-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-primary);
}

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

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.2s ease;
	position: relative;
	padding-left: 0;
}

.footer-nav a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: var(--accent-primary);
	transition: width 0.3s ease;
}

.footer-nav a:hover {
	color: var(--accent-primary);
	padding-left: 10px;
}

.footer-nav a:hover::before {
	width: 20px;
}

.footer-disclaimer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.footer-disclaimer p {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 1.5rem;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
		z-index: 1002;
	}

	.mobile-header {
		display: flex;
	}

	.main-content {
		margin-left: 0;
		padding-top: 60px;
	}

	.hero::before {
		/* content: none; */
		opacity: 0.1;
		background-position: center;
	}

	.mobile-header {
		padding: 0 1rem;
		gap: 1rem;
	}

	.mobile-logo-image {
		height: 36px;
	}

	.mobile-cta {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
		white-space: nowrap;
	}

	.hero {
		padding: 2rem 1rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-stats {
		gap: 1.5rem;
	}

	.stat-value {
		font-size: 1.25rem;
	}

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

	.btn {
		width: 100%;
		justify-content: center;
	}

	.carousel-section {
		padding: 1.5rem 1rem;
		overflow: hidden;
	}

	.carousel {
		margin: 0 -1rem 1.5rem -1rem;
		border-radius: 0;
	}

	.promo-card {
		height: 280px;
		padding: 1.5rem;
	}

	.promo-content div {
		font-size: 1.5rem;
		line-height: 1.3;
		margin-bottom: 0.5rem;
	}

	.promo-content p {
		font-size: 0.95rem;
		line-height: 1.5;
		margin-bottom: 0.75rem;
	}

	.promo-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
		margin-top: 1rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.games-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

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

	.stat-item {
		width: 100%;
	}

	.promo-card {
		height: 240px;
		padding: 1.25rem;
	}

	.promo-content div {
		font-size: 1.25rem;
		line-height: 1.2;
	}

	.promo-content p {
		font-size: 0.875rem;
		line-height: 1.4;
	}

	.promo-btn {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
	}

	.games-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.text-wrapper {
	padding: 3rem 2rem;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	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 hr {
	margin: 2em 0;
	border: none;
	border-top: 1px solid var(--border-color);
}

.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 var(--border-color);
	background: var(--bg-card);
	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(--border-color);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: var(--accent-primary);
	color: var(--bg-primary);
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: var(--bg-secondary);
}

@media (max-width: 767px) {
	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.text-wrapper th,
	.text-wrapper td {
		white-space: normal;
		word-break: break-word;
	}

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

	.text-wrapper table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
		border-radius: 6px;
	}

	.text-wrapper table th,
	.text-wrapper table td {
		white-space: nowrap;
		word-break: normal;
	}

	.text-wrapper table::-webkit-scrollbar {
		height: 6px;
	}
	.text-wrapper table::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.2);
		border-radius: 3px;
	}
	.text-wrapper table::-webkit-scrollbar-track {
		background: transparent;
	}
}
@media (max-width: 480px) {
	.text-wrapper {
		margin: 60px 0;
	}
	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}
.accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-header {
	background: var(--bg-card);
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: var(--text-primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}
.accordion-header:hover {
	background: var(--bg-secondary);
}
.accordion-header.active {
}
.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: var(--text-primary);
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: var(--bg-primary);
	line-height: 1.6;
}
