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

:root {
	--primary-color: #f9a825;
	--secondary-color: #ff6b35;
	--dark-bg: #1a1a2e;
	--darker-bg: #16161f;
	--card-bg: #2a2a3e;
	--text-light: #ffffff;
	--text-gray: #b0b0b0;
	--gradient-1: linear-gradient(135deg, #ff6b35 0%, #f9a825 50%, #ff6b35 100%);
	--gradient-2: linear-gradient(
		135deg,
		#e8505b 0%,
		#f77062 25%,
		#ca82f8 75%,
		#6eb1ff 100%
	);
	--gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	--gradient-hero-1: linear-gradient(
		135deg,
		#ff4e50 0%,
		#fc6076 25%,
		#d946c7 50%,
		#8b5cf6 75%,
		#3b82f6 100%
	);
	--gradient-hero-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-hero-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	background: var(--dark-bg);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	background: var(--darker-bg);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.nav-left,
.nav-right {
	display: flex;
	align-items: center;
	gap: 25px;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-link:hover {
	color: var(--primary-color);
}

.logo {
	flex-shrink: 0;
}

.logo img {
	height: 50px;
	display: block;
}

.btn-login {
	color: var(--text-light);
	text-decoration: none;
	padding: 8px 20px;
	border: 2px solid var(--text-light);
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-login:hover {
	background: var(--text-light);
	color: var(--dark-bg);
}

.btn-register {
	background: #4caf50;
	color: var(--text-light);
	text-decoration: none;
	padding: 10px 25px;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-register:hover {
	background: #45a049;
	transform: translateY(-2px);
}

.lang {
	color: var(--text-gray);
	font-weight: 600;
}

/* Added burger menu styles */
.burger-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	z-index: 101;
}

.burger-menu span {
	width: 25px;
	height: 3px;
	background: var(--text-light);
	border-radius: 2px;
	transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Added mobile menu overlay styles */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--darker-bg);
	z-index: 999;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 40px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
}

.mobile-menu-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-menu-link {
	color: var(--text-light);
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 20px;
	border-radius: 8px;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
	background: var(--card-bg);
	border-left-color: var(--primary-color);
	padding-left: 25px;
}

.mobile-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-actions .btn-login,
.mobile-menu-actions .btn-register {
	text-align: center;
	display: block;
}

.mobile-menu-lang {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider {
	position: relative;
	overflow: hidden;
}

.slider-container {
	position: relative;
	height: 600px;
	background: linear-gradient(135deg, var(--card-bg) 0%, #3a3a4e 100%);
	overflow: hidden;
}

/* Simplified slide styles - now slides are clickable links with background images */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 600px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease, visibility 0.7s ease;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	will-change: opacity;
}

.slide.active {
	opacity: 1;
	visibility: visible;
}

.wave {
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 20px;
	background: url('img/wave.svg') 0 0 repeat-x;
	background-size: 19px 7px;
	left: 0;
	bottom: 0;
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slide-bg-1 {
	background: var(--gradient-hero-1);
}

.slide-bg-2 {
	background: var(--gradient-hero-2);
}

.slide-bg-3 {
	background: var(--gradient-hero-3);
}

.slide .container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide-content {
	text-align: center;
	position: relative;
	z-index: 3;
}

.slide-label {
	font-size: 28px;
	font-weight: 300;
	letter-spacing: 8px;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: 0.9;
}

.slide-title {
	font-size: 120px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 30px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-title.small {
	font-size: 60px;
	margin-bottom: 20px;
}

.slide-prize {
	margin-bottom: 15px;
}

.prize-amount {
	font-size: 100px;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prize-currency {
	font-size: 50px;
	font-weight: 900;
}

.prize-text {
	font-size: 32px;
	font-weight: 600;
}

.slide-subtitle {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 6px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.jackpot-icon {
	font-size: 80px;
	margin-bottom: 20px;
}

.jackpot-amount {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 30px 0;
}

.treasure-icon {
	font-size: 60px;
}

.amount {
	font-size: 80px;
	font-weight: 900;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
	display: inline-block;
	background: var(--gradient-1);
	color: var(--text-light);
	text-decoration: none;
	padding: 18px 50px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.slide-decorations {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.decoration {
	position: absolute;
	animation: float 3s ease-in-out infinite;
}

.decoration-card {
	width: 150px;
	height: 200px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	top: 20%;
	left: 10%;
	transform: rotate(-15deg);
}

.decoration-coin {
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, #ffd700, #ffed4e);
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.coin-1 {
	top: 15%;
	right: 15%;
	animation-delay: 0.5s;
}

.coin-2 {
	top: 60%;
	right: 20%;
	animation-delay: 1s;
}

.coin-3 {
	bottom: 20%;
	left: 15%;
	animation-delay: 1.5s;
}

.decoration-snow {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	top: 30%;
	right: 10%;
	filter: blur(20px);
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

/* Added jackpot section styles */
.jackpot-section {
	background: #f5f5f5;
	padding: 60px 0;
	position: relative;
}

.jackpot-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: url("data:image/svg+xml,%3Csvg width='19' height='7' viewBox='0 0 19 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.5C2.375 3.5 2.375 0 4.75 0S7.125 3.5 9.5 3.5 11.875 0 14.25 0s2.375 3.5 4.75 3.5V7H0V3.5z' fill='%231a1a2e' fill-rule='evenodd'/%3E%3C/svg%3E")
		0 0 repeat-x;
	background-size: 19px 7px;
}

.jackpot-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.jackpot-title {
	font-size: 42px;
	font-weight: 900;
	color: #1a1a2e;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.jackpot-wave-top,
.jackpot-wave-bottom {
	width: 100%;
	max-width: 1000px;
	height: 3px;
	margin: 0 auto 20px;
	background: url("data:image/svg+xml,%3Csvg width='19' height='7' viewBox='0 0 19 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3.5C2.375 3.5 2.375 0 4.75 0S7.125 3.5 9.5 3.5 11.875 0 14.25 0s2.375 3.5 4.75 3.5V7H0V3.5z' fill='%23f9a825' fill-rule='evenodd'/%3E%3C/svg%3E")
		0 0 repeat-x;
	background-size: 19px 7px;
}

.jackpot-wave-bottom {
	margin: 20px auto 30px;
}

.jackpot-display {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 40px 0;
}

.jackpot-treasure {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

.jackpot-value {
	font-size: 72px;
	font-weight: 900;
	color: #f9a825;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	letter-spacing: 3px;
	font-family: Arial, sans-serif;
}

.btn-jackpot {
	display: inline-block;
	background: linear-gradient(135deg, #f9a825 0%, #ff9800 100%);
	color: #fff;
	text-decoration: none;
	padding: 18px 40px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 8px 20px rgba(249, 168, 37, 0.4);
	transition: all 0.3s;
	margin-bottom: 40px;
}

.btn-jackpot:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(249, 168, 37, 0.5);
	background: linear-gradient(135deg, #ff9800 0%, #f9a825 100%);
}

.jackpot-text {
	height: 450px;
	overflow-y: scroll;
	text-align: left;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	scrollbar-width: none;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
}

.jackpot-text::-webkit-scrollbar {
	display: none;
}

/* Основной текст */
.jackpot-text p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
	word-break: break-word;
}

/* Первый абзац - немного выделен */
.jackpot-text p:first-of-type {
	font-size: 17px;
	color: #1a1a2e;
	font-weight: 500;
	margin-bottom: 20px;
}

/* Заголовок уровня 3 (основной) */
.jackpot-text h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 15px;
	margin-top: 0;
	line-height: 1.3;
	letter-spacing: -0.5px;
}

/* Заголовок уровня 4 (подзаголовок) */
.jackpot-text h4 {
	font-size: 18px;
	font-weight: 700;
	color: #ff6b35;
	margin: 20px 0 10px;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

/* Заголовок уровня 5 (категория) */
.jackpot-text h5 {
	font-size: 15px;
	font-weight: 600;
	color: #555;
	margin: 15px 0 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Сильный текст (жирный) */
.jackpot-text strong,
.jackpot-text b {
	font-weight: 700;
	color: #1a1a2e;
}

/* Выделенный текст */
.jackpot-text em,
.jackpot-text i {
	font-style: italic;
	color: #ff6b35;
}

/* Списки */
.jackpot-text ul,
.jackpot-text ol {
	margin: 15px 0;
	padding-left: 30px;
	color: #333;
}

.jackpot-text li {
	margin-bottom: 8px;
	line-height: 1.6;
	color: #333;
}

.jackpot-text ul li {
	list-style-type: disc;
}

.jackpot-text ul li:before {
	content: '◆';
	color: #ff6b35;
	font-weight: bold;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.jackpot-text ol li {
	list-style-type: decimal;
	color: #333;
}

/* Код и моноширинный текст */
.jackpot-text code,
.jackpot-text pre {
	background: #f5f5f5;
	color: #d63384;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 14px;
}

.jackpot-text pre {
	padding: 10px;
	overflow-x: auto;
	margin: 10px 0;
}

/* Цитаты */
.jackpot-text blockquote {
	border-left: 4px solid #ff6b35;
	padding-left: 15px;
	margin: 15px 0;
	color: #666;
	font-style: italic;
	background: #f9f9f9;
	padding: 10px 15px;
	border-radius: 4px;
}

/* Ссылки */
.jackpot-text a {
	color: #ff6b35;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.jackpot-text a:hover {
	color: #ff4e1f;
	border-bottom: 2px solid #ff6b35;
}

.jackpot-text a:active {
	color: #e55100;
}

/* Горизонтальная линия */
.jackpot-text hr {
	border: none;
	border-top: 2px solid #f0f0f0;
	margin: 20px 0;
}

/* Маленький текст */
.jackpot-text small {
	font-size: 14px;
	color: #999;
	display: block;
	margin-top: 10px;
}

/* Подчеркивание */
.jackpot-text u {
	text-decoration: underline;
	text-decoration-color: #ff6b35;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

/* Deleted текст (зачеркивание) */
.jackpot-text del,
.jackpot-text s {
	text-decoration: line-through;
	color: #999;
}

/* Mark - выделение */
.jackpot-text mark {
	background: #fff3cd;
	padding: 2px 4px;
	border-radius: 3px;
	color: inherit;
}

/* Inline элементы для emphasis */
.jackpot-text .highlight {
	background: linear-gradient(
		135deg,
		rgba(255, 107, 53, 0.1) 0%,
		rgba(249, 168, 37, 0.1) 100%
	);
	padding: 2px 4px;
	border-radius: 3px;
	font-weight: 600;
	color: #ff6b35;
}

/* Категория/Тег */
.jackpot-text .tag {
	display: inline-block;
	background: #f0f0f0;
	color: #1a1a2e;
	padding: 4px 10px;
	border-radius: 15px;
	font-size: 13px;
	font-weight: 600;
	margin-right: 5px;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.jackpot-text .tag:hover {
	background: #ff6b35;
	color: #fff;
}

/* Важное сообщение (note) */
.jackpot-text .note {
	background: #e8f4f8;
	border-left: 4px solid #0096d6;
	padding: 12px;
	border-radius: 4px;
	margin: 15px 0;
	font-size: 15px;
	color: #333;
}

/* Предупреждение (warning) */
.jackpot-text .warning {
	background: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 12px;
	border-radius: 4px;
	margin: 15px 0;
	font-size: 15px;
	color: #856404;
	font-weight: 600;
}

/* Успех (success) */
.jackpot-text .success {
	background: #d4edda;
	border-left: 4px solid #28a745;
	padding: 12px;
	border-radius: 4px;
	margin: 15px 0;
	font-size: 15px;
	color: #155724;
	font-weight: 600;
}

/* Ошибка (error) */
.jackpot-text .error {
	background: #f8d7da;
	border-left: 4px solid #dc3545;
	padding: 12px;
	border-radius: 4px;
	margin: 15px 0;
	font-size: 15px;
	color: #721c24;
	font-weight: 600;
}

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

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

.dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.dot.active {
	background: var(--text-light);
	width: 40px;
	border-radius: 6px;
}

.slider-arrows {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	z-index: 10;
	pointer-events: none;
}

.arrow {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	cursor: pointer;
	transition: all 0.3s;
	pointer-events: all;
	user-select: none;
}

.arrow:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.wave-divider {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}

.wave-divider svg {
	display: block;
	width: 100%;
	height: 40px;
}

.games-filter {
	background: var(--darker-bg);
	padding: 20px 0;
	position: sticky;
	top: 80px;
	z-index: 90;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.filter-tabs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-top: 10px;
	padding-bottom: 10px;
}

.filter-tabs::-webkit-scrollbar {
	display: none;
}

.filter-tab {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 25px;
	background: var(--card-bg);
	color: var(--text-light);
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s;
}

.filter-tab:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
}

.filter-tab.active {
	background: var(--gradient-1);
}

.tab-icon {
	font-size: 20px;
}

.slots {
	padding: 60px 0;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: 20px;
}

.slot-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s;
	background: var(--card-bg);
}

.slot-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.slot-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.slot-jackpot {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--gradient-1);
	color: var(--text-light);
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 700;
	font-size: 14px;
	z-index: 2;
}

.slot-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ff4444;
	color: var(--text-light);
	padding: 6px 15px;
	border-radius: 5px;
	font-weight: 700;
	font-size: 12px;
	z-index: 2;
}

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

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

.slot-play {
	background: var(--gradient-1);
	color: var(--text-light);
	text-decoration: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.slot-play:hover {
	transform: scale(1.1);
}

.providers {
	background: var(--darker-bg);
	padding: 40px 0;
}

.providers-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.provider-item {
	opacity: 0.7;
	transition: opacity 0.3s, transform 0.3s;
}

.provider-item:hover {
	opacity: 1;
}

.provider-item img {
	height: 30px;
	width: auto;
	max-width: 100px;
	object-fit: contain;
	display: block;
	filter: grayscale(100%) brightness(1.5);
	transition: filter 0.3s;
}

.provider-item:hover img {
	filter: grayscale(0%) brightness(1);
}

.footer {
	background: var(--darker-bg);
	padding: 60px 0 30px;
	margin-top: 60px;
}

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

.footer-col a {
	display: block;
	color: var(--text-gray);
	text-decoration: none;
	margin-bottom: 10px;
	transition: color 0.3s;
}

.footer-col a:hover {
	color: var(--primary-color);
}

.footer-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.footer-col p {
	color: var(--text-gray);
	line-height: 1.8;
}

.footer-disclaimer {
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-bottom: 30px;
}

.footer-disclaimer p {
	color: var(--text-gray);
	font-size: 14px;
	text-align: center;
	line-height: 1.8;
}

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

.footer-bottom p {
	color: var(--text-gray);
	font-size: 14px;
}

.jackpot-text {
	padding: 15px;
}

.jackpot-text h2 {
	font-size: 20px;
	margin: 18px 0 12px;
	color: var(--primary-color);
	font-weight: 700;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.jackpot-text h3 {
	font-size: 18px;
	margin-bottom: 12px;
	color: #1a1a2e;
	font-weight: 700;
}

.jackpot-text h4 {
	font-size: 16px;
	margin: 15px 0 8px;
	font-weight: 700;
	color: #ff6b35;
}

.jackpot-text h5 {
	font-size: 14px;
	margin: 10px 0 6px;
	font-weight: 600;
	color: #555;
}

.jackpot-text p {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 12px;
	color: #333;
}

.jackpot-text p:first-of-type {
	font-size: 16px;
	color: #1a1a2e;
	font-weight: 500;
}

.jackpot-text ul,
.jackpot-text ol {
	margin: 12px 0;
	padding-left: 25px;
	color: #333;
}

.jackpot-text li {
	margin-bottom: 6px;
	font-size: 15px;
	color: #333;
}

.jackpot-text table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
	background: #f9f9f9;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: block;
	overflow-x: auto;
}

.jackpot-text table thead {
	background: var(--gradient-1);
}

.jackpot-text table th {
	padding: 12px 15px;
	text-align: left;
	font-weight: 700;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 13px;
}

.jackpot-text table td {
	padding: 10px 15px;
	border: 1px solid #e0e0e0;
	font-size: 14px;
	color: #333;
}

.jackpot-text table tbody tr {
	transition: all 0.3s ease;
}

.jackpot-text table tbody tr:hover {
	background: #f0f0f0;
	box-shadow: inset 0 0 10px rgba(249, 168, 37, 0.1);
}

.jackpot-text table tbody tr:nth-child(even) {
	background: #f5f5f5;
}

.jackpot-text code,
.jackpot-text pre {
	font-size: 13px;
	background: #f5f5f5;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
	color: #d63384;
}

.jackpot-text blockquote {
	margin: 12px 0;
	padding: 12px 15px;
	font-size: 14px;
	border-left: 4px solid var(--primary-color);
	background: #f9f9f9;
	border-radius: 4px;
	font-style: italic;
	color: #666;
}

.jackpot-text .tag {
	font-size: 12px;
	padding: 4px 10px;
	background: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: inline-block;
	margin-right: 5px;
	color: #1a1a2e;
}

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

	.prize-amount {
		font-size: 70px;
	}

	.amount {
		font-size: 60px;
	}

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

	.jackpot-value {
		font-size: 60px;
	}
}

@media (max-width: 991px) {
	.burger-menu {
		display: flex;
	}

	.nav-left,
	.nav-right {
		display: none;
	}

	.nav {
		justify-content: space-between;
	}

	.logo img {
		height: 40px;
	}

	.slider-container {
		height: 400px;
	}

	.slide {
		height: 400px;
	}

	.slider-dots {
		bottom: 20px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}

	.dot.active {
		width: 30px;
	}

	.slide-label {
		font-size: 18px;
		letter-spacing: 4px;
	}

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

	.slide-title.small {
		font-size: 40px;
	}

	.prize-amount {
		font-size: 50px;
	}

	.prize-currency {
		font-size: 30px;
	}

	.amount {
		font-size: 40px;
	}

	.treasure-icon {
		font-size: 40px;
	}

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

	.btn-primary {
		padding: 14px 35px;
		font-size: 14px;
	}

	.decoration {
		display: none;
	}

	.arrow {
		width: 40px;
		height: 40px;
		font-size: 30px;
	}

	.slot-card img {
		height: 150px;
	}

	.games-filter {
		top: 70px;
	}

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

	.jackpot-display {
		flex-direction: column;
		gap: 10px;
	}

	.jackpot-treasure {
		width: 60px;
		height: 60px;
	}

	.jackpot-value {
		font-size: 48px;
	}

	.btn-jackpot {
		padding: 14px 30px;
		font-size: 16px;
	}

	.jackpot-text {
		padding: 15px;
	}

	.jackpot-text h2 {
		font-size: 18px;
		margin: 12px 0 10px;
		padding-bottom: 6px;
	}

	.jackpot-text h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.jackpot-text h4 {
		font-size: 16px;
		margin: 15px 0 8px;
	}

	.jackpot-text h5 {
		font-size: 14px;
		margin: 10px 0 6px;
		letter-spacing: 0.5px;
	}

	.jackpot-text p {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.jackpot-text p:first-of-type {
		font-size: 16px;
	}

	.jackpot-text ul,
	.jackpot-text ol {
		margin: 12px 0;
		padding-left: 25px;
	}

	.jackpot-text li {
		margin-bottom: 6px;
		font-size: 15px;
	}

	.jackpot-text table {
		font-size: 13px;
		margin: 12px 0;
	}

	.jackpot-text table th,
	.jackpot-text table td {
		padding: 8px 10px;
	}

	.jackpot-text code,
	.jackpot-text pre {
		font-size: 12px;
	}

	.jackpot-text pre {
		padding: 8px;
		margin: 8px 0;
	}

	.jackpot-text blockquote {
		margin: 10px 0;
		padding: 6px 10px;
		font-size: 13px;
		border-left-width: 3px;
	}

	.jackpot-text .highlight {
		padding: 1px 3px;
	}

	.jackpot-text .tag {
		font-size: 11px;
		padding: 2px 6px;
		margin-bottom: 4px;
	}

	.jackpot-text .note,
	.jackpot-text .warning,
	.jackpot-text .success,
	.jackpot-text .error {
		padding: 8px;
		margin: 10px 0;
		font-size: 13px;
		border-left-width: 3px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.slider-container {
		height: 450px;
	}

	.slide {
		height: 450px;
	}

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

	.prize-amount {
		font-size: 40px;
	}

	.amount {
		font-size: 32px;
	}

	.jackpot-amount {
		flex-direction: column;
		gap: 5px;
	}

	.slider-arrows {
		padding: 0 10px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.jackpot-title {
		font-size: 22px;
	}

	.jackpot-value {
		font-size: 32px;
	}

	.btn-jackpot {
		padding: 12px 24px;
		font-size: 14px;
	}

	.jackpot-text {
		padding: 12px;
	}

	.jackpot-text h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.jackpot-text h4 {
		font-size: 14px;
		margin: 12px 0 6px;
	}

	.jackpot-text h5 {
		font-size: 12px;
		margin: 8px 0 4px;
		letter-spacing: 0.5px;
	}

	.jackpot-text p {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.jackpot-text p:first-of-type {
		font-size: 15px;
	}

	.jackpot-text ul,
	.jackpot-text ol {
		margin: 10px 0;
		padding-left: 20px;
	}

	.jackpot-text li {
		margin-bottom: 4px;
		font-size: 14px;
	}

	.jackpot-text code,
	.jackpot-text pre {
		font-size: 12px;
	}

	.jackpot-text pre {
		padding: 8px;
		margin: 8px 0;
	}

	.jackpot-text blockquote {
		margin: 10px 0;
		padding: 6px 10px;
		font-size: 13px;
		border-left-width: 3px;
	}

	.jackpot-text .highlight {
		padding: 1px 3px;
	}

	.jackpot-text .tag {
		font-size: 11px;
		padding: 2px 6px;
		margin-bottom: 4px;
	}

	.jackpot-text .note,
	.jackpot-text .warning,
	.jackpot-text .success,
	.jackpot-text .error {
		padding: 8px;
		margin: 10px 0;
		font-size: 13px;
		border-left-width: 3px;
	}
}
