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

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}

::-webkit-scrollbar-thumb {
	background: #d4af37;
	border-radius: 3px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: #ffffff;
	line-height: 1.6;
	overflow-x: hidden;
}

blockquote {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
	padding: 40px;
	border-radius: 16px;
	border-left: 4px solid #d4af37;
	font-size: 1.2rem;
	font-style: italic;
	line-height: 1.8;
	position: relative;
	margin: 30px 0px 0px 0px;
}

blockquote::before {
	content: '”';
	font-size: 4rem;
	color: #d4af37;
	position: absolute;
	top: -10px;
	left: 10px;
}

cite {
	display: block;
	margin-top: 20px;
	font-size: 1rem;
	color: #d4af37;
	font-style: normal;
	font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

strong {
	font-weight: 700;
	color: #d4af37;
}

em {
	font-style: italic;
	color: #f4d03f;
}

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

table th,
table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease, color 0.3s ease;
}

table th {
	background: rgba(212, 175, 55, 0.1);
	font-weight: 600;
	color: #d4af37;
}

table tr:hover td {
	background: rgba(212, 175, 55, 0.05);
	color: #d4af37;
}

.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
	border-bottom: 1px solid #333;
	z-index: 1001;
	padding: 0 15px;
	align-items: center;
	justify-content: space-between;
}

.mobile-menu-btn {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	min-width: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-around;
}

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

.mobile-language {
	display: flex;
	display: none;
	align-items: center;
	flex-direction: column;
	color: #fff;
	font-size: 0.9rem;
	line-height: 15px;
}

.mobile-language .flag {
	width: 30px;
	height: 30px;
	margin: 0px;
}

.mobile-auth {
	display: flex;
	gap: 8px;
}

.mobile-auth .btn-outline,
.mobile-auth .btn-primary {
	padding: 8px 16px;
	font-size: 0.85rem;
	border-radius: 4px;
}

.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	width: 280px;
	height: 100vh;
	background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
	border-right: 1px solid #333;
	padding: 20px;
	overflow-y: auto;
	z-index: 1000;
}

.sidebar-header {
	text-align: center;
	margin-bottom: 20px;
}

.logo {
}

.mobile-header .logo {
	width: auto;
	height: 100%;
	padding: 5px;
}

.auth-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}

.btn-outline {
	background: transparent;
	border: 1px solid #fbe3af;
	color: #fbe3af;
	padding: 12px 24px;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 600;
	transition: background .3s ease, border .3s ease, color .3s ease, opacity .3s ease;
	text-decoration: none;
	text-align: center;
}

.btn-outline:hover {
	background: #0000005c;
	border: 1px solid #9d9b98;
	color: #9d9b98;
}

.btn-primary {
	background: linear-gradient(90deg, #ba9d64, #fbe3a3);
	border: none;
	color: #000;
	padding: 12px 24px;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nav-menu {
	list-style: none;
	margin-bottom: 30px;
}

.nav-item {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	color: #ccc;
	text-decoration: none;
	border-radius: 8px;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
	background: rgba(212, 175, 55, 0.1);
	color: #d4af37;
}

/* Updated SVG icon styling to use fill attribute instead of filter */
.nav-item .icon {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	fill: #ccc;
	transition: fill 0.3s ease;
	flex-shrink: 0;
}

.nav-item:hover .icon,
.nav-item.active .icon {
	fill: #d4af37;
}

/* Ensure SVG icons inherit currentColor for better control */
.nav-item svg {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	color: #ccc;
	transition: color 0.3s ease;
	flex-shrink: 0;
}

.nav-item:hover svg,
.nav-item.active svg {
	color: #d4af37;
}

/* Remove any filter effects from SVG icons */
.nav-item svg path {
	fill: currentColor;
}

.language-selector {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	margin-top: auto;
}

.flag {
	width: 24px;
	height: 18px;
	margin-right: 8px;
}

.main-content {
	margin-left: 280px;
	padding: 20px;
	min-height: 100vh;
}

.hero-banner {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
	border-radius: 16px;
	margin-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.hero-slides {
	position: relative;
	width: 100%;
	height: 390px;
	z-index: 200;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 60px 40px;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	background-size: cover;
	background-position: center;
}

.hero-slide.active {
	opacity: 1;
	z-index: 200;
}

.hero-slide:first-child {
	background-image: url("../images/hero/hero-banner-1-WOd.webp");
}

.hero-slide:last-child {
	background-image: url("../images/hero/hero-banner-2-LO_High_Roller_Offer.webp");
}

.hero-indicators {
	position: absolute;
	bottom: 20px;
	left: 65px;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 300;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: background 0.3s ease, width 0.3s ease;
}

.indicator.active {
	background: #d4af37;
	width: 30px;
}

.hero-buttons {
	display: flex;
	gap: 15px;
}

.hero-content h2 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 30px;
}

.hero-btn {
	font-size: 1.1rem;
	padding: 16px 32px;
}

.games-section {
	margin-bottom: 50px;
}

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

.section-header h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0px;
}

.section-controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn-small {
	padding: 8px 16px;
	font-size: 0.9rem;
}

.slider-btn {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.slider-btn:hover {
	background: rgba(212, 175, 55, 0.3);
}

.games-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}

.game-card {
	min-width: 200px;
	background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.game-card:hover {
	box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.game-card img {
	width: 100%;
	object-fit: cover;
	vertical-align: top;
}

.game-card .overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	background: rgb(0 0 0 / 50%);
	transition: opacity 0.3s ease;
}

.game-card .overlay .btn-primary {
	text-decoration: none;
}

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

.game-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.game-badge.jackpot {
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
	color: #000;
}

.game-badge.hot {
	background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
	color: #fff;
}

.game-badge.new {
	background: linear-gradient(135deg, #2ed573 0%, #7bed9f 100%);
	color: #fff;
}

.game-card .game-badge:nth-child(2) {
	top: 10px;
	right: 10px;
}

.game-card .game-badge:nth-child(3) {
	top: 40px;
	right: 10px;
}

.providers-section {
	margin-bottom: 50px;
}

.providers-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 10px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}

.provider-card {
	min-width: 120px;
	height: 80px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.provider-card:hover {
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-2px);
}

.provider-card img {
	max-width: 80px;
	max-height: 50px;
	object-fit: contain;
	filter: brightness(0.8);
	transition: filter 0.3s ease;
}

.provider-card:hover img {
	filter: brightness(1);
}

.text-section {
	background: rgba(255, 255, 255, 0.03);
	padding: 40px;
	border-radius: 16px;
	margin-bottom: 50px;
}

.text-section h2 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.text-section p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #ccc;
	margin-bottom: 30px;
}

.pros-cons-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 30px 0px 0px 0px;
}

.pros,
.cons {
	background: rgba(255, 255, 255, 0.03);
	padding: 30px;
	border-radius: 12px;
}

.pros h3 {
	color: #2ed573;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.cons h3 {
	color: #ff4757;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.pros ul,
.cons ul {
	list-style: none;
}

.pros li,
.cons li {
	padding: 4px 0px 4px 25px;
	position: relative;
}

.pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #2ed573;
	font-weight: bold;
}

.cons li::before {
	content: "✗";
	position: absolute;
	left: 0;
	color: #ff4757;
	font-weight: bold;
}

.faq-section {
	margin-bottom: 50px;
}

.faq-section h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: #fff;
}

.faq-container {
	border-radius: 16px;
	overflow: hidden;
}

.faq-item {
	margin-bottom: 20px;
	background: rgba(212, 175, 55, 0.05);
	border-radius: 10px;
}

.faq-item.active {
	background: rgba(212, 175, 55, 0.1);
}

.faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	position: relative;
	transition: all 0.3s ease;
	margin: 0px;
}

.faq-question:hover {
}

.faq-question::after {
	content: "";
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	color: #d4af37;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 8px 0 8px;
	border-color: #ccb07a transparent transparent transparent;
}

.faq-item.active .faq-question::after {
	transform: translateY(-50%) rotate(180deg);
}

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

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

.faq-answer p {
	padding: 0 30px 25px;
	color: #ccc;
	line-height: 1.6;
	margin: 0px;
}

.footer {
	background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
	padding: 50px 0px 0px 0px;
	border-top: 1px solid #333;
	margin-left: 280px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

.footer-logo img {
	height: 130px;
}

.footer-links {
	display: flex;
	gap: 100px;
}

.footer-column h4 {
	color: #d4af37;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 15px;
}

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

.footer-column li {
	margin-bottom: 8px;
}

.footer-column a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-section {
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 0 20px;
}

.footer-section h4 {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

.payment-methods,
.game-studios {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.payment-methods img,
.game-studios img {
	height: 40px;
	width: auto;
	filter: brightness(0.7);
	transition: filter 0.3s ease;
}

.payment-methods img:hover,
.game-studios img:hover {
	filter: brightness(1);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	border-top: 1px solid #333;
}

.footer-disclaimer p {
	color: #ccc;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.age-restriction img {
	height: 40px;
}

.slide-item {
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

@media (max-width: 1024px) {
	.mobile-header {
		display: flex;
	}

	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		top: 60px;
		height: calc(100vh - 60px);
	}

	.sidebar.active {
		transform: translateX(0%);
	}

	.main-content {
		margin-left: 0;
		padding-top: 65px; /* Account for mobile header */
	}

	.footer {
		margin-left: 0px;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.pros-cons-container {
		grid-template-columns: 1fr;
	}

	.pros,
	.cons {
		padding: 15px;
	}

	.footer-links {
		gap: 30px;
	}

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

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

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

	.hero-btn {
		flex:1;
	}
}

@media (max-width: 768px) {
	.main-content {
		padding: 65px 5px 5px; /* Increased top padding for mobile header */
	}

	.hero-banner {
	}

	h1 {
		font-size: 2rem;
	}

	.section-header {
	}

	.section-header h2 {
		font-size: 1.5rem;
	}

	.footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.footer-links {
		flex-wrap: wrap;
		gap: 10px 0px;
		justify-content: space-between;
	}

	.footer-column {
		width: 50%;
	}

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

	.text-section {
		padding: 5px;
	}

	.hero-indicators {
		left: 50%;
	}

	.hero-content h2 {
		font-size: 2rem;
	}

	.hero-slide {
		padding: 60px 20px;
	}

	.footer-logo {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.games-slider {
		gap: 15px;
	}

	.game-card {
		min-width: 160px;
	}

	table {
		font-size: 0.9rem;
	}

	table th,
	table td {
		padding: 15px 10px;
	}

	/* Adjust mobile header for smaller screens */
	.mobile-auth .btn-outline,
	.mobile-auth .btn-primary {
		padding: 6px 12px;
		font-size: 0.8rem;
	}
}
