* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-primary: #ff1f7d;
	--color-secondary: #00d9ff;
	--color-dark: #0a0014;
	--color-dark-purple: #1a0b2e;
	--color-purple: #2d1b4e;
	--color-purple-light: #3d2b5e;
	--color-text: #ffffff;
	--color-text-secondary: #b8b8d1;
	--color-border: #3d2b5e;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: linear-gradient(
		135deg,
		var(--color-dark) 0%,
		var(--color-dark-purple) 50%,
		var(--color-purple) 100%
	);
	color: var(--color-text);
	line-height: 1.6;
	min-height: 100vh;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
}

.header {
	background: rgba(10, 0, 20, 0.8);
	backdrop-filter: blur(10px);
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--color-border);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 32px;
	font-weight: 900;
	color: var(--color-primary);
	text-decoration: none;
	letter-spacing: 2px;
	font-style: italic;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-login {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-login:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.05);
}

.btn-register {
	padding: 12px 30px;
	background: var(--color-primary);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-register:hover {
	background: #ff3d8f;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 31, 125, 0.4);
}

.btn-view-all {
	padding: 12px 30px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
	margin-bottom: 40px;
	width: max-content;
	max-width: 100%;
}

.hero {
	height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 84px;
}

.hero-slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
	min-width: 100%;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(10, 0, 20, 0.8) 0%,
		rgba(26, 11, 46, 0.6) 50%,
		rgba(10, 0, 20, 0.8) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.hero-slide .container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
}

.hero-content {
	display: flex;
	align-items: center;
	width: 100%;
	max-height: calc(100vh - 180px);
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}

.hero-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-card {
	background: linear-gradient(
		135deg,
		rgba(45, 27, 78, 0.95) 0%,
		rgba(29, 11, 46, 0.95) 100%
	);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	padding: 40px;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 500px;
	width: 100%;
	position: relative;
	z-index: 2;
}

.hero-card-text {
	font-size: 13px;
	color: var(--color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	line-height: 1.2;
}

.hero-card-amount {
	font-size: 36px;
	font-weight: 900;
	color: var(--color-text);
	margin-bottom: 16px;
	line-height: 1;
}

.hero-card-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	margin-bottom: 16px;
	line-height: 1.1;
}

.hero-card-bonus {
	font-size: 44px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--color-secondary) 0%, #00b8ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
	line-height: 1;
}

.hero-card-promo {
	font-size: 13px;
	color: var(--color-text-secondary);
	margin-bottom: 24px;
	line-height: 1.3;
}

.btn-primary {
	display: block;
	width: 100%;
	padding: 16px;
	background: var(--color-primary);
	color: var(--color-text);
	text-decoration: none;
	text-align: center;
	border-radius: 12px;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #ff3d8f;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(255, 31, 125, 0.5);
}

.hero-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 10;
}

.hero-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	color: var(--color-text);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.1);
	border-color: var(--color-primary);
}

.hero-dots {
	display: flex;
	gap: 12px;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-dot.active {
	background: var(--color-primary);
	width: 40px;
	border-radius: 6px;
	border-color: rgba(255, 31, 125, 0.3);
}

.promo-section {
	padding: 100px 0;
	background: linear-gradient(
		180deg,
		rgba(10, 0, 20, 0.5) 0%,
		rgba(26, 11, 46, 0.5) 100%
	);
	position: relative;
	overflow: hidden;
}

.promo-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(255, 31, 125, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 50%,
			rgba(0, 217, 255, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.promo-intro {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 70px;
	position: relative;
	z-index: 1;
}

.promo-intro-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(
		135deg,
		rgba(255, 31, 125, 0.2) 0%,
		rgba(157, 78, 221, 0.2) 100%
	);
	border: 1px solid rgba(255, 31, 125, 0.3);
	border-radius: 50px;
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	backdrop-filter: blur(10px);
}

.promo-intro-badge svg {
	animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
	50% {
		transform: scale(1.2) rotate(180deg);
		opacity: 0.8;
	}
}

.promo-intro-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--color-text);
	margin-bottom: 25px;
	line-height: 1.3;
	background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.promo-intro-text {
	font-size: 17px;
	color: var(--color-text-secondary);
	line-height: 1.8;
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}

.promo-card {
	min-height: 380px;
	border-radius: 24px;
	padding: 45px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: visible;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.promo-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
	border-color: rgba(255, 255, 255, 0.2);
}

.promo-card:hover::before {
	opacity: 1;
}

.promo-card:hover::after {
	opacity: 1;
}

.promo-card-1 {
	background: linear-gradient(135deg, #ff1f7d 0%, #d91b6a 100%);
}

.promo-card-2 {
	background: linear-gradient(135deg, #00d9ff 0%, #00b8e6 100%);
}

.promo-card-3 {
	background: linear-gradient(135deg, #9d4edd 0%, #8338ec 100%);
}

.promo-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.promo-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.promo-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.promo-amount {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--color-text);
	line-height: 1;
	margin: 10px 0;
}

.promo-description {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
	flex: 1;
}

.btn-promo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: var(--color-text);
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.3);
	align-self: flex-start;
	position: relative;
	z-index: 1;
}

.btn-promo:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(5px);
	border-color: rgba(255, 255, 255, 0.5);
}

.promo-decoration {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
	border-radius: 24px;
}

.promo-sparkle {
	position: absolute;
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: float 3s ease-in-out infinite;
}

.promo-sparkle-1 {
	top: 20%;
	right: 15%;
	animation-delay: 0s;
}

.promo-sparkle-2 {
	top: 60%;
	right: 25%;
	animation-delay: 1s;
}

.promo-sparkle-3 {
	top: 80%;
	right: 10%;
	animation-delay: 2s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0) scale(1);
		opacity: 0.6;
	}
	50% {
		transform: translateY(-20px) scale(1.2);
		opacity: 1;
	}
}

.slots {
	padding: 100px 0;
	background: linear-gradient(
		180deg,
		rgba(26, 11, 46, 0.3) 0%,
		rgba(10, 0, 20, 0.5) 100%
	);
}
.section-header {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.section-title {
	font-size: 32px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 50px;
	color: var(--color-text);
	background: linear-gradient(135deg, #ffffff 0%, #e0e0ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

.slot-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
}

.slot-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 50px rgba(255, 31, 125, 0.4);
}

.slot-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
	transform: scale(1.1);
}

.slot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 31, 125, 0.9) 0%,
		rgba(157, 78, 221, 0.9) 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.slot-card:hover .slot-overlay {
	opacity: 1;
}

.slot-play {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.providers {
	padding: 100px 0;
	background: rgba(10, 0, 20, 0.3);
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.provider-card {
	background: linear-gradient(
		135deg,
		rgba(45, 27, 78, 0.5) 0%,
		rgba(29, 11, 46, 0.5) 100%
	);
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 40px 20px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.provider-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-primary);
	box-shadow: 0 15px 40px rgba(255, 31, 125, 0.3);
}

.provider-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-text);
}
.provider-name img {
	object-fit: contain;
	width: 100%;
	max-height: 50px;
}

.footer {
	padding: 80px 0 30px;
	background: linear-gradient(
		180deg,
		rgba(10, 0, 20, 0.8) 0%,
		rgba(10, 0, 20, 1) 100%
	);
	border-top: 1px solid var(--color-border);
	margin-top: 100px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 10px;
}

.footer-text {
	font-size: 15px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.footer-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-link:hover {
	color: #ff3d8f;
	transform: translateX(5px);
}

.footer-disclaimer {
	padding: 30px;
	background: rgba(255, 31, 125, 0.1);
	border: 1px solid rgba(255, 31, 125, 0.2);
	border-radius: 16px;
	margin-bottom: 40px;
	backdrop-filter: blur(10px);
}

.disclaimer-text {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.8;
	text-align: center;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
}

.footer-logo {
	font-size: 24px;
	font-weight: 900;
	color: var(--color-primary);
	letter-spacing: 2px;
	font-style: italic;
}

.footer-copyright {
	font-size: 14px;
	color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
	.hero {
		padding-top: 74px;
	}
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		justify-content: center;
		max-height: calc(100vh - 140px);
	}
	.hero-card {
		max-width: 550px;
		padding: 32px;
	}
	.hero-controls {
		bottom: 20px;
	}
	.promo-grid {
		grid-template-columns: 1fr;
	}
	.slots-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-content {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 16px;
	}
	.header {
		padding: 15px 0;
	}
	.logo svg {
		width: 90px;
		height: auto;
	}
	.btn-login {
		width: 40px;
		height: 40px;
	}
	.btn-register {
		padding: 10px 20px;
		font-size: 14px;
	}
	.hero {
		padding-top: 69px;
	}
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		max-height: calc(100vh - 120px);
		justify-content: center;
	}
	.hero-card {
		max-width: 480px;
		padding: 28px;
	}
	.slots-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 640px) {
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		max-height: calc(100vh - 110px);
		justify-content: center;
	}
	.hero-card {
		max-width: 100%;
		padding: 24px;
	}
	.hero-card-text {
		font-size: 12px;
		margin-bottom: 6px;
	}
	.hero-card-amount {
		font-size: 28px;
		margin-bottom: 12px;
	}
	.hero-card-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.hero-card-bonus {
		font-size: 36px;
		margin-bottom: 10px;
	}
	.hero-card-promo {
		font-size: 12px;
		margin-bottom: 18px;
	}
	.btn-primary {
		padding: 14px;
		font-size: 15px;
	}
	.hero-controls {
		bottom: 15px;
		gap: 15px;
	}
	.hero-btn {
		width: 44px;
		height: 44px;
		font-size: 24px;
	}
	.slots-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.promo-section {
		padding: 60px 0;
	}
	.section-title {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
	.header {
		padding: 12px 0;
	}
	.logo svg {
		width: 80px;
	}
	.btn-login {
		width: 38px;
		height: 38px;
	}
	.btn-register {
		padding: 8px 16px;
		font-size: 13px;
	}
	.hero {
		padding-top: 64px;
	}
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		max-height: calc(100vh - 100px);
		justify-content: center;
	}
	.hero-card {
		padding: 20px;
	}
	.hero-card-text {
		font-size: 11px;
		margin-bottom: 5px;
	}
	.hero-card-amount {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.hero-card-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.hero-card-bonus {
		font-size: 32px;
		margin-bottom: 8px;
	}
	.hero-card-promo {
		font-size: 11px;
		margin-bottom: 16px;
	}
	.btn-primary {
		padding: 13px;
		font-size: 14px;
	}
	.hero-controls {
		bottom: 12px;
		gap: 12px;
	}
	.hero-btn {
		width: 38px;
		height: 38px;
		font-size: 20px;
	}
	.hero-dots {
		gap: 10px;
	}
	.hero-dot {
		width: 10px;
		height: 10px;
	}
	.hero-dot.active {
		width: 32px;
	}
}

@media (max-width: 360px) {
	.container {
		padding: 0 12px;
	}
	.logo svg {
		width: 70px;
	}
	.btn-login {
		width: 36px;
		height: 36px;
	}
	.btn-register {
		padding: 7px 12px;
		font-size: 12px;
	}
	.hero {
		padding-top: 62px;
	}
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		max-height: calc(100vh - 92px);
		justify-content: center;
	}
	.hero-card {
		padding: 16px;
	}
	.hero-card-text {
		font-size: 10px;
		margin-bottom: 4px;
	}
	.hero-card-amount {
		font-size: 20px;
		margin-bottom: 8px;
	}
	.hero-card-title {
		font-size: 14px;
		margin-bottom: 8px;
	}
	.hero-card-bonus {
		font-size: 28px;
		margin-bottom: 6px;
	}
	.hero-card-promo {
		font-size: 10px;
		margin-bottom: 12px;
	}
	.btn-primary {
		padding: 11px;
		font-size: 13px;
	}
	.hero-controls {
		bottom: 10px;
		gap: 10px;
	}
	.hero-btn {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}
	.hero-dots {
		gap: 8px;
	}
	.hero-dot {
		width: 8px;
		height: 8px;
	}
	.hero-dot.active {
		width: 26px;
	}
}

@media (max-width: 320px) {
	.container {
		padding: 0 10px;
	}
	.header {
		padding: 10px 0;
	}
	.logo svg {
		width: 60px;
	}
	.btn-login {
		width: 34px;
		height: 34px;
	}
	.btn-register {
		padding: 6px 10px;
		font-size: 11px;
	}
	.hero {
		padding-top: 60px;
	}
	.hero-slide .container {
		justify-content: center;
	}
	.hero-content {
		max-height: calc(100vh - 88px);
		justify-content: center;
	}
	.hero-card {
		padding: 14px;
	}
	.hero-card-text {
		font-size: 9px;
		margin-bottom: 3px;
	}
	.hero-card-amount {
		font-size: 18px;
		margin-bottom: 6px;
	}
	.hero-card-title {
		font-size: 12px;
		margin-bottom: 6px;
	}
	.hero-card-bonus {
		font-size: 24px;
		margin-bottom: 5px;
	}
	.hero-card-promo {
		font-size: 9px;
		margin-bottom: 10px;
	}
	.btn-primary {
		padding: 9px;
		font-size: 11px;
	}
	.hero-controls {
		bottom: 8px;
		gap: 8px;
	}
	.hero-btn {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
	.hero-dots {
		gap: 6px;
	}
	.hero-dot {
		width: 6px;
		height: 6px;
	}
	.hero-dot.active {
		width: 20px;
	}
}
.text-wrapper {
	margin: 80px 0;
	padding: 0;
	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;
	display: inline-block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.text-wrapper th {
	font-weight: 600;
}

@media (max-width: 991px) {
	.text-wrapper table {
		white-space: nowrap;
	}
}
@media (max-width: 768px) {
	.text-wrapper {
		margin: 60px 0;
	}

	.text-wrapper li {
		list-style-position: inside;
	}

	.text-wrapper blockquote {
		border-left-width: 3px;
		padding: 0.7em 1em;
	}
}

@media (max-width: 480px) {
	.text-wrapper {
		margin: 40px 0;
	}
}
.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;
}
