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

:root {
	--color-primary: #1e90ff;
	--color-primary-light: #e8f4fd;
	--color-bg: #f5f5f5;
	--color-bg-white: #ffffff;
	--color-text-dark: #2d3748;
	--color-text-gray: #718096;
	--color-text-light: #a0aec0;
	--color-border: #e2e8f0;
	--color-hover: #f7fafc;
	--color-navy: #0a1628;
	--color-navy-light: #1a2744;
	--color-blue-gradient-start: #001f54;
	--color-blue-gradient-end: #034078;
	--sidebar-width: 280px;
	--navbar-height: 60px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, sans-serif;
	background: var(--color-bg);
	color: var(--color-text-dark);
	line-height: 1.5;
}

.top-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--navbar-height);
	background: var(--color-bg-white);
	border-bottom: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-left {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
}

.brand-logo svg {
	height: 32px;
	width: max-content;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.main-nav a {
	color: var(--color-text-gray);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: color 0.2s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.main-nav a:hover {
	color: var(--color-text-dark);
}

.nav-item-icon svg {
	width: 14px;
	height: 14px;
}

.nav-highlight {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white !important;
	padding: 6px 12px;
	border-radius: 6px;
}

.nav-more {
	background: none;
	border: none;
	color: var(--color-text-gray);
	font-size: 18px;
	cursor: pointer;
	padding: 4px 8px;
}

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

.btn-theme {
	background: none;
	border: none;
	color: var(--color-text-gray);
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: background 0.2s;
}

.btn-theme:hover {
	background: var(--color-hover);
}

.btn-login {
	color: var(--color-text-dark);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 6px;
	transition: background 0.2s;
}

.btn-login:hover {
	background: var(--color-hover);
}

.btn-signup {
	background: var(--color-primary);
	color: white;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 6px;
	transition: all 0.2s;
}

.btn-signup:hover {
	background: #1873cc;
	transform: translateY(-1px);
}

.mobile-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--navbar-height);
	background: var(--color-bg-white);
	border-bottom: 1px solid var(--color-border);
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 1000;
}

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

.mobile-menu-toggle span {
	width: 20px;
	height: 2px;
	background: var(--color-text-dark);
	border-radius: 2px;
	transition: all 0.3s;
}

.mobile-logo svg {
	height: 28px;
	width: max-content;
}

.sidebar {
	position: fixed;
	left: 0;
	top: var(--navbar-height);
	width: var(--sidebar-width);
	height: calc(100vh - var(--navbar-height));
	background: var(--color-bg-white);
	border-right: 1px solid var(--color-border);
	overflow-y: auto;
	z-index: 900;
	transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
	width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
	background: var(--color-border);
	border-radius: 3px;
}

.sidebar-section {
	padding: 12px 16px;
	border-bottom: 1px solid var(--color-border);
}

.sidebar-filter {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	background: none;
	border: none;
	color: var(--color-text-dark);
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s;
	margin-bottom: 4px;
}

.sidebar-filter:hover {
	background: var(--color-hover);
}

.sidebar-nav {
	padding: 12px 16px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	color: var(--color-text-dark);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.2s;
	margin-bottom: 4px;
}

.nav-item:hover {
	background: var(--color-hover);
}

.nav-item.active {
	background: var(--color-primary);
	color: white;
}

.nav-item.featured {
	background: var(--color-primary-light);
	color: var(--color-primary);
}

.nav-item svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.overlay {
	display: none;
	position: fixed;
	top: var(--navbar-height);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 850;
}

.main-content {
	margin-left: var(--sidebar-width);
	margin-top: var(--navbar-height);
	min-height: calc(100vh - var(--navbar-height));
	background: var(--color-bg);
}

.hero-section {
	position: relative;
	background: linear-gradient(
		135deg,
		#001845 0%,
		#002855 25%,
		#003d82 50%,
		#0057b8 100%
	);
	overflow: hidden;
}

.hero-carousel {
	position: relative;
	height: 400px;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

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

.slide-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	width: 100%;
	padding: 0 60px;
	gap: 60px;
}

.slide-text {
	flex: 1;
	color: white;
}

.slide-title {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.1;
}

.slide-subtitle {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 32px;
	opacity: 0.95;
}

.btn-play {
	display: inline-block;
	background: white;
	color: var(--color-navy);
	padding: 14px 36px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.2s;
}

.btn-play:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s;
}

.dot.active {
	background: white;
	width: 28px;
	border-radius: 5px;
}

.winners-section {
	padding: 48px 32px;
	max-width: 1400px;
	margin: 0 auto;
}

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

.section-title-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-title-wrap :is(h2, .h2) {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text-dark);
}
a {
	text-decoration: none;
}

.link-show-all {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--color-text-gray);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
}

.link-show-all:hover {
	color: var(--color-text-dark);
}

.link-show-all svg {
	width: 14px;
	height: 14px;
}

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

.winner-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
	cursor: pointer;
	border: 1px solid var(--color-border);
}

.winner-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
	width: 100%;
	aspect-ratio: 2 / 3;
	background: var(--color-bg);
	overflow: hidden;
}

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

.card-info {
	padding: 16px;
}

.game-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.win-amount {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 8px;
}

.player-name {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--color-text-gray);
}

.providers-section {
	padding: 48px 32px;
	max-width: 1400px;
	margin: 0 auto;
}

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

.provider-logo {
	background: white;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	transition: all 0.3s;
	cursor: pointer;
}

.provider-logo:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-color: var(--color-primary);
}

.provider-logo img {
	max-width: 100%;
	height: auto;
	max-height: 60px;
	object-fit: contain;
}

.text-content-section {
	padding: 48px 32px;
	max-width: 1400px;
	margin: 0 auto;
}

.text-content-wrapper {
	background: var(--color-bg-white);
	border-radius: 12px;
	padding: 48px;
	border: 1px solid var(--color-border);
}

.text-content-wrapper h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 20px;
	line-height: 1.3;
}

.text-content-wrapper h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-top: 32px;
	margin-bottom: 16px;
	line-height: 1.4;
}

.text-content-wrapper p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text-gray);
	margin-bottom: 16px;
}

.text-content-wrapper ul {
	list-style: none;
	padding-left: 0;
	margin: 20px 0;
}

.text-content-wrapper ul li {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text-gray);
	padding-left: 28px;
	margin-bottom: 12px;
	position: relative;
}

.text-content-wrapper ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 18px;
}

.text-content-wrapper ol {
	padding-left: 24px;
	margin: 20px 0;
}

.text-content-wrapper ol li {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text-gray);
	margin-bottom: 12px;
}

.text-content-wrapper blockquote {
	border-left: 4px solid var(--color-primary);
	padding: 20px 24px;
	margin: 28px 0;
	background: var(--color-primary-light);
	border-radius: 8px;
	font-style: italic;
	color: var(--color-text-dark);
	font-size: 18px;
	line-height: 1.6;
}

.text-content-wrapper a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 500;
}

.text-content-wrapper a:hover {
	color: var(--color-text-dark);
	text-decoration: underline;
}

.text-content-wrapper strong {
	font-weight: 600;
	color: var(--color-text-dark);
}

.text-content-wrapper em {
	font-style: italic;
}

.text-content-wrapper code {
	background: var(--color-hover);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 14px;
	color: var(--color-text-dark);
}

.text-content-wrapper pre {
	background: var(--color-hover);
	padding: 16px;
	border-radius: 8px;
	overflow-x: auto;
	margin: 20px 0;
}

.text-content-wrapper pre code {
	background: none;
	padding: 0;
}

.text-content-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.text-content-wrapper table th,
.text-content-wrapper table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.text-content-wrapper table th {
	font-weight: 600;
	color: var(--color-text-dark);
	background: var(--color-hover);
}

.text-content-wrapper table td {
	color: var(--color-text-gray);
}

.text-content-wrapper hr {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: 32px 0;
}

@media (max-width: 1024px) {
	.text-content-wrapper table {
		display: block;
		width: 100%;
		overflow-x: auto;
	}
	:root {
		--sidebar-width: 240px;
	}

	.main-nav {
		gap: 16px;
	}

	.main-nav a {
		font-size: 12px;
	}

	.slide-content {
		padding: 0 40px;
	}

	.slide-title {
		font-size: 42px;
	}

	.slide-subtitle {
		font-size: 22px;
	}
}

@media (max-width: 991px) {
	.section-title-wrap :is(h2, .h2) {
		font-size: 1.35rem;
	}
	.section-header {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: start;
		justify-content: start;
		gap: 20px;
	}
	.top-navbar {
		display: none;
	}

	.mobile-header {
		display: flex;
	}

	.sidebar {
		top: var(--navbar-height);
		transform: translateX(-100%);
	}

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

	.overlay.active {
		display: block;
	}

	.main-content {
		margin-left: 0;
	}

	.hero-carousel {
		height: 350px;
	}

	.slide-content {
		flex-direction: column;
		padding: 40px 24px;
		gap: 32px;
		text-align: center;
	}

	.slide-title {
		font-size: 36px;
	}

	.slide-subtitle {
		font-size: 18px;
	}

	.winners-section,
	.providers-section {
		padding: 32px 20px;
	}

	.winners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.providers-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.text-content-section {
		padding: 32px 20px;
	}

	.text-content-wrapper {
		padding: 32px 24px;
	}

	.text-content-wrapper h2 {
		font-size: 26px;
	}

	.text-content-wrapper h3 {
		font-size: 20px;
	}

	.text-content-wrapper p,
	.text-content-wrapper ul li,
	.text-content-wrapper ol li {
		font-size: 15px;
	}

	.text-content-wrapper blockquote {
		font-size: 16px;
		padding: 16px 20px;
	}

	.footer {
		padding: 32px 20px 24px;
	}

	.footer-links {
		grid-template-columns: 1fr !important;
		gap: 32px !important;
		padding: 32px 0 !important;
	}

	.footer-payments {
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

	.payment-icons {
		flex-wrap: wrap;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.slide-title {
		font-size: 28px;
	}

	.slide-subtitle {
		font-size: 16px;
	}

	.btn-play {
		padding: 12px 28px;
		font-size: 14px;
	}

	.winners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.providers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.provider-logo {
		padding: 20px 16px;
		min-height: 80px;
	}

	.payment-icons img {
		height: 24px;
	}

	.payment-badge {
		width: 32px;
		height: 32px;
		font-size: 10px;
	}
}

.footer {
	background: var(--color-bg-white);
	border-top: 1px solid var(--color-border);
	padding: 48px 32px 32px;
	margin-top: 48px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--color-border);
}

.footer-description {
	max-width: 900px;
}

.footer-description p {
	color: var(--color-text-gray);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.btn-show-more {
	background: none;
	border: none;
	color: var(--color-text-dark);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	transition: color 0.2s;
}

.btn-show-more:hover {
	color: var(--color-primary);
}

.footer-links {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	padding: 48px 0;
	border-bottom: 1px solid var(--color-border);
}

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

.footer-heading {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 8px;
}

.footer-link {
	color: var(--color-text-gray);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
	line-height: 1.8;
}

.footer-link:hover {
	color: var(--color-text-dark);
}

.footer-link-icon {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-payments {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 0;
	border-bottom: 1px solid var(--color-border);
}

.payment-icons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.payment-badge {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--color-text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-text-dark);
}

.payment-icons img {
	height: 30px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.payment-icons img:hover {
	opacity: 1;
}

.odds-format {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	color: var(--color-text-gray);
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}

.odds-format:hover {
	border-color: var(--color-text-gray);
	background: var(--color-hover);
}

.footer-legal {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 32px;
}

.footer-copyright {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text-dark);
	margin-bottom: 16px;
}

.footer-legal-text {
	color: var(--color-text-gray);
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 12px;
}

.footer-contact {
	color: var(--color-text-gray);
	font-size: 12px;
	margin-top: 16px;
}

.footer-link-inline {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-link-inline:hover {
	color: var(--color-text-dark);
	text-decoration: underline;
}
.accordion-item {
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	padding: 16px 20px;
	cursor: pointer;
	font-weight: 600;
	color: inherit;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: border-color 0.3s ease;
	background: transparent;
}

.accordion-header:hover {
	background: transparent;
}

.accordion-header.active {
}

.accordion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 12px;
}

.accordion-header.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 2000px;
}

.accordion-body {
	padding: 16px 20px;
	color: inherit;
	line-height: 1.6;
	border-top: 1px solid #d0d0d0;
}
