:root {
	--primary-bg: #0a1f2e;
	--secondary-bg: #0d2838;
	--accent-teal: #1a4d5c;
	--accent-cyan: #2dd4bf;
	--accent-orange: #ff9500;
	--accent-gold: #fbbf24;
	--text-primary: #ffffff;
	--text-secondary: #94a3b8;
	--text-accent: #2dd4bf;
	--border-color: #1e3a4a;
	--overlay-bg: rgba(10, 31, 46, 0.95);
	--sidebar-width: 260px;
	--sidebar-collapsed-width: 70px;
}

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

::-webkit-scrollbar-thumb {
	background: #2dd4bf;
	border-radius:5px;
}

::-webkit-scrollbar-track {
	background: #0d2838;
	background: transparent;
}

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

body {
	font-family: Arial, sans-serif;
	background-color: var(--primary-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

h2 {
	color: var(--text-accent);
	font-size: 28px;
	margin: 0px 0px 15px 0px;
}

h3 {
	color: var(--text-accent);
	font-size: 22px;
	margin: 0px 0px 15px 0px;
}

p {
	margin-bottom: 20px;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background-color: var(--primary-bg);
	border-radius: 8px;
	overflow: hidden;
}

table thead {
	background-color: var(--accent-teal);
}

table th {
	padding: 15px;
	text-align: left;
	font-weight: bold;
	color: var(--text-accent);
}

table td {
	padding: 15px;
	border-top: 1px solid var(--border-color);
}

table tbody tr:hover {
	background-color: var(--secondary-bg);
}

blockquote {
	background: linear-gradient(135deg, var(--accent-teal), var(--primary-bg));
	border-left: 4px solid var(--accent-cyan);
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 8px;
}

blockquote p {
	font-style: italic;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 10px;
}

blockquote cite {
	color: var(--text-accent);
	font-size: 14px;
	font-style: normal;
}

.icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex-shrink: 0;
}

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

.header-search .icon {
	width: 18px;
	height: 18px;
	color: var(--text-secondary);
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: var(--primary-bg);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	padding: 0px 20px;
	gap: 10px;
	z-index: 1000;
}

.sidebar-toggle-btn {
	width: 40px;
	height: 40px;
	background-color: var(--accent-teal);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-accent);
	font-size: 20px;
	transition: all 0.3s;
	vertical-align: top;
}

.sidebar-toggle-btn:hover {
	background-color: var(--accent-cyan);
	color: var(--primary-bg);
}

.logo img {
	height: 40px;
}

.header-search {
	flex: 1;
	max-width: 500px;
	margin-left: auto;
	display: flex;
	align-items: center;
	background-color: var(--secondary-bg);
	border-radius: 8px;
	padding: 0 15px;
	gap: 10px;
}

.header-search input {
	flex: 1;
	background: none;
	border: none;
	color: var(--text-primary);
	padding: 12px 0;
	font-size: 14px;
	outline: none;
}

.header-search input::placeholder {
	color: var(--text-secondary);
}

.header-actions {
	display: flex;
	gap: 10px;
}

.btn-login,
.btn-register {
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s;
}

.sidebar {
	position: fixed;
	top: 60px;
	left: 0;
	bottom: 0;
	width: var(--sidebar-width);
	background-color: var(--secondary-bg);
	border-right: 1px solid var(--border-color);
	overflow: hidden;
	z-index: 999;
	transition: width 0.3s ease;
}

.sidebar.collapsed {
	width: var(--sidebar-collapsed-width);
}

.sidebar.collapsed .sidebar-text {
	opacity: 0;
	width: 0;
	overflow: hidden;
}

.sidebar.collapsed .promo-header {
	display: none;
}

.sidebar.collapsed .promo-header span,
.sidebar.collapsed .promo-game span {
	display: none;
}

.sidebar.collapsed .promo-games {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.sidebar.collapsed .promo-game {
	padding: 2.5px;
	width: 30px;
	height: 30px;
}

.sidebar.collapsed .promo-game img {
	width: auto;
	height: auto;
	margin: 0;
}

.sidebar.collapsed .badge-new {
	display: none;
}

.sidebar.collapsed .sidebar-promo {
	padding: 10px;
}

.sidebar-content {
	padding: 20px 0px;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

.sidebar-promo {
	margin: 0 15px 20px;
	background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
	border-radius: 12px;
	padding: 15px;
}

.promo-header {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-accent);
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 12px;
}

.promo-games {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.promo-game {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	padding: 10px;
	text-align: center;
}

.promo-game img {
	width: 60px;
	height: 60px;
	margin: 0 auto 8px;
	border-radius: 50%;
}

.promo-game span {
	font-size: 10px;
	font-weight: bold;
	display: block;
}

.sidebar-nav {
	margin-bottom: 20px;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: var(--text-primary);
	font-weight: bold;
	font-size: 13px;
	transition: background-color 0.3s;
	position: relative;
	white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
	background-color: var(--accent-teal);
	color: var(--text-accent);
}

.nav-item .badge-new {
	margin-left: auto;
	background-color: var(--accent-orange);
	color: white;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 10px;
}

.sidebar-footer {
	border-top: 1px solid var(--border-color);
	padding-top: 15px;
}

.main-content {
	margin-left: var(--sidebar-width);
	margin-top: 60px;
	padding: 30px;
	min-height: calc(100vh - 60px);
	transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .main-content {
	margin-left: var(--sidebar-collapsed-width);
}

.hero-slider {
	position: relative;
	height: 400px;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 40px;
}

.slider-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s;
}

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

.slide-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 90px;
	transform: translateY(-50%);
	max-width: 600px;
	text-shadow: -1px -1px 2px black, 1px -1px 2px black, 1px 1px 2px black, -1px 1px 2px black;
}

.slide-subtitle {
	color: var(--text-accent);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.slide-title {
	font-size: 48px;
	font-weight: bold;
	color: var(--accent-gold);
	margin-bottom: 30px;
	line-height: 1.2;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	z-index: 10;
	transition: background-color 0.3s;
}

.slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.slider-prev {
	left: 20px;
}

.slider-next {
	right: 20px;
}

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

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.slider-dot.active {
	background-color: var(--accent-cyan);
}

.btn-gold {
	background: linear-gradient(135deg, var(--accent-gold), #d97706);
	color: var(--primary-bg);
	padding: 15px 40px;
	border-radius: 12px;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
	text-shadow: none;
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5);
}

.btn-primary {
	background-color: var(--accent-teal);
	color: var(--text-accent);
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	transition: color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
	border: 0px;
}

.btn-primary:hover {
	color: var(--primary-bg);
	transform: translateY(-2px);
	background: linear-gradient( 180deg, #ffe600 0%, #ffb800 100% );
	box-shadow: 0 2px #fff2a6 inset, 0 2px 0 0 #b64100;
}

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

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

.section-title {
	font-size: 24px;
	font-weight: bold;
	color: var(--text-accent);
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0px;
}

.see-all {
	color: var(--accent-orange);
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.3s;
}

.see-all:hover {
	color: var(--accent-gold);
}

.game-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 10px 0px 0px 0px;
}

.game-card {
	flex: 0 0 200px;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--secondary-bg);
	position: relative;
	cursor: pointer;
	transition: transform 0.3s;
}

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

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

.game-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: bold;
}

.demo-badge {
	background-color: var(--accent-cyan);
	color: var(--primary-bg);
	display: flex;
	align-items: center;
	gap: 5px;
}

.new-badge {
	background-color: var(--accent-orange);
	color: white;
}

.exclusive-badge {
	background: linear-gradient(135deg, #d946ef, #9333ea);
	color: white;
}

.game-info {
	padding: 15px;
}

.game-info > .heading {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	color: white;
}

.game-slider-wrapper {
	position: relative;
}

.game-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: white;
	z-index: 10;
	transition: background-color 0.3s;
}

.game-slider-arrow:hover {
	background-color: var(--accent-teal);
}

.game-slider-prev {
	left: -20px;
}

.game-slider-next {
	right: -20px;
}

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

.category-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	height: 280px;
	transition: transform 0.3s;
}

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

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

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--text-accent);
	text-shadow: -1px -1px 2px black, 1px -1px 2px black, 1px 1px 2px black, -1px 1px 2px black;
}

.category-overlay > .heading {
	font-size: 18px;
	font-weight: bold;
}

.promo-card-section {
	margin-bottom: 50px;
}

.promo-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 250px;
}

.promo-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-card-content {
	position: absolute;
	top: 50%;
	left: 50px;
	right: 50px;
	transform: translateY(-50%);
	max-width: 600px;
}

.promo-card-content > .heading {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
	color: white;
}

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

.jackpot-card {
	position: relative;
	flex: 0 0 330px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	height: 250px;
	transition: transform 0.3s;
}

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

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

.jackpot-card > .heading {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	font-size: 16px;
	font-weight: bold;
	color: var(--accent-gold);
	text-align: center;
	text-shadow: 0px 0px 5px black;
}

.sport-card {
	flex: 0 0 200px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	height: 280px;
	transition: transform 0.3s;
}

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

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

.sport-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.sport-info > .heading {
	font-size: 14px;
	font-weight: bold;
	color: white;
}

.spin-rally-section {
	background: linear-gradient(135deg, var(--secondary-bg), var(--accent-teal));
	padding: 30px;
	border-radius: 16px;
}

.spin-rally-title {
	color: var(--accent-cyan);
}

.spin-rally-subtitle {
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 20px;
}

.spin-rally-subtitle span {
	font-weight: bold;
	color: #00ffbf;
}

.spin-rally-slider {
	display: flex;
	gap: 20px;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

.rally-card {
	flex: 0 0 280px;
	background-color: var(--primary-bg);
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.3s;
}

.rally-card:hover,
.rally-card.active {
	border-color: var(--accent-gold);
}

.rally-info {
	padding: 15px;
}

.rally-info > .heading {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	color: white;
}

.rally-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
}

.rally-detail {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}

.rally-detail .label {
	color: var(--text-secondary);
}

.rally-detail .value {
	color: var(--text-primary);
	font-weight: bold;
}

.btn-rally {
	width: 100%;
	background: linear-gradient(135deg, var(--accent-gold), #d97706);
	color: var(--primary-bg);
	padding: 12px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.btn-rally:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.text-section {
	max-width: 1200px;
	margin: 50px auto;
	padding: 40px;
	background-color: var(--secondary-bg);
	border-radius: 16px;
}

.text-content {
	color: var(--text-primary);
	line-height: 1.8;
}

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

.pros h4,
.cons h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	margin-bottom: 15px;
}

.pros h4 {
	color: #10b981;
}

.cons h4 {
	color: #ef4444;
}

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

.pros li,
.cons li {
	padding: 8px 0px 8px 30px;
	position: relative;
}

.pros li:before, .cons li:before {
	position: absolute;
	left: 0;
	color: #ef4444;
	font-weight: bold;
	border-radius: 50%;
	background: #0a1f2e;
	padding: 5px;
	box-sizing: border-box;
	vertical-align: top;
	line-height: 15px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pros li:before {
	content: "✓";
	color: #10b981;
}

.cons li:before {
	content: "✕";
	color: #ef4444;
}

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

.faq-title {
	color: var(--text-accent);
	font-size: 28px;
	margin-bottom: 30px;
	text-align: center;
}

.faq-item {
	background-color: var(--primary-bg);
	border-radius: 8px;
	margin-top: 15px;
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	color: var(--text-primary);
	transition: color 0.3s;
	margin: 0px;
	position: relative;
}

.faq-question:before {
	content:"";
	position: absolute;
	width: 8px;
	height: 8px;
	display: block;
	top: 50%;
	right: 25px;
	margin: -8px 0px 0px 0px;
	border-bottom: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.3s;
}

.faq-question:hover {
	color: var(--text-accent);
}

.faq-item.active > .faq-question:before {
	transform: rotate(225deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
	padding: 0px 20px;
}

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

.faq-answer p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0px;
}

.footer {
	background-color: var(--secondary-bg);
	border-top: 1px solid var(--border-color);
	padding: 50px 30px 20px;
	margin: 0px 0px 0px var(--sidebar-width);
	transition: margin 0.3s ease;
}

.sidebar.collapsed ~ .footer {margin: 0px 0px 0px var(--sidebar-collapsed-width);}

.footer-top {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 40px;
}

.footer-btn {
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s;
}

.footer-btn-primary {
	background-color: var(--accent-teal);
	color: var(--text-accent);
}

.footer-btn-primary:hover {
	background-color: var(--accent-cyan);
	color: var(--primary-bg);
}

.footer-btn-secondary {
	background-color: var(--accent-orange);
	color: white;
}

.footer-btn-secondary:hover {
	background-color: var(--accent-gold);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column > .heading {
	color: var(--accent-gold);
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

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

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

.footer-column a {
	color: var(--text-secondary);
	font-size: 14px;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: var(--text-accent);
}

.footer-payments {
	margin-bottom: 40px;
}

.footer-payments > .heading {
	color: var(--text-accent);
	font-size: 16px;
	margin-bottom: 20px;
	text-align: center;
}

.payment-icons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.payment-icon {
	width: 60px;
	height: 40px;
	background-color: white;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.payment-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.footer-partners {
	margin-bottom: 30px;
	text-align: center;
}

.footer-partners p {
	color: var(--text-secondary);
	font-size: 12px;
	line-height: 1.6;
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.age-badge {
	width: 50px;
	height: 50px;
	border: 3px solid var(--text-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	color: var(--text-accent);
}

.footer-disclaimer {
	color: var(--text-secondary);
	font-size: 11px;
	text-align: center;
	max-width: 800px;
}

.footer-copyright {
	color: var(--text-secondary);
	font-size: 12px;
	text-align: center;
}

.icon-arrow-left:before {
	content: "‹";
}

.icon-arrow-right:before {
	content: "›";
}

.tbl-wrap,
.table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
	.tbl-wrap > table {
		width: 200vw;
	}

	.sidebar, .sidebar.collapsed {
		transform: translateX(0);
		width: 380px;
		transition: transform 0.3s ease;
	}

	.hero-slider {
		height: 250px;
	}

	.sidebar.collapsed {
		transform: translateX(-100%);
	}

	.sidebar-overlay {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 998;
	}

	.sidebar-overlay.active {
		display: block;
	}

	.see-all {
		display: none;
	}

	.sidebar.collapsed ~ .main-content, .main-content {
		margin-left: 0;
		padding: 15px;
		overflow: hidden;
	}

	.header-search {
		display: none;
	}

	.slide-content {
		left: 40px;
		max-width: calc(100% - 80px);
	}

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

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

	.category-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.spin-rally-slider {
		overflow-x: auto;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

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

	.jackpot-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		overflow: auto;
	}

	.footer, .sidebar.collapsed ~ .footer {
		margin:0px;
	}

	.promo-card-content {
		left: 15px;
		right: 15px;
	}

	.game-slider {
		
	}

	.text-section {
		padding: 20px;
	}

	.header > .logo {
		flex:1;
		display: flex;
		align-content: center;
		justify-content: center;
	}

	.header-actions .btn-primary {
		padding: 10px;
		vertical-align: top;
	}

	.spin-rally-section {
		padding: 20px;
	}

	.slider-prev {
		left: 5px;
		width: 30px;
		height: 30px;
	}

	.slider-next {
		right: 5px;
		width: 30px;
		height: 30px;
	}
}
