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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: linear-gradient(180deg, #0f1729 0%, #1a1f35 50%, #0f1729 100%);
	color: #ffffff;
	line-height: 1.6;
	min-height: 100vh;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	background: rgba(15, 23, 41, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(99, 102, 241, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	gap: 32px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #ffffff;
	transition: opacity 0.3s;
}

.logo:hover {
	opacity: 0.8;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.logo-main {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.logo-sub {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 2px;
	color: #94a3b8;
}

.nav {
	display: flex;
	gap: 32px;
	flex: 1;
}

.nav-link {
	color: #cbd5e1;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.3s;
	white-space: nowrap;
}

.nav-link:hover {
	color: #6366f1;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn {
	padding: 10px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: #ffffff;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
	color: #ffffff;
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s;
}

.hero-carousel {
	position: relative;
	margin-top: 0;
	overflow: hidden;
}

.carousel-container {
	position: relative;
	width: 100%;
	height: 500px;
}

.carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(15, 23, 41, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 10;
	color: #ffffff;
}

.carousel-nav:hover {
	background: rgba(99, 102, 241, 0.9);
	border-color: #6366f1;
}

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

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

.carousel-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.carousel-dot {
	width: 40px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot.active {
	background: #6366f1;
	width: 60px;
}

.game-filters {
	padding: 32px 0;
	background: rgba(15, 23, 41, 0.5);
	border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.filters-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.filter-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	flex: 1;
}

.filter-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: 8px;
	color: #cbd5e1;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
}

.filter-tab:hover {
	background: rgba(99, 102, 241, 0.1);
	border-color: #6366f1;
	color: #ffffff;
}

.filter-tab.active {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	border-color: #6366f1;
	color: #ffffff;
}

.search-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: 8px;
	padding: 12px 16px;
	min-width: 280px;
	transition: all 0.3s;
}

.search-box:focus-within {
	border-color: #6366f1;
	background: rgba(30, 41, 59, 0.8);
}

.search-box svg {
	color: #64748b;
	flex-shrink: 0;
}

.search-box input {
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-size: 14px;
	width: 100%;
}

.search-box input::placeholder {
	color: #64748b;
}

.games-section {
	padding: 48px 0;
}

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

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
}

.section-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.show-more {
	color: #6366f1;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.3s;
}

.show-more:hover {
	color: #8b5cf6;
}

.nav-arrows {
	display: flex;
	gap: 8px;
}

.nav-arrow {
	width: 40px;
	height: 40px;
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(99, 102, 241, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	color: #cbd5e1;
}

.nav-arrow:hover {
	background: rgba(99, 102, 241, 0.2);
	border-color: #6366f1;
	color: #ffffff;
}

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

.game-card {
	position: relative;
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(99, 102, 241, 0.1);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
	text-decoration: none;
	color: #ffffff;
	display: flex;
	flex-direction: column;
}

.game-card:hover {
	transform: translateY(-8px);
	border-color: #6366f1;
	box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.game-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	z-index: 2;
}

.game-badge.hot {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
	color: #ffffff;
}

.game-badge.new {
	background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
	color: #ffffff;
}

.game-image {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
}

.game-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

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

.game-title {
	padding: 16px;
	font-size: 14px;
	font-weight: 600;
	color: #e2e8f0;
}

.providers-section {
	padding: 48px 0;
	background: rgba(15, 23, 41, 0.5);
}

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

.provider-card {
	background: rgba(30, 41, 59, 0.5);
	border: 1px solid rgba(99, 102, 241, 0.1);
	border-radius: 12px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
	min-height: 100px;
}

.provider-card:hover {
	transform: translateY(-4px);
	border-color: #6366f1;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.provider-card img {
	max-width: 100%;
	height: auto;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.provider-card:hover img {
	opacity: 1;
}

.footer {
	background: rgba(15, 23, 41, 0.8);
	border-top: 1px solid rgba(99, 102, 241, 0.1);
	padding: 48px 0 24px;
	margin-top: 48px;
}

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

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

.footer-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
}

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

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #6366f1;
}

.footer-disclaimer {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 32px;
}

.footer-disclaimer p {
	color: #fca5a5;
	font-size: 13px;
	line-height: 1.6;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	font-weight: 600;
}

.footer-copyright {
	color: #64748b;
	font-size: 13px;
}

@media (max-width: 1024px) {
	.games-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 16px;
	}

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

@media (max-width: 768px) {
	.nav {
		position: fixed;
		top: 73px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(15, 23, 41, 0.98);
		backdrop-filter: blur(10px);
		padding: 20px;
		border-bottom: 1px solid rgba(99, 102, 241, 0.2);
		gap: 16px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-20px);
		transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
		z-index: 999;
	}

	.nav.mobile-active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

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

	.mobile-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.filters-wrapper {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 8px;
	}

	.search-box {
		min-width: 100%;
	}

	.carousel-container {
		height: 300px;
	}

	.carousel-nav {
		width: 40px;
		height: 40px;
	}

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

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

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

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

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 12px 0;
	}

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

	.btn-primary {
		display: none;
	}

	.carousel-container {
		height: 200px;
	}

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

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

	.footer-content {
		grid-template-columns: 1fr;
	}
}
.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;
}

.text-wrapper th,
.text-wrapper td {
	padding: 0.75em 1em;
	border: 1px solid rgba(99, 102, 241, 0.2);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: #6f63f2;
	font-weight: 600;
	border: 1px solid #fff;
}
.text-wrapper tr:nth-child(even) td {
	background: #0e1729;
}

@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 rgba(99, 102, 241, 0.2);
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}
.accordion-item h3 {
	margin: 0;
}
.accordion-header {
	background: #6f63f2;
	padding: 16px 20px;
	cursor: pointer;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}
.accordion-header:hover {
	background: #6052fc;
}
.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: #0e1729;
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: #fff;
	line-height: 1.6;
}
.reviews-header {
	text-align: center;
	color: white;
	margin-bottom: 50px;
}

.reviews-header .reviews-header__title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: 700;
}

.reviews-header p {
	font-size: 1.1rem;
	opacity: 0.9;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.review-card {
	background: white;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.review-author {
	flex: 1;
}

.author-name {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 1rem;
	margin-bottom: 4px;
}

.author-location {
	font-size: 0.9rem;
	color: #888;
}

.review-rating {
	font-size: 1.2rem;
	letter-spacing: 2px;
}

.review-text {
	color: #555;
	line-height: 1.6;
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.reviews-header h1 {
		font-size: 1.8rem;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.review-card {
		padding: 20px;
	}
}
