* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scrollbar-color: rgb(112 49 175) transparent;
	scrollbar-width: thin;
}

body {
	font-family: "Arial", sans-serif;
	background: linear-gradient(135deg, #4a1a5c 0%, #2d0a3d 100%);
	color: white;
	line-height: 1.6;
}

section {
	padding: 1rem;
	margin: 0px 2rem 2rem 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
}

section h2 {
	color: #ffd700;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

section h3 {
	color: #ffd700;
	margin-bottom: 1.6rem;
	font-size: 1.2rem;
}

section h4 {
	color: #ffd700;
	margin-bottom: 1.2rem;
	font-size: 1rem;
}

table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	overflow: hidden;
}

th,
td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
	background: rgba(255, 215, 0, 0.2);
	color: #ffd700;
	font-weight: bold;
}

td {
	color: rgba(255, 255, 255, 0.9);
}

tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

p {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
}

ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

li {
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 15px;
	border: none;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
	background: linear-gradient(180deg, #ba78f4 0%, #6622a1 100%);
	box-shadow: 0 0 24px 0 transparent, 0 4px 0 0 rgb(90 14 162), 0 0 0 1px transparent inset, 0 1px 1px
		rgba(255 255 255 / 0.3) inset, 0 8px 16px -4px transparent inset;
	color: white;
	vertical-align: top;
}

.btn-outline {
	background: rgb(217 176 255 / 0.04);
	box-shadow:
		0 0 24px 0 transparent, 0 4px 0 0 rgba(148 126 228 / 0.4), 0 0 0 1px transparent inset, 0 1px 1px rgba(
			255 255 255 / 0.3
		) inset, 0 8px 16px -4px rgba(255 255 255 / 0.14) inset;
}

.btn-outline:hover {
}

.btn-primary {
	background: radial-gradient(100% 100% at 50% 0%, #f9d74c 0%, #f17501 86.3%);
	box-shadow: 0 0 24px 0 transparent, 0 4px 0 0 rgb(190 78 0), 0 0 0 1px transparent inset, 0 1px 1px
		rgba(255 255 255 / 0.3) inset, 0 8px 16px -4px transparent inset;
}

.btn:hover {
	transform: translateY(2px);
}

.btn-cta {
	background: radial-gradient(100% 100% at 50% 0%, #f9d74c 0%, #f17501 86.3%);
	box-shadow: 0 0 24px 0 transparent, 0 4px 0 0 rgb(190 78 0), 0 0 0 1px transparent inset, 0 1px 1px
		rgba(255 255 255 / 0.3) inset, 0 8px 16px -4px transparent inset;
	font-size: 1.2rem;
	padding: 1rem 2rem;
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn:disabled:hover {
	transform: none;
}

.header {
	background: #420f71;
	padding: 15px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid #603688;
}

.header-container {
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 0 1rem;
}

.sidebar-toggle-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	min-width: 30px;
	width: 30px;
	height: 30px;
	background: #d9b0ff;
	mask-image: url('../images/icons/sidebar-closed.svg');
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.sidebar.active + header .sidebar-toggle-btn {
	mask-image: url(../images/icons/sidebar-opened.svg);
}

.hamburger-line {
	width: 100%;
	height: 3px;
	background: #ffd700;
	border-radius: 2px;
	transition: all 0.3s ease;
	display: none;
}

.sidebar-toggle-btn:hover .hamburger-line {
	background: #ffed4e;
}

.logo {
	display: flex;
	align-items: center;
	margin: 0px 1rem;
}

.logo-icon {
	height: 32px;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 70px;
	width: 250px;
	height: calc(100vh - 70px);
	background: linear-gradient(180deg, #6a1b9a 0%, #4a148c 50%, #2d0a3d 100%);
	border-right: 1px solid #603688;
	z-index: 999;
	overflow-x: hidden;
	overflow-y: auto;
	transition: width 0.3s ease;
	display: flex;
	flex-direction: column;
}

.sidebar:not(.active) {
	width: 70px;
}

.sidebar:not(.active) .nav-item span {
	height: 20px;
	width: 0px;
	padding: 0px;
	overflow: hidden;
}

.sidebar:not(.active) .nav-item {
}

.sidebar-toggle {
	display: none;
	position: fixed;
	top: 90px;
	left: 10px;
	background: rgba(74, 26, 92, 0.9);
	color: white;
	border: none;
	padding: 0.5rem;
	border-radius: 5px;
	cursor: pointer;
	z-index: 1001;
}

.sidebar-nav {
	padding: 0.5rem;
	flex-grow: 1;
}

.nav-item {
	display: flex;
	padding: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 12px;
	margin-bottom: 0.5rem;
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	border-top: 1px solid transparent;
	white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
	color: white;
	transform: translateX(2px);
	box-shadow: 0 2px 13px rgba(25 5 45 / 0.3), inset 0px 3px 8px -3px #b88be5;
	background: linear-gradient(0deg, #571a8f, #7525bf);
	border-top: 1px solid #b88be5;
}

.nav-item:hover:before,
.nav-item.active:before {
	content: "";
	background: linear-gradient(#b468ff 0%, transparent 100%);
	position: absolute;
	top: 0px;
	left: 0px;
	xwidth: 100%;
	height: 100%;
}

.nav-item:hover:after,
.nav-item.active:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(0deg, #4c1480 0%, #6622a1 100%) center;
	box-shadow: 0 3px 4px rgba(255 255 255);
}

.nav-item span {
	padding: 0 0 0 0.75rem;
	transition: all 0.3s ease;
	height: 20px;
}

.nav-icon {
	width: 20px;
	height: 20px;
	min-width: 20px;
	object-fit: contain;
	vertical-align: top;
	background: linear-gradient(180deg, #ffd178, #ff7e3e);
}

.nav-icon.wheel {
	background: url(../images/icons/wheel.webp) no-repeat center/cover;
}

.nav-icon.bonus {
	-webkit-mask: url(../images/icons/bonus.svg) no-repeat center/cover;
	mask: url(../images/icons/bonus.svg) no-repeat center/cover;
}

.nav-icon.home {
	-webkit-mask: url(../images/icons/home.svg) no-repeat center/cover;
	mask: url(../images/icons/home.svg) no-repeat center/cover;
}

.nav-icon.games {
	-webkit-mask: url(../images/icons/games.svg) no-repeat center/cover;
	mask: url(../images/icons/games.svg) no-repeat center/cover;
}

.nav-icon.live-casino {
	-webkit-mask: url(../images/icons/live-casino.svg) no-repeat center/cover;
	mask: url(../images/icons/live-casino.svg) no-repeat center/cover;
}

.nav-icon.jackpots {
	-webkit-mask: url(../images/icons/jackpots.svg) no-repeat center/cover;
	mask: url(../images/icons/jackpots.svg) no-repeat center/cover;
}

.nav-icon.sports-sportsbook {
	-webkit-mask: url(../images/icons/sports-sportsbook.svg) no-repeat center/cover;
	mask: url(../images/icons/sports-sportsbook.svg) no-repeat center/cover;
}

.nav-icon.sports-live-sports {
	-webkit-mask: url(../images/icons/sports-live-sports.svg) no-repeat center/cover;
	mask: url(../images/icons/sports-live-sports.svg) no-repeat center/cover;
}

.nav-icon.sports-virtuals {
	-webkit-mask: url(../images/icons/sports-virtuals.svg) no-repeat center/cover;
	mask: url(../images/icons/sports-virtuals.svg) no-repeat center/cover;
}

.nav-icon.tournament {
	-webkit-mask: url(../images/icons/tournament.svg) no-repeat center/cover;
	mask: url(../images/icons/tournament.svg) no-repeat center/cover;
}

.nav-icon.cashcrab {
	-webkit-mask: url(../images/icons/cashcrab.svg) no-repeat center/cover;
	mask: url(../images/icons/cashcrab.svg) no-repeat center/cover;
}

.nav-icon.shop {
	-webkit-mask: url(../images/icons/shop.svg) no-repeat center/cover;
	mask: url(../images/icons/shop.svg) no-repeat center/cover;
}

.nav-icon.vip {
	-webkit-mask: url(../images/icons/vip.svg) no-repeat center/cover;
	mask: url(../images/icons/vip.svg) no-repeat center/cover;
}

.sidebar-footer {
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

.sidebar-footer-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	border-radius: 8px;
	margin-bottom: 0.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sidebar-footer-item:hover {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

.flag-icon,
.help-icon {
	font-size: 1.1rem;
	width: 20px;
	text-align: center;
}

.main-content {
	margin-left: 250px;
	margin-top: 70px;
	padding: 0px 0px 3rem 0px;
	background: url("/images/hero/header-banner.jpg") no-repeat top center / 100% auto #200a35;
	transition: margin-left 0.3s ease;
}

.sidebar:not(.active) ~ .main-content {
	margin-left: 70px;
}

.hero-banner {
	padding: 4rem 3rem;
	margin: 0px 0px 1rem 0px;
	position: relative;
	overflow: hidden;
	background: none;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.welcome-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	letter-spacing: 1px;
}

.hero-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 2rem;
	line-height: 1.2;
	text-shadow: 0px 4px 3px #8139c6;
	max-width: 485px;
}

.hero-image {
	position: relative;
}

.crown-logo {
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, #ffd700 0%, #ffb300 100%);
	border-radius: 50%;
	position: relative;
}

.crown-logo::before {
	content: "ÃƒÂ°Ã…Â¸Ã¢â‚¬ËœÃ¢â‚¬Ëœ";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
}

.games-slider {
	display: flex;
	gap: 1rem;
	scroll-behavior: smooth;
	transition: transform 0.3s ease;
}

.game-card {
	min-width: 240px;
	width: 13vw;
	height: 390px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}

.game-card:hover {
}

.game-card .play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(86 17 139 / 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	text-align: center;
	text-decoration: none;
}

.game-card:hover .play-overlay {
	opacity: 1;
}

.game-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-button {
	width: 70px;
	height: 60px;
	background: orange;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
	transition: all 0.3s ease;
	background: radial-gradient(100% 100% at 50% 0%, #f9d74c 0%, #f17501 86.3%);
	box-shadow: 0 0 24px 0 transparent, 0 4px 0 0 rgb(190 78 0), 0 0 0 1px transparent inset, 0 1px 1px
		rgba(255 255 255 / 0.3) inset, 0 8px 16px -4px transparent inset;
	position: relative;
	color: white;
}

.play-button:before {
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
}

.slider-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.slider-nav {
	display: flex;
}

.slider-btn {
	width: 40px;
	height: 40px;
	padding: 0.5rem;
	color: #ffd700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: bold;
	transition: all 0.3s ease;
}

.slider-btn:hover {
}

.slider-btn.prev-btn {
	border-radius: 15px 0px 0px 15px;
}

.slider-btn.next-btn {
	border-radius: 0px 15px 15px 0px;
}

.faq-section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
}

.faq-section h2 {
	color: #ffd700;
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.faq-item {
	margin-bottom: 1rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	border: 1px solid rgba(255, 215, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
	border-color: rgba(255, 215, 0, 0.3);
	background: rgba(255, 215, 0, 0.05);
}

.faq-item h3 {
	color: #ffd700;
	margin: 0;
	padding: 1.5rem;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.faq-item h3:hover {
	color: #ffed4e;
}

.faq-arrow {
	font-size: 0.8rem;
	transition: transform 0.3s ease;
	color: #ffd700;
	min-width: 16px;
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0px 1.5rem 1.5rem 1.5rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin: 0px;
}

.pros-cons-container {
	display: flex;
	gap: 2rem;
}

.pros,
.cons {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 1.5rem;
	flex:1;
}

.pros h3 {
	color: #4caf50;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.cons h3 {
	color: #f44336;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.pros ul,
.cons ul {
	list-style: none;
	padding: 0;
	margin: 0px;
}

.pros li,
.cons li {
	padding: 0.5rem 0;
	color: rgba(255, 255, 255, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0.5rem 0 0 0;
}

.pros li:last-child,
.cons li:last-child {
	border-bottom: none;
}

.testimonial-section {
	padding: 0px;
}

blockquote {
	background: rgba(255, 215, 0, 0.1);
	border-left: 4px solid #ffd700;
	border-radius: 10px;
	padding: 2rem;
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
}

blockquote::before {
	content: '"';
	font-size: 4rem;
	color: #ffd700;
	position: absolute;
	top: -0px;
	left: 5px;
	line-height: 1;
}

cite {
	display: block;
	margin-top: 1rem;
	color: #ffd700;
	font-weight: bold;
	font-style: normal;
}

.footer {
	background: rgba(45, 10, 61, 0.95);
	margin-left: 250px;
	transition: margin-left 0.3s ease;
}

.sidebar:not(.active) ~ .footer {
	margin-left: 70px;
}

.footer-top {
	text-align: center;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.language-chat-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	padding: 2rem;
	margin: 0 auto;
	text-align: center;
}

.footer-column h4 {
	color: #ffd700;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-column a {
	color: #ffd700;
	font-size: 1.1rem;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: #ffed4e;
}

.footer-column ul {
	list-style: none;
	padding: 0px;
}

.footer-column li {
	margin-bottom: 0.5rem;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 auto;
}

.payment-methods {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.payment-methods img {
	height: 30px;
	width: auto;
}

.certifications {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.certifications img {
	height: 40px;
	width: auto;
}

.footer-disclaimer {
	text-align: center;
	padding: 1rem 1rem 0 1rem;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-buttons {
	display: flex;
	margin: -2px 0px 2px auto;
	gap: 1rem;
}

.top-games {
	margin-bottom: 3rem;
	padding: 0px;
	overflow: hidden;
	background: none;
}

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

.section-header h2 {
	font-size: 2rem;
	margin: 0px;
}

.see-all {
	color: #ffd700;
	text-decoration: none;
	font-weight: bold;
}

@media (max-width: 768px) {
	.sidebar, .sidebar:not(.active) {
		left:-250px;
		transition: left 0.3s ease, opacity 0.3s ease;
		opacity: 0;
	}

	.sidebar.active {
		left:0px;
		opacity: 1;
	}

	.sidebar-toggle-btn, .sidebar.active + header .sidebar-toggle-btn {
		display: flex;
		background: none;
		mask-image: none;
	}

	.main-content, .sidebar:not(.active) ~ .main-content {
		margin-left: 0;
		padding: 1rem;
	}

	.footer, .sidebar:not(.active) ~ .footer {
		margin-left: 0;
	}

	.header-container {
		padding: 0 1rem;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-title {
		font-size: 2rem;
		margin-bottom: 1rem;
		max-width: none;
	}

	.hero-title br {
		display:none;
	}

	.games-slider {
		gap: 0.5rem;
	}

	.slider-controls {
		gap: 0.5rem;
	}

	.slider-nav {
		order: -1;
	}

	.payment-methods {
		flex-wrap: wrap;
		margin: 0px 0px 1rem 0px;
	}

	.footer-bottom {
		flex-direction: column;
		padding: 1rem;
	}

	section {
		margin: 0px 0rem 2rem 0rem;
	}

	section > h2 {
		line-height: 1.75rem;
	}

	.pros-cons-container {
		flex-direction: column;
		gap: 1rem;
	}

	.hamburger-line {
		display: block;
	}

	.sidebar.active ~ .header .sidebar-toggle-btn .hamburger-line:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
	}

	.sidebar.active ~ .header .sidebar-toggle-btn .hamburger-line:nth-child(2) {
		opacity: 0;
	}

	.sidebar.active ~ .header .sidebar-toggle-btn .hamburger-line:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
}

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

	.btn-cta {
		width: 100%;
	}

	.hero-banner {
		padding: 5rem 0px 1.5rem 0px;
	}

	table {
		font-size: 0.8rem;
	}

	th,
	td {
		padding: 0.25rem;
	}

	.pros, .cons {
		padding: 0.75rem;
	}

	.auth-buttons .btn-outline {
		display: none;
	}

	.faq-item h3 {
		padding: 1rem;
		line-height: 1.5rem;
	}

	.faq-answer p {
		padding: 0px 1rem 1rem 1rem;
	}

	section {
		padding: 0.75rem;
	}

	.pros h3, .cons h3 {
		margin-bottom: 0.75rem;
	}
}
