@font-face {
	font-family: 'velaSans';
	src: local('Arial'), local('Helvetica');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'velaSans Fallback';
	src: local('Arial'), local('Helvetica'), local('sans-serif');
	font-weight: 400;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-primary: #0a0a0a;
	--bg-secondary: #1a1a1a;
	--bg-tertiary: #2a2a2a;
	--accent-gold: #fbbf24;
	--accent-purple: #a855f7;
	--accent-orange: #f97316;
	--accent-green: #10b981;
	--accent-blue: #3b82f6;
	--text-primary: #ffffff;
	--text-secondary: #9ca3af;
	--border-color: #374151;
	--font-heading: velaSans, velaSans Fallback, Arial, sans-serif;
	--font-body: velaSans, velaSans Fallback, Arial, sans-serif;
}

body {
	font-family: var(--font-body);
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.header {
	position: fixed;
	top: 0;
	left: 240px;
	right: 0;
	z-index: 999;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 10, 0.95),
		rgba(10, 10, 10, 0.8)
	);
	backdrop-filter: blur(10px);
	padding: 15px 20px;
	display: flex;
	justify-content: end;
	align-items: center;
	border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 240px;
	height: 100vh;
	background-color: var(--bg-secondary);
	padding: 20px 0;
	z-index: 1000;
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.sidebar.hidden {
	transform: translateX(-100%);
}

.sidebar-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 20px 30px;
	font-size: 24px;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--accent-gold);
	text-decoration: none;
	letter-spacing: 1px;
}

.sidebar-logo svg {
	height: 32px;
}

.sidebar-nav {
	list-style: none;
}

.sidebar-nav li {
	margin-bottom: 5px;
}

.sidebar-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
	font-weight: 500;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
	background-color: var(--bg-tertiary);
	color: var(--text-primary);
}

.sidebar-nav a.highlight {
	background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
	color: var(--text-primary);
	border-radius: 12px;
	margin: 0 10px;
	font-weight: 700;
	font-family: var(--font-heading);
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
	position: relative;
	overflow: hidden;
}

.sidebar-nav a.highlight::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;
}

.sidebar-nav a.highlight:hover::before {
	left: 100%;
}

.sidebar-nav a.highlight:hover {
	transform: translateX(5px);
	box-shadow: 0 6px 16px rgba(168, 85, 247, 0.5);
}

.sidebar-nav a.highlight:nth-child(2) {
	background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.sidebar-nav a.highlight:nth-child(2):hover {
	box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
}

.menu-toggle {
	display: none;
	background-color: var(--bg-secondary);
	border: none;
	color: var(--text-primary);
	width: 40px;
	height: 40px;
	border-radius: 8px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.menu-toggle:hover {
	background-color: var(--bg-tertiary);
}

.main-content {
	margin-left: 240px;
	min-height: 100vh;
	transition: margin-left 0.3s ease;
}

.main-content.expanded {
	margin-left: 0;
}

.header-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-family: var(--font-heading);
	font-size: 14px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
}

.btn-outline {
	background: transparent;
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}

.btn-outline:hover {
	background: var(--accent-gold);
	color: var(--bg-primary);
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
	color: var(--bg-primary);
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
	transform: translateY(-2px);
}

.btn-cta {
	background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
	color: var(--bg-primary);
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
	font-size: 16px;
	padding: 16px 40px;
}

.btn-cta:hover {
	box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
	transform: translateY(-3px);
}

.hero-carousel {
	position: relative;
	height: 500px;
	overflow: hidden;
	margin-top: 70px;
}

.hero-carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 1;
	z-index: 1;
}

.hero-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(30, 58, 46, 0.5) 0%,
		rgba(10, 31, 26, 0.5) 100%
	);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 100%;
	padding: 80px 40px;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	font-family: var(--font-heading);
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
	color: var(--accent-gold);
	font-size: 64px;
	font-weight: 900;
	display: block;
	text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
	letter-spacing: -1px;
}

.hero-content p {
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 30px;
	font-weight: 400;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel-btn {
	position: absolute;
	bottom: 20px;
	background: rgba(10, 10, 10, 0.5);
	border: 2px solid var(--accent-gold);
	color: var(--accent-gold);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-carousel-btn:hover {
	background: var(--accent-gold);
	color: var(--bg-primary);
	box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
}

.hero-carousel-btn-prev {
	left: 20px;
}

.hero-carousel-btn-next {
	right: 20px;
}

.hero-carousel-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.hero-carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid var(--accent-gold);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-carousel-dot.active {
	background: var(--accent-gold);
	box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.section {
	padding: 60px 40px;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 28px;
	font-weight: 700;
	font-family: var(--font-heading);
	color: var(--text-primary);
}

.section-title .icon {
	font-size: 28px;
}

.view-all {
	color: var(--accent-gold);
	text-decoration: none;
	font-weight: 600;
	font-family: var(--font-heading);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
	font-size: 14px;
}

.view-all:hover {
	gap: 10px;
	color: #f59e0b;
}

.category-tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	overflow-x: auto;
	padding-bottom: 5px;
}

.category-tab {
	padding: 10px 20px;
	background: rgba(42, 42, 42, 0.6);
	border: 1px solid rgba(55, 65, 81, 0.5);
	border-radius: 24px;
	color: var(--text-secondary);
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-family: var(--font-heading);
	font-size: 14px;
}

.category-tab::before {
	display: none;
}

.category-tab:hover {
	background: rgba(42, 42, 42, 0.8);
	border-color: rgba(251, 191, 36, 0.4);
	color: var(--text-primary);
}

.category-tab.active {
	background: var(--accent-gold);
	color: var(--bg-primary);
	border-color: var(--accent-gold);
	box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.category-tab span {
	font-size: 16px;
}

.game-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.game-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.game-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.game-card:hover img {
	transform: scale(1.05);
}

.game-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 20px 15px 15px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
	opacity: 1;
}

.game-card-title {
	color: var(--text-primary);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 5px;
	font-family: var(--font-heading);
}

.game-card-provider {
	color: var(--text-secondary);
	font-size: 12px;
}

.game-card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, #f97316, #fb923c);
	color: var(--text-primary);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	font-family: var(--font-heading);
	display: flex;
	align-items: center;
	gap: 4px;
	box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.providers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
}

.provider-card {
	background: linear-gradient(
		135deg,
		var(--bg-secondary),
		rgba(42, 42, 42, 0.5)
	);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	text-decoration: none;
	color: var(--text-primary);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.provider-card:hover {
	border-color: var(--accent-gold);
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
	background: linear-gradient(
		135deg,
		rgba(42, 42, 42, 0.8),
		rgba(42, 42, 42, 0.6)
	);
}

.provider-logo {
	width: 80px;
	height: 80px;

	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--accent-gold);
	letter-spacing: 1px;
}
.provider-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.provider-name {
	font-weight: 600;
	font-size: 14px;
	font-family: var(--font-heading);
}

.provider-games {
	font-size: 12px;
	color: var(--text-secondary);
}

.footer {
	background-color: var(--bg-secondary);
	padding: 60px 40px 30px;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section-title {
	color: var(--accent-gold);
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-heading);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--accent-gold);
}

.footer-disclaimer {
	background: linear-gradient(
		135deg,
		rgba(42, 42, 42, 0.8),
		rgba(26, 26, 26, 0.9)
	);
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 30px;
	border-left: 4px solid var(--accent-orange);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-disclaimer-title {
	color: var(--accent-orange);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-family: var(--font-heading);
}

.footer-disclaimer p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.6;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 14px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	color: var(--accent-gold);
	font-size: 20px;
	font-weight: 800;
	font-family: var(--font-heading);
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
	}

	.sidebar.active {
		transform: translateX(0);
	}

	.menu-toggle {
		display: flex;
	}

	.main-content {
		margin-left: 0;
	}

	.header {
		justify-content: space-between;
		left: 0;
		padding: 12px 15px;
	}

	.header-actions {
		gap: 8px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.hero-carousel {
		height: 450px;
		min-height: 450px;
		margin-top: 60px;
	}

	.hero-content {
		padding: 40px 20px;
		max-width: 100%;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-highlight {
		font-size: 48px;
	}

	.hero-carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.hero-carousel-btn-prev {
		left: 10px;
	}

	.hero-carousel-btn-next {
		right: 10px;
	}

	.hero-carousel-dots {
		bottom: 20px;
	}

	.section {
		padding: 40px 20px;
	}

	.section-title {
		font-size: 24px;
	}

	.section-title .icon {
		font-size: 24px;
	}

	.view-all {
		font-size: 13px;
	}

	.game-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 15px;
	}

	.providers-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 15px;
	}

	.footer {
		padding: 40px 20px 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.btn {
		padding: 8px 16px;
		font-size: 12px;
	}

	.hero-carousel {
		height: 400px;
		min-height: 400px;
	}

	.hero-content {
		padding: 30px 15px;
	}

	.hero-title {
		font-size: 28px;
	}

	.hero-highlight {
		font-size: 40px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.btn-cta {
		font-size: 14px;
		padding: 14px 30px;
	}

	.game-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.category-tabs {
		gap: 8px;
	}

	.category-tab {
		padding: 10px 18px;
		font-size: 13px;
	}

	.section {
		padding: 30px 15px;
	}

	.section-title {
		font-size: 22px;
	}

	.section-title .icon {
		font-size: 16px;
		display: none;
	}

	.view-all {
		font-size: 12px;
		padding: 6px 12px;
	}
}
.text-wrapper {
	margin: 80px 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 var(--border-color);
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-wrapper th {
	background: var(--bg-secondary);
	font-weight: 600;
}
.text-wrapper tr:nth-child(even) td {
	background: var(--bg-tertiary);
}

@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-secondary);
	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-tertiary);
}
.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-secondary);
}
.accordion-content.active {
	max-height: 300px;
}
.accordion-body {
	padding: 16px 20px;
	color: var(--bg-primary);
	line-height: 1.6;
}
.accordion-item h3 {
	margin: 0 !important;
}
