/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*, *::before, *::after {
	box-sizing: border-box;
}

.hidden {
	display: none !important;
}

html {
	scroll-behavior: smooth;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	line-height: 1.6;
	font-size: 15px;
	overflow-x: hidden;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

/* App Container */
.app-container-d6xoi {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	padding: 0;
}

/* Header */
.header-d6xoi {
	background: #1a1f3a;
	border-bottom: 1px solid #2a2f4a;
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container-d6xoi {
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.header-left-d6xoi {
	display: flex;
	align-items: center;
	gap: 15px;
}

.sidebar-toggle-d6xoi,
.back-btn-d6xoi {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-d6xoi img {
	height: 40px;
	width: auto;
}

.search-container-d6xoi {
	flex: 1;
	max-width: 400px;
}

.search-input-wrapper-d6xoi {
	position: relative;
	display: flex;
	align-items: center;
}

.search-icon-wrapper-d6xoi {
	position: absolute;
	left: 12px;
	z-index: 1;
}

.search-input-d6xoi {
	width: 100%;
	padding: 10px 15px 10px 45px;
	background: #252a45;
	border: 1px solid #3a3f5a;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
}

.search-input-d6xoi::placeholder {
	color: #888;
}

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

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

.btn-login-d6xoi {
	background: transparent;
	color: #fff;
	border: 1px solid #3a3f5a;
}

.btn-signup-d6xoi {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
}

.btn-d6xoi:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Sidebar */
.sidebar-d6xoi {
	position: fixed;
	left: 0;
	top: 0;
	width: 280px;
	height: 100vh;
	background: #1a1f3a;
	border-right: 1px solid #2a2f4a;
	overflow-y: auto;
	z-index: 999;
	transform: translateX(-100%);
	transition: transform 0.3s;
}

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

.sidebar-container-d6xoi {
	padding: 20px;
}

.sidebar-actions-d6xoi {
	margin-bottom: 30px;
}

.sidebar-grid-d6xoi {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 15px;
}

.grid-btn-d6xoi {
	font-size: 13px;
}

.bottom-grid-d6xoi {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 15px;
}

.bottom-btn-d6xoi {
	width: 100%;
	padding: 12px;
	background: #252a45;
	border: none;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	transition: background 0.3s;
}

.bottom-btn-d6xoi:hover {
	background: #2a2f5a;
}

.bottom-btn-d6xoi img {
	width: 24px;
	height: 24px;
}

.sidebar-bottom-actions-d6xoi {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #2a2f4a;
}

.loyalty-program-d6xoi {
	margin-bottom: 20px;
}

.loyalty-btn-large-d6xoi {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border: none;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	position: relative;
	overflow: hidden;
}

.loyalty-btn-large-d6xoi img:first-child {
	width: 30px;
	height: 30px;
}

.loyalty-btn-large-d6xoi img:last-child {
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 60px;
	height: 60px;
	opacity: 0.3;
}

.sidebar-footer-d6xoi {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid #2a2f4a;
}

.support-btn-d6xoi,
.footer-btn-d6xoi {
	width: 100%;
	padding: 12px 15px;
	background: transparent;
	border: none;
	color: #bbb;
	text-align: left;
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	margin-bottom: 8px;
	transition: all 0.3s;
}

.support-btn-d6xoi:hover,
.footer-btn-d6xoi:hover {
	background: #252a45;
	color: #fff;
}

.chat_img-d6xoi {
	margin-left: auto;
	width: 20px;
	height: 20px;
}

.sidebar-btn-d6xoi {
	width: 100%;
	padding: 12px 15px;
	background: transparent;
	border: none;
	color: #fff;
	text-align: left;
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	font-size: 14px;
	transition: background 0.3s;
}

.sidebar-btn-d6xoi:hover {
	background: #252a45;
}

.sidebar-btn-d6xoi img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.nav-list-d6xoi {
	list-style: none;
}

.nav-item-d6xoi {
	margin-bottom: 8px;
}

.nav-btn-d6xoi {
	width: 100%;
	padding: 12px 15px;
	background: transparent;
	border: none;
	color: #fff;
	text-align: left;
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	transition: background 0.3s;
}

.nav-btn-d6xoi:hover {
	background: #252a45;
}

.expand-icon-d6xoi {
	margin-left: auto;
	transition: transform 0.3s;
}

.expandable-d6xoi.active .expand-icon-d6xoi {
	transform: rotate(180deg);
}

.sub-nav-d6xoi {
	list-style: none;
	padding-left: 20px;
	margin-top: 8px;
	display: none;
}

.expandable-d6xoi.active .sub-nav-d6xoi {
	display: block;
}

.sub-nav-link-d6xoi {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 15px;
	color: #bbb;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	transition: all 0.3s;
}

.sub-nav-link-d6xoi:hover {
	background: #252a45;
	color: #fff;
}

/* Main Content */
.main-wrapper-d6xoi {
	flex: 1;
	margin: 0 auto;
	padding: 20px;
	transition: margin-left 0.3s;
	max-width: 1150px;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.sidebar-d6xoi.active ~ .main-wrapper-d6xoi {
	margin-left: 280px;
}

.main-content-d6xoi {
	width: 100%;
}

/* Slider */
.slider-d6xoi {
	margin-bottom: 35px;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.slider-container-d6xoi {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

.slider-track-d6xoi {
	display: flex;
	transition: transform 0.5s;
	width: 100%;
}

.slide-d6xoi {
	min-width: 100%;
	max-width: 100%;
	display: flex;
	flex-shrink: 0;
}

.slide-images-d6xoi {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

.slide-images-d6xoi img {
	width: 100%;
	max-width: 1000px;
	height: auto;
	max-height: 320px;
	object-fit: contain;
	border-radius: 12px;
	margin: 0 auto;
	display: block;
}

.slider-dots-d6xoi {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 15px;
}

.dot-d6xoi {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #3a3f5a;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
}

.dot-d6xoi.active-d6xoi {
	background: #ff6b35;
}

/* Game Categories */
.game-categories-d6xoi {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 7px;
	width: 100%;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.game-categories-d6xoi::-webkit-scrollbar {
	height: 6px;
}

.game-category-btn-d6xoi {
	padding: 10px 20px;
	background: #252a45;
	border: 1px solid #3a3f5a;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	transition: all 0.3s;
}

.game-category-btn-d6xoi.active-d6xoi {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-color: #ff6b35;
}

.game-category-btn-d6xoi img {
	width: 20px;
	height: 20px;
}

/* Game Grid */
.ggrid-section-d6xoi {
	margin-bottom: 33px;
	width: 100%;
	overflow-x: hidden;
}

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

.ggrid-title-d6xoi {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ggrid-section-icon-d6xoi {
	width: 32px;
	height: 32px;
}

.ggrid-section-title-d6xoi {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.ggrid-count-d6xoi {
	background: #252a45;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	color: #bbb;
}

.ggrid-slider-d6xoi {
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.ggrid-slider-d6xoi::-webkit-scrollbar {
	height: 6px;
}

.ggrid-track-d6xoi {
	display: flex;
	gap: 15px;
	width: max-content;
}

.ggrid-card-d6xoi {
	min-width: 160px;
	width: 160px;
	background: #1a1f3a;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ggrid-card-d6xoi:hover {
	transform: translateY(-5px);
}

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

.ggrid-image-d6xoi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ggrid-overlay-d6xoi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.ggrid-card-d6xoi:hover .ggrid-overlay-d6xoi {
	opacity: 1;
}

.ggrid-play-btn-d6xoi {
	padding: 8px 16px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	font-size: 13px;
}

.ggrid-info-d6xoi {
	padding: 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 60px;
}

.ggrid-name-d6xoi {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 3px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 36px;
}

.ggrid-provider-d6xoi {
	font-size: 12px;
	color: #888;
	margin-top: auto;
}

/* Hero Content */
.hero-content-d6xoi {
	max-width: 1000px;
	margin: 0 auto;
	padding: 35px 20px;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.demo-title-d6xoi h1 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 18px;
	color: #fff;
}

.hero-content-d6xoi h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 25px 0 15px;
	color: #fff;
}

.hero-content-d6xoi h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0 12px;
	color: #fff;
}

.hero-content-d6xoi p {
	margin-bottom: 12px;
	color: #ccc;
	line-height: 1.7;
	font-size: 15px;
}

.hero-content-d6xoi ul,
.hero-content-d6xoi ol {
	margin: 10px 0 10px 20px;
	color: #ccc;
	font-size: 14px;
}

.hero-content-d6xoi li {
	margin-bottom: 8px;
}

.hero-content-d6xoi table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	margin: 13px 0;
	background: #1a1f3a;
	border-radius: 8px;
	overflow: hidden;
	table-layout: auto;
	font-size: 13px;
}

.hero-content-d6xoi th {
	background: #252a45;
	padding: 8px;
	text-align: left;
	font-weight: 600;
	color: #fff;
	font-size: 13px;
}

.hero-content-d6xoi td {
	padding: 8px;
	border-top: 1px solid #2a2f4a;
	color: #ccc;
	font-size: 13px;
}

/* FAQ */
.faq-section-d6xoi {
	max-width: 1000px;
	margin: 50px auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.faq-title-d6xoi {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
	color: #fff;
}

.faq-container-d6xoi {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item-d6xoi {
	background: #1a1f3a;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #2a2f4a;
}

.faq-question-d6xoi {
	width: 100%;
	padding: 20px;
	background: transparent;
	border: none;
	color: #fff;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.faq-icon-d6xoi {
	transition: transform 0.3s;
	flex-shrink: 0;
}

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

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

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

.faq-answer-d6xoi p {
	padding: 0 20px 20px;
	color: #ccc;
	line-height: 1.6;
}

/* Contacts */
.contacts-section-d6xoi {
	max-width: 1000px;
	margin: 50px auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.contacts-title-d6xoi {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
	color: #fff;
}

.contacts-container-d6xoi {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.contact-item-d6xoi {
	background: #1a1f3a;
	padding: 25px;
	border-radius: 12px;
	display: flex;
	gap: 20px;
	border: 1px solid #2a2f4a;
}

.contact-icon-d6xoi {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	color: #ff6b35;
}

.contact-label-d6xoi {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
}

.contact-value-d6xoi {
	color: #ccc;
	font-size: 14px;
}

.contact-link-d6xoi {
	color: #ff6b35;
	text-decoration: none;
}

.contact-link-d6xoi:hover {
	text-decoration: underline;
}

/* Footer */
.footer-section-d6xoi {
	background: #1a1f3a;
	border-top: 1px solid #2a2f4a;
	margin-top: 50px;
	padding: 25px 20px 15px;
	width: 100%;
	overflow-x: hidden;
}

.footer-container-d6xoi {
	max-width: 1150px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

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

.footer-column-title-d6xoi {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #fff;
}

.footer-links-d6xoi {
	list-style: none;
}

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

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

.footer-links-d6xoi a:hover {
	color: #ff6b35;
}

.social-links-d6xoi {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.social-link-d6xoi {
	width: 40px;
	height: 40px;
	background: #252a45;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-link-d6xoi:hover {
	background: #2a2f5a;
	transform: translateY(-2px);
}

.social-link-d6xoi img {
	width: 20px;
	height: 20px;
}

.footer-mobile-logo-d6xoi {
	display: none;
	margin-top: 20px;
}

.footer-mobile-logo-d6xoi img {
	height: 40px;
}

.footer-brand-d6xoi {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-logo-img-d6xoi {
	height: 45px;
	width: auto;
	margin-bottom: 12px;
}

.footer-certificates-d6xoi {
	display: flex;
	gap: 15px;
}

.certificate-item-d6xoi {
	width: 60px;
	height: 60px;
	background: #252a45;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.anj-certificate-d6xoi {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 4px;
}

.responsible-gaming-d6xoi img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-bottom-d6xoi {
	border-top: 1px solid #2a2f4a;
	padding-top: 20px;
}

.copyright-text-d6xoi {
	color: #888;
	font-size: 12px;
	line-height: 1.8;
}

.copyright-text-d6xoi p {
	margin-bottom: 10px;
}

.footer-copyright-d6xoi {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #2a2f4a;
}

.copyright-final-d6xoi {
	color: #fff;
	font-weight: 600;
	margin-bottom: 8px;
}

.update-date-d6xoi {
	color: #888;
	font-size: 12px;
}

/* Sidebar Overlay */
.sidebar-overlay-d6xoi {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.sidebar-overlay-d6xoi.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
	html, body {
		max-width: 100vw;
		overflow-x: hidden;
	}
	
	.header-container-d6xoi {
		flex-wrap: wrap;
		width: 100%;
		max-width: 100%;
	}
	
	.search-container-d6xoi {
		order: 3;
		width: 100%;
		max-width: 100%;
	}
	
	.main-wrapper-d6xoi {
		padding: 10px;
		width: 100%;
		max-width: 100vw;
	}
	
	.sidebar-d6xoi.active ~ .main-wrapper-d6xoi {
		margin-left: 0;
	}
	
	.hero-content-d6xoi {
		padding: 13px 10px;
		width: 100%;
		max-width: 100%;
	}
	
	.hero-content-d6xoi h1 {
		font-size: 19px;
		word-wrap: break-word;
	}
	
	.hero-content-d6xoi h2 {
		font-size: 15px;
		word-wrap: break-word;
	}
	
	.slide-images-d6xoi {
		padding: 15px;
	}
	
	.slide-images-d6xoi img {
		width: 100%;
		max-width: 100%;
		max-height: 168px;
	}
	
	.ggrid-card-d6xoi {
		min-width: 160px;
	}
	
	.game-categories-d6xoi {
		width: 100%;
		max-width: 100vw;
	}
	
	.ggrid-slider-d6xoi,
	.tournaments-slider-d6xoi {
		width: 100%;
		max-width: 100vw;
	}
	
	.hero-content-d6xoi table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}
}

/* Modal */
.modal-overlay-d6xoi {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.modal-overlay-d6xoi:not(.hidden) {
	opacity: 1;
	visibility: visible;
}

.register-modal-d6xoi {
	background: #1a1f3a;
	border-radius: 16px;
	max-width: 900px;
	width: 90%;
	max-width: min(900px, 90vw);
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	border: 1px solid #2a2f4a;
	box-sizing: border-box;
}

.modal-close-d6xoi {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	z-index: 1;
	padding: 8px;
}

.register-container-d6xoi {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.register-left-d6xoi {
	background: #252a45;
	border-radius: 16px 0 0 16px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-image-d6xoi img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.register-right-d6xoi {
	padding: 40px;
}

.register-title-d6xoi {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.auth-buttons-d6xoi {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.auth-btn-d6xoi {
	flex: 1;
	padding: 12px;
	background: #252a45;
	border: none;
	border-radius: 8px;
	color: #bbb;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
}

.auth-btn-d6xoi.active-d6xoi {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
}

.form-group-d6xoi {
	margin-bottom: 20px;
}

.form-label-d6xoi {
	display: block;
	margin-bottom: 8px;
	color: #ccc;
	font-size: 14px;
	font-weight: 500;
}

.form-input-d6xoi,
.form-select-d6xoi {
	width: 100%;
	padding: 12px 15px;
	background: #252a45;
	border: 1px solid #3a3f5a;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
}

.form-input-d6xoi:focus,
.form-select-d6xoi:focus {
	outline: none;
	border-color: #ff6b35;
}

.password-input-d6xoi {
	position: relative;
}

.password-toggle-d6xoi {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.phone-input-d6xoi {
	display: flex;
	align-items: center;
}

.country-code-d6xoi {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 15px;
	background: #252a45;
	border: 1px solid #3a3f5a;
	border-right: none;
	border-radius: 8px 0 0 8px;
	color: #fff;
	font-size: 14px;
}

.phone-field-d6xoi {
	border-radius: 0 8px 8px 0;
}

.submit-btn-d6xoi {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
	transition: all 0.3s;
}

.submit-btn-d6xoi:hover:not(:disabled) {
	opacity: 0.9;
	transform: translateY(-1px);
}

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

.promo-code-group-d6xoi {
	margin-bottom: 20px;
}

.promo-toggle-d6xoi {
	display: flex;
	align-items: center;
}

.toggle-label-d6xoi {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	color: #ccc;
	font-size: 14px;
}

.promo-checkbox-d6xoi {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.register-footer-d6xoi {
	text-align: center;
	margin-top: 20px;
	color: #ccc;
	font-size: 14px;
}

.login-link-d6xoi a {
	color: #ff6b35;
	text-decoration: none;
}

.login-link-d6xoi a:hover {
	text-decoration: underline;
}

.social-login-d6xoi {
	margin-top: 25px;
}

.divider-d6xoi {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 20px 0;
	color: #888;
	font-size: 14px;
}

.divider-line-d6xoi {
	flex: 1;
	height: 1px;
	background: #2a2f4a;
}

.divider-text-d6xoi {
	white-space: nowrap;
}

.google-btn-d6xoi {
	width: 100%;
	padding: 12px;
	background: #fff;
	border: 1px solid #3a3f5a;
	border-radius: 8px;
	color: #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
}

.google-btn-d6xoi:hover {
	background: #f5f5f5;
}

.terms-d6xoi {
	margin-top: 20px;
	text-align: center;
}

.terms-text-d6xoi {
	font-size: 12px;
	color: #888;
	line-height: 1.6;
}

.terms-link-d6xoi {
	color: #ff6b35;
	text-decoration: none;
}

.terms-link-d6xoi:hover {
	text-decoration: underline;
}

/* Tournaments */
.tournaments-section-d6xoi {
	margin-bottom: 50px;
	width: 100%;
	overflow-x: hidden;
}

.tournaments-header-d6xoi {
	margin-bottom: 25px;
}

.tournaments-title-wrapper-d6xoi {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tournaments-icon-d6xoi {
	width: 32px;
	height: 32px;
}

.tournaments-title-d6xoi {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.tournaments-slider-d6xoi {
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.tournaments-slider-d6xoi::-webkit-scrollbar {
	height: 6px;
}

.tournaments-track-d6xoi {
	display: flex;
	gap: 20px;
	width: max-content;
}

.tournament-card-d6xoi {
	min-width: 320px;
	background: #1a1f3a;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #2a2f4a;
}

.tournament-image-d6xoi {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}

.tournament-banner-d6xoi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tournament-provider-d6xoi {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	padding: 5px 10px;
	border-radius: 4px;
}

.provider-name-d6xoi {
	font-size: 12px;
	color: #fff;
}

.tournament-info-d6xoi {
	padding: 20px;
}

.tournament-countdown-d6xoi {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.countdown-item-d6xoi {
	text-align: center;
	flex: 1;
}

.countdown-number-d6xoi {
	font-size: 24px;
	font-weight: 700;
	color: #ff6b35;
	margin-bottom: 5px;
}

.countdown-label-d6xoi {
	font-size: 11px;
	color: #888;
	text-transform: uppercase;
}

.tournament-type-d6xoi {
	font-size: 12px;
	color: #888;
	margin-bottom: 8px;
}

.tournament-name-d6xoi {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.tournament-prize-label-d6xoi {
	font-size: 12px;
	color: #888;
	margin-bottom: 5px;
}

.tournament-prize-d6xoi {
	font-size: 24px;
	font-weight: 700;
	color: #ff6b35;
	margin-bottom: 20px;
}

.tournament-join-btn-d6xoi {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.tournament-join-btn-d6xoi:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Loyalty Program */
.loyalty-program-section-d6xoi {
	background: linear-gradient(135deg, #1a1f3a, #252a45);
	border-radius: 16px;
	padding: 40px;
	margin: 50px 0;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
}

.loyalty-container-d6xoi {
	max-width: 700px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.loyalty-header-d6xoi {
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.loyalty-main-d6xoi {
	font-size: 18px;
	color: #ccc;
	margin-bottom: 25px;
	line-height: 1.6;
}

.loyalty-btn-d6xoi {
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	color: #fff;
	border: none;
	padding: 14px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 768px) {
	.register-container-d6xoi {
		grid-template-columns: 1fr;
	}
	
	.register-left-d6xoi {
		display: none;
	}
	
	.tournament-card-d6xoi {
		min-width: 280px;
	}
	
	.footer-mobile-logo-d6xoi {
		display: block;
	}
	
	.footer-top-d6xoi {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.social-links-d6xoi {
		justify-content: center;
	}
}

.gift-icon-d6xoi {
	width: 16px;
	height: 16px;
	vertical-align: middle;
}

/* Scrollbar styling */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #1a1f3a;
}

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

::-webkit-scrollbar-thumb:hover {
	background: #4a4f6a;
}

/* Image fixes */
img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* Prevent images from causing overflow */
.ggrid-image-d6xoi,
.tournament-banner-d6xoi,
.slide-images-d6xoi img {
	max-width: 100%;
	height: auto;
}

