* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(
		135deg,
		#1a1a2e 0%,
		#16213e 25%,
		#0f3460 50%,
		#533483 75%,
		#7209b7 100%
	);
	background-attachment: fixed;
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

img {
	max-width: 100%;
}

/* Header Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	padding: 15px 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
	max-width: 1320px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
	gap: 10px;
}

.logo img {
	height: 50px;
	width: auto;
}

.nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-list-mobile {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	text-align: center;
	display: none;
	transition: all 0.2s ease;
}

.nav-list-mobile li {
	list-style: none;
	text-align: center;
}

.nav-list li {
  text-align: center;
}

.nav-list a,
.nav-list-mobile a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	font-size: 16px;
}

.nav-list a:hover,
.nav-list-mobile a:hover {
	color: #ffd700;
}

.dropdown {
	position: relative;
}

.dropdown > a {
	color: #ffd700 !important;
	font-weight: 700;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(26, 26, 46, 0.98);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 15px 0;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	list-style: none;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	margin: 0;
}

.dropdown-menu a {
	display: block;
	padding: 12px 20px;
	border-radius: 0;
	margin: 0;
	color: #ffffff !important;
	font-weight: 500 !important;
	font-size: 14px;
}

.dropdown-menu a:hover {
	background: rgba(255, 215, 0, 0.1);
	color: #ffd700 !important;
}

.header-cta {
	flex-shrink: 0;
}
.header-cta a .mobile {
	display: none;
}

.play-btn {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #000;
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.play-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
	position: relative;
	padding: 140px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-bottom: 60px;
}

.hero-right {
	position: sticky;
	top: 100px;
	right: 0;
}

.badge {
	background: linear-gradient(
		45deg,
		rgba(255, 215, 0, 0.2),
		rgba(255, 215, 0, 0.3)
	);
	color: #ffd700;
	padding: 10px 20px;
	border-radius: 25px;
	display: inline-block;
	margin-bottom: 25px;
	font-size: 14px;
	font-weight: bold;
	border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.1;
	margin-bottom: 25px;
}

.highlight {
	color: #ffd700;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 18px;
	margin-bottom: 35px;
	opacity: 0.9;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

.btn {
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn-primary {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #000;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
	background: transparent;
	color: #ffd700;
	border: 2px solid #ffd700;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-preview {
	position: sticky;
	top: 100px;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.game-preview-image {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease;
}

.game-preview-image:hover {
	transform: scale(1.05);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.stat {
	text-align: center;
	padding: 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
	font-size: 2.5rem;
	font-weight: bold;
	color: #ffd700;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Sections */
section {
	padding: 80px 0;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-align: center;
	background: linear-gradient(45deg, #ffffff, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto 50px;
	line-height: 1.6;
}

/* Casinos Section */
.casino-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.casino-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.casino-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.casino-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.casino-header {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
	align-items: center;
}

.casino-logo img {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	object-fit: cover;
}

.casino-info h3 {
	font-size: 22px;
	margin-bottom: 8px;
	color: #ffd700;
}

.rating {
	color: #ffd700;
	margin-bottom: 10px;
	font-size: 14px;
}

.casino-info p {
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.5;
}

.bonus {
	background: linear-gradient(
		45deg,
		rgba(255, 215, 0, 0.15),
		rgba(255, 215, 0, 0.25)
	);
	color: #ffd700;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-weight: bold;
	text-align: center;
	border: 1px solid rgba(255, 215, 0, 0.3);
}

.features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 25px;
}

.feature {
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.jackpot p:not(:last-child) {
	margin-bottom: 20px;
}

.jackpot__content {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.jackpot__card {
	flex: 1 1 48%;
}

.difficulty-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	margin: 20px 0;
}

.difficulty-table tr:first-child {
	background: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
}

.difficulty-table tr:first-child td {
	font-weight: 600;
	padding: 15px;
	text-align: center;
	color: #000;
}

.difficulty-table tr:not(:first-child) {
	border-bottom: 1px solid #dee2e6;
}

.difficulty-table tr:not(:first-child) td {
	padding: 12px 15px;
	color: #000;
}

.difficulty-table tr:not(:first-child):hover {
	background-color: #f8f9fa;
}

.difficulty-table td:first-child {
	font-weight: 600;
}

.difficulty-table td:nth-child(2),
.difficulty-table td:nth-child(3) {
	text-align: center;
}

@media (max-width: 768px) {
	.difficulty-table {
		font-size: 0.9em;
	}

	.difficulty-table td {
		padding: 8px 10px;
	}
}

.casino-buttons {
	display: flex;
	gap: 12px;
}

.btn-outline {
	background: transparent;
	color: #ffd700;
	border: 1px solid #ffd700;
}

/* Demo Section */
.demo {
	text-align: center;
	background: rgba(255, 255, 255, 0.03);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo iframe,
.demo-iframe {
	border-radius: 15px;
	margin-top: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-iframe {
	padding: 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	margin-top: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.demo-iframe button {
	max-width: 250px;
	max-height: 80px;
	padding: 14px 30px;
}

/* About Section */
.about {
	background: transparent;
	color: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 40px;
}

.about-text {
	font-size: 16px;
	line-height: 1.7;
}

.about-text p {
	margin-bottom: 25px;
	opacity: 0.9;
}

/* statistics */

.table-container {
	margin: 30px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	background: white;
}

.clean-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
}

.table-header {
	background: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
}

.table-header td {
	padding: 12px 15px;
	text-align: center;
	font-weight: 600;
	font-size: 1em;
	color: #000;
	border: none;
}

.table-row {
	border-bottom: 1px solid #dee2e6;
}

.table-row:last-child {
	border-bottom: none;
}

.table-row td {
	padding: 10px 15px;
	text-align: center;
	font-size: 1em;
	color: #000;
	border: none;
}

.table-row:hover {
	background-color: #f8f9fa;
}

@media (max-width: 768px) {
	.table-container {
		margin: 20px 0;
	}

	.table-header td,
	.table-row td {
		padding: 8px 10px;
		font-size: 0.9em;
	}
}

.game-specs {
	background: rgba(0, 0, 0, 0.2);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 30px;
}

.game-specs h3 {
	color: #ffd700;
	margin-bottom: 25px;
	font-size: 20px;
	text-align: left;
	background: none;
	-webkit-text-fill-color: #ffd700;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
	border-bottom: none;
}

.spec-label {
	font-weight: 500;
	opacity: 0.8;
}

.spec-value {
	color: #ffd700;
	font-weight: bold;
}

.game-interface {
	position: relative;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 30px;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.multiplier-display {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

.multiplier {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	transition: all 0.3s ease;
}

.multiplier.active {
	background: linear-gradient(45deg, #4caf50, #66bb6a);
	border-color: #4caf50;
	box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.game-screen {
	text-align: center;
}

.game-interface-image {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
	position: relative;
	background: transparent;
	color: white;
}

.features-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	align-items: start;
	gap: 30px;
	margin-top: 50px;
	width: 100%;
}

.features-header h2 {
	color: #ffd700;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: left;
	background: none;
	-webkit-text-fill-color: #ffd700;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(0, 0, 0, 0.3);
	transform: translateX(10px);
}

.feature-icon {
	font-size: 24px;
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-text h3 {
	color: #ffd700;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
}

.feature-text p {
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

.features-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.feature-box {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.feature-box-icon {
	font-size: 32px;
	margin-bottom: 20px;
	color: #ffd700;
}

.feature-box h4 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #ffd700;
}

.feature-box p {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.6;
}

.infographic-container {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 30px;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

.features-image {
	position: sticky;
	top: 100px;
	right: 0;
}

.features-img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits {
	position: relative;
	background: transparent;
	color: white;
}

.benefits-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-start;
	margin-top: 50px;
}

.benefits-image {
	position: sticky;
	top: 100px;
	left: 0;
}

.benefits-img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(0, 0, 0, 0.3);
	transform: translateX(10px);
}

.benefit-icon {
	font-family: "FontAwesome";
	font-size: 24px;
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-text h3 {
	color: #ffd700;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
}

.benefit-text p {
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

/* Guide Section */

.guide {
	position: relative;
}
.guide-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 50px;
}

.guide-image {
	position: sticky;
	top: 200px;
	left: 0;
}

.steps-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.step-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(10px);
}

.step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 20px;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-text h3 {
	color: #ffd700;
	margin-bottom: 8px;
	font-size: 18px;
}

.step-text p {
	opacity: 0.9;
	line-height: 1.6;
}

/* Legal Section */
.legal-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.legal-box {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 35px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.legal-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.legal-box h3 {
	color: #ffd700;
	margin-bottom: 25px;
	font-size: 22px;
	text-align: left;
	background: none;
	-webkit-text-fill-color: #ffd700;
}

.legal-list {
	list-style: none;
}

.legal-list li {
	padding: 12px 0;
	padding-left: 30px;
	position: relative;
	opacity: 0.9;
	line-height: 1.6;
}

.legal-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #4caf50;
	font-weight: bold;
	font-size: 18px;
}

/* Pros and Cons */
.pros-cons-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 50px;
}

.pros-box,
.cons-box {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 35px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.pros-box:hover,
.cons-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pros-header,
.cons-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.pros-icon,
.cons-icon {
	font-size: 2rem;
}

.pros-header h3 {
	color: #4caf50;
	font-size: 24px;
	text-align: left;
	background: none;
	-webkit-text-fill-color: #4caf50;
}

.cons-header h3 {
	color: #f44336;
	font-size: 24px;
	text-align: left;
	background: none;
	-webkit-text-fill-color: #f44336;
}

.pros-list,
.cons-list {
	list-style: none;
}

.pros-list li,
.cons-list li {
	padding: 10px 0;
	padding-left: 25px;
	position: relative;
	opacity: 0.9;
	line-height: 1.5;
}

.pros-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #4caf50;
	font-weight: bold;
}

.cons-list li:before {
	content: "✗";
	position: absolute;
	left: 0;
	color: #f44336;
	font-weight: bold;
}

.testimonial {
	display: flex;
	align-items: flex-start;
	margin: 30px 0;
	padding: 20px;
	border: 1px solid #dee2e6;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 20px;
	object-fit: cover;
}

.testimonial-content h4 {
	margin: 0 0 10px 0;
	color: #fff;
	font-size: 1.1em;
}

.testimonial-content p {
	margin: 0;
	color: #fff;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.testimonial {
		flex-direction: column;
		text-align: center;
	}

	.testimonial-avatar {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

/* FAQ Section */
.faq {
	background: transparent;
	padding: 80px 0;
}

.faq-container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	margin-top: 50px;
}

.faq-item {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	margin-bottom: 15px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	width: 100%;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
	padding: 20px 25px;
	background: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-toggle {
	font-size: 20px;
	color: #ffd700;
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 25px 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer p {
	padding: 20px 0;
	opacity: 0.9;
	line-height: 1.6;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-answer {
	max-height: 300px;
  overflow: auto;
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

/* What is Chicken Road Section */
#what-is-chicken-road {
	padding: 140px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

#what-is-chicken-road .hero-title {
	font-size: 3rem;
	background: linear-gradient(45deg, #ffffff, #ffd700);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	text-align: center;
}

#what-is-chicken-road .hero-description {
	font-size: 16px;
	margin-bottom: 30px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	opacity: 0.9;
	line-height: 1.7;
}

#what-is-chicken-road .features-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
	width: 100%;
}

#what-is-chicken-road .feature-box {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#what-is-chicken-road .feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

#what-is-chicken-road .feature-box-icon {
	font-size: 32px;
	margin-bottom: 20px;
	color: #ffd700;
}

#what-is-chicken-road .feature-box h4 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #ffd700;
}

#what-is-chicken-road .feature-box p {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.6;
}

/* Author Block Section - FIXED FOR MOBILE */
.author-block {
	padding: 80px 0;
	background: rgba(0, 0, 0, 0.2);
}

.author-block h2 {
	margin-bottom: 50px;
}

.author-block-content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.author-image-section {
	text-align: center;
}

.author-image-section img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 20px;
}

.author-image-section h3 {
	color: #ffd700;
	font-size: 22px;
	margin-bottom: 8px;
}

.author-image-section p {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 20px;
}

.author-socials {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.author-socials a {
	color: #fff;
	font-size: 20px;
	transition: color 0.3s ease;
}

.author-socials a:hover {
	color: #ffd700;
}

.author-bio p {
	font-size: 16px;
	line-height: 1.7;
	opacity: 0.9;
	margin-bottom: 25px;
}

/* Footer */
.footer {
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(15px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 50px 0 30px;
	margin-top: 0;
	color: #ffffff;
	width: 100%;
	max-width: none;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-logo img {
	height: 50px;
	width: auto;
}

.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	padding: 5px 10px;
	border-radius: 8px;
}

.footer-nav a:hover {
	color: #ffd700;
	background: rgba(255, 215, 0, 0.1);
}

.footer-policy a,
.footer-faq a,
.footer-disclaimer a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	padding: 5px 10px;
	border-radius: 8px;
}

.footer-policy a:hover,
.footer-faq a:hover,
.footer-disclaimer a:hover {
	color: #ffd700;
	background: rgba(255, 215, 0, 0.1);
}

.footer-licenses {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	align-items: center;
}

.license-logo {
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.license-logo:hover {
	opacity: 1;
}

.license-logo img {
	height: 40px;
	width: auto;
	filter: grayscale(0.3);
}

.footer-bottom {
	text-align: center;
	opacity: 0.8;
	font-size: 14px;
	color: #ffffff;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content,
	.about-content,
	.benefits-content,
	.features-content,
	.guide-content {
		gap: 40px;
	}

	/* Author block responsive for tablets */
	.author-block-content {
		grid-template-columns: 250px 1fr;
		gap: 40px;
		padding: 30px;
	}

	.author-image-section img {
		width: 150px;
		height: 150px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		display: none;
	}

	.hero-content,
	.about-content,
	.benefits-content,
	.features-content,
	.guide-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.casino-grid {
		grid-template-columns: 1fr;
	}

	.pros-cons-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.legal-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

	.footer-nav,
	.footer-policy,
	.footer-faq,
	.footer-disclaimer {
		width: 100%;
	}

	.footer-licenses {
		gap: 20px;
	}
	.nav-list-mobile {
		display: flex;
		max-height: 0;
		overflow: hidden;
		transition: all 0.3s ease;
	}
	.header-content {
		padding: 0;
		overflow-y: auto;
		overflow-x: hidden;
		padding-top: 15px;
		overflow-x: hidden;
	}
	.header {
		padding-top: 0;
	}
	.nav-list-mobile.active {
		padding-top: 15px;
		max-height: 1000px;
	}
	.dropdown-menu {
		position: relative;
		top: 10px;
		z-index: 100;
		display: block;
		opacity: 1;
		overscroll-behavior: contain;
		visibility: visible;
		transform: translateY(0);
		overflow-y: scroll;
		padding: 0;
		max-height: 0;
	}
	.dropdown-menu li a {
		padding: 10px;
	}
	.dropdown-menu.open {
		margin-top: 10px;
		max-height: 100px;
	}

	/* Author block mobile responsive - MAIN FIX */
	.author-block-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
		padding: 30px 20px;
	}

	.author-image-section {
		order: 1;
	}

	.author-bio {
		order: 2;
		text-align: left;
	}

	.author-image-section img {
		width: 120px;
		height: 120px;
	}

	.author-image-section h3 {
		font-size: 20px;
	}

	.author-bio p {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 2rem;
	}

	h2 {
		font-size: 2rem;
	}

	.casino-card {
		padding: 20px;
	}

	.legal-box,
	.pros-box,
	.cons-box {
		padding: 25px;
	}

	.footer-content {
		gap: 20px;
	}

	.footer-licenses {
		flex-direction: row !important;
		justify-content: center !important;
		gap: 15px !important;
		width: 100% !important;
	}

	.license-logo {
		flex-shrink: 0 !important;
	}

	.step-item,
	.benefit-item,
	.feature-item {
		flex-direction: column;
		text-align: center;
	}

	.benefit-icon,
	.feature-icon {
		font-size: 2rem;
	}
	.logo {
		max-width: 80px;
	}
	.header-cta a .desktop {
		display: none;
	}
	.header-cta a .mobile {
		display: flex;
	}
	.header-cta .play-btn {
		display: block;
		padding: 8px 10px;
	}
	.header-cta {
		flex-shrink: 1;
	}
	.header-content {
		gap: 5px;
	}
	.logo {
		margin-right: 0;
	}

	/* Author block extra small mobile responsive */
	.author-block {
		padding: 60px 0;
	}

	.author-block h2 {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.author-block-content {
		padding: 20px 15px;
		gap: 25px;
	}

	.author-image-section img {
		width: 100px;
		height: 100px;
	}

	.author-image-section h3 {
		font-size: 18px;
	}

	.author-image-section p {
		font-size: 13px;
	}

	.author-bio p {
		font-size: 14px;
		line-height: 1.6;
	}

	.author-socials a {
		font-size: 18px;
	}
}

/* Animation and Transitions */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content > * {
	animation: fadeInUp 0.8s ease-out;
}

.casino-card {
	animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
	outline: 2px solid #ffd700;
	outline-offset: 2px;
}

/* Loading states */
img {
	transition: opacity 0.3s ease;
}

img:not([src]) {
	opacity: 0;
}

/* Reviews Section */
.reviews {
	background: transparent;
	color: white;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.review-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.review-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.review-header {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	align-items: center;
}

.review-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.review-info h3 {
	font-size: 18px;
	color: #ffd700;
	margin-bottom: 5px;
}

.review-rating {
	font-size: 14px;
}

.review-text {
	font-size: 14px;
	opacity: 0.9;
	line-height: 1.6;
	margin-bottom: 15px;
}

.review-date {
	font-size: 12px;
	opacity: 0.7;
	text-align: right;
}

@media (max-width: 768px) {
	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.review-card {
		padding: 20px;
	}

	.btn-outline {
		width: 100%;
		max-width: 300px;
		margin: 20px auto 0;
		display: block;
	}
}

@media (max-width: 480px) {
	.review-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.review-avatar img {
		width: 40px;
		height: 40px;
	}

	.review-info h3 {
		font-size: 16px;
	}

	.review-text {
		font-size: 13px;
	}

	.review-date {
		font-size: 11px;
	}
}

/* НОВЫЕ СТИЛИ ДЛЯ ДОБАВЛЕННЫХ БЛОКОВ */
.official-specs {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	padding: 40px 0px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: 50px 0;
	position: relative;
	overflow: hidden;
}
.official-specs::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(45deg, gold, #ffed4e);
}
.official-badge {
	background: linear-gradient(
		45deg,
		rgba(76, 175, 80, 0.2),
		rgba(76, 175, 80, 0.3)
	);
	color: #4caf50;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 20px;
	border: 1px solid rgba(76, 175, 80, 0.3);
}
.official-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.official-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 15px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s;
}
.official-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
}
.official-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: gold;
	margin-bottom: 5px;
}
.official-label {
	font-size: 14px;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.difficulty-details {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 40px 0px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	margin: 50px 0;
}
.difficulty-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 30px;
}
.level-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s;
}
.level-card:hover {
	transform: translateY(-5px);
	border-color: gold;
}
.level-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.level-name {
	color: gold;
	font-size: 1.2rem;
	font-weight: 700;
}
.level-stage {
	background: rgba(255, 215, 0, 0.2);
	color: gold;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}
.level-multiplier {
	font-size: 1.1rem;
	color: #fff;
	opacity: 0.9;
}
.level-recommended {
	margin-top: 15px;
	padding: 8px 12px;
	background: rgba(76, 175, 80, 0.1);
	border-radius: 8px;
	font-size: 12px;
	color: #4caf50;
	border: 1px solid rgba(76, 175, 80, 0.3);
}
.level-warning {
	margin-top: 15px;
	padding: 8px 12px;
	background: rgba(244, 67, 54, 0.1);
	border-radius: 8px;
	font-size: 12px;
	color: #f44336;
	border: 1px solid rgba(244, 67, 54, 0.3);
}

.provably-fair {
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.8),
		rgba(30, 60, 114, 0.8)
	);
	border-radius: 20px;
	padding: 40px 0px;
	margin: 50px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}
.provably-fair::after {
	content: "✓";
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 4rem;
	color: rgba(76, 175, 80, 0.1);
}
.fair-icon {
	font-size: 2.5rem;
	color: #4caf50;
	margin-bottom: 20px;
}

.cta-enhanced {
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.1),
		rgba(255, 237, 78, 0.05)
	);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin: 40px 0;
	border: 2px solid rgba(255, 215, 0, 0.3);
}
.cta-enhanced h3 {
	color: gold;
	margin-bottom: 20px;
	font-size: 1.8rem;
}

.payment-badges {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
	flex-wrap: wrap;
}
.payment-badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	border-radius: 25px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s;
}
.payment-badge:hover {
	background: rgba(255, 215, 0, 0.2);
	border-color: gold;
}
.payment-icon {
	color: gold;
	font-size: 16px;
}

.odds-table_wrapper {
  max-width: 1200px;
  width: 100%;
  overflow-x: auto;
}

.odds-table {
  min-width: 720px;
	width: 100%;
	margin: 30px 0;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
}
.odds-table thead {
	background: linear-gradient(
		45deg,
		rgba(255, 215, 0, 0.3),
		rgba(255, 237, 78, 0.2)
	);
}
.odds-table th {
	padding: 20px;
	text-align: center;
	color: #000;
	font-weight: 700;
}
.odds-table td {
	padding: 15px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
}
.odds-table tr:hover {
	background: rgba(255, 255, 255, 0.05);
}

.strategy-guide {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	padding: 40px 0px;
	margin: 50px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.strategy-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 30px;
}
.strategy-step {
	background: rgba(255, 255, 255, 0.05);
	padding: 25px;
	border-radius: 15px;
	border-left: 4px solid gold;
}
.step-number {
	display: inline-block;
	width: 30px;
	height: 30px;
	background: gold;
	color: #000;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 15px;
}

.comparison-detailed {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 40px;
	margin: 50px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-guide {
	background: linear-gradient(
		135deg,
		rgba(83, 52, 131, 0.3),
		rgba(114, 9, 183, 0.2)
	);
	border-radius: 20px;
	padding: 40px 0px;
	margin: 50px 0;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-guide {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 40px 0px;
	margin: 50px 0;
	border: 2px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
	.official-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.difficulty-levels {
		grid-template-columns: 1fr;
	}
	.strategy-steps {
		grid-template-columns: 1fr;
	}
	.payment-badges {
		gap: 10px;
	}
	.payment-badge {
		padding: 8px 15px;
		font-size: 12px;
	}
	.odds-table {
		font-size: 14px;
	}
	.odds-table th,
	.odds-table td {
		padding: 12px 8px;
	}
}
