* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

body {
	color: #333;
	line-height: 1.6;
}

h1,
h2,
h3 {
	font-weight: 800;
	text-align: center;
	color: #090F1E;
	border-radius: 20px;
	text-align: center;
	line-height: 1.5;

	margin-bottom: 10px;
	margin-top: 15px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 34px;
}

h3 {
	font-size: 28px;
}

/* Three Column Layout */
.main-layout {
	display: flex;
	min-height: 100vh;
}

.side-column {
	width: 200px;
	position: fixed;
	top: 0;
	height: 100vh;
	background-image: url('/img/sidebar-image.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.8;
}

.left-column {
	left: 0;
}

.right-column {
	right: 0;
}

.center-content {
	flex: 1;
	margin-left: 200px;
	margin-right: 200px;
	min-height: 100vh;
}


/* Special Content Block */
.special-content-wrapper {
	position: relative;
	max-width: 1200px;
	/* margin: 60px auto; */
	margin: 60px auto 20px auto;
	padding: 0 20px;
}

.floating-tiger {
	position: absolute;
	top: -130px;
	right: 20px;
	width: 250px;
	height: auto;
	z-index: 10;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

.special-title {
	color: white !important;
	text-align: left;
}

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

	.special-description {
		font-size: 16px !important;
	}
}

.special-content-block {
	background-color: #E52113;
	background-image: url('/img/backs.webp');
	background-size: 10% auto;
	background-repeat: repeat;
	padding: 60px 40px;
	border-radius: 20px;
	color: white;
	text-align: center;
	box-shadow: 0 15px 35px rgba(229, 33, 19, 0.4);
	position: relative;
	overflow: hidden;
}

.special-content-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(139, 0, 0, 0.8);
	z-index: 1;
}

.special-content-block>* {
	position: relative;
	z-index: 2;
}


.special-description {
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 1.6;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	text-align: left;
}

.promo-code-block {
	background-color: rgba(255, 255, 255, 0.1);
	/* прозрачность */
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	color: #fff;
	font-size: 20px;
	backdrop-filter: blur(4px);
}


/* Game Info Section */
.main {
	max-width: 1200px;
	/* margin: 60px auto; */
	margin: 30px auto;
	padding: 0 20px;
	padding: 40px 15px;
	color: black;
}

.main p {
	margin-bottom: 10px;
}

.main img {
	display: block;
	border-radius: 10px;
	max-width: 550px;
	width: 100%;
	height: auto;
	margin: 0 auto 20px auto;
}

/* Table Styles */

.table-wrapper {
	overflow-x: auto;
	max-width: 1200px;
	margin: 0 auto;
}

.custom-table {
	width: 100%;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	border-collapse: collapse;
}

.table-header {
	background: #B22222;
	color: white;
}

.table-header th {
	padding: 20px;
	text-align: left;
	font-weight: 700;
	font-size: 16px;
}

.table-row {
	border-bottom: 1px solid #e0e0e0;
	transition: background-color 0.3s ease;
}

.table-row:hover {
	background-color: #FFF8DC;
}

.table-row:last-child {
	border-bottom: none;
}

.table-cell {
	padding: 20px;
	color: #333;
}

.table-cell.bold {
	font-weight: 600;
	color: #8B0000;
}

.table-icon {
	color: #E52113;
	margin-right: 8px;
}

/* FAQ Section */
.faq-section {
	background: white;
	/* padding: 60px 0; */
	margin: 5px 0 30px 0;
}

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

.faq-item {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 15px 20px;
	background: none;
	border: none;
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	color: #8B0000;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #FFF8DC;
}

.faq-question h3 {
	text-align: left;
	font-weight: 700;
	font-size: 18px;
	color: #8B0000;
}

.faq-icon {
	color: #E52113;
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 20px;
	color: #666;
	line-height: 1.7;
	display: none;
	border-top: 1px solid #e0e0e0;
}

.faq-answer.active {
	display: block;
}

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

/* Footer */
.footer {
	background: #8B0000;
	color: white;
	padding: 60px 0 20px;
}

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

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand img {
	height: 50px;
	width: auto;
	margin-bottom: 20px;
}

.footer-brand p {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 20px;
}

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

.footer-social a {
	color: #ccc;
	font-size: 24px;
	transition: color 0.3s ease;
}

.footer-social a:hover {
	color: #FFD700;
}

.footer-links p {
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFD700;
}

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

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

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #ffcf09;
	padding-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
}

.footer-copyright {
	color: #ccc;
}

.footer-copyright p {
	margin-bottom: 8px;
}

.footer-payments {
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.footer-payments span {
	color: #ccc;
	font-size: 14px;
}

.footer-payments i {
	font-size: 24px;
}

.footer-warning {
	margin-top: 30px;
	text-align: center;
}

.warning-box {
	background: rgba(255, 207, 9, 0.5);
	border: 1px solid #ffcf09;
	border-radius: 10px;
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.warning-box p {
	color: #ffcccc;
	font-size: 14px;
}

.warning-box a {
	color: #ffeeee;
	text-decoration: underline;
}

.main ul {
	margin-top: 5px;
	margin-bottom: 10px;
	padding-left: 20px;
}

.main blockquote {
	padding: 20px;
	margin: 20px 0 10px 0;
	background: rgba(255, 207, 9, 0.3);
	border-left: 3px solid #ffcf09;
	border-radius: 6px;
}

/* Combined Content (Text + Image) */
.combined-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
	gap: 20px;
}

.combined-content .combined-content-left {
	width: 60%;
}

.combined-content .combined-content-right {
	width: 40%;
}

.combined-content .combined-content-right img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

@media (max-width: 1300px) {
	.combined-content {
		flex-direction: column;
		margin-bottom: 0;
	}

	.combined-content .combined-content-left {
		width: 100%;
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.side-column {
		width: 150px;
	}

	.center-content {
		margin-left: 150px;
		margin-right: 150px;
	}

	.main img {
		max-width: 370px;
	}
}

@media (max-width: 768px) {
	.side-column {
		display: none;
	}

	.center-content {
		margin-left: 0;
		margin-right: 0;
	}

	.hero-title {
		font-size: 32px;
	}

	.section-title {
		font-size: 32px;
	}

	.floating-tiger {
		position: static;
		width: 50%;
		margin: auto auto -80px auto;
		display: block;
	}


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

	.footer-bottom {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-payments {
		justify-content: center;
	}

	.main img {
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.floating-header {
		width: 95%;
		padding: 12px 20px;
	}

	.logo-container img {
		height: 40px;
	}



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

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

	.section-content {
		grid-template-columns: 1fr;
	}

	.special-content-block {
		padding: 40px 20px;
	}

	.table-cell {
		padding: 10px;
		font-size: 14px;
	}

	.table-header th {
		padding: 10px;
		
		font-size: 14px;
	}

	
}

@media (min-width: 768px) {
	.hero-container .hero-content {
		margin-top: 30px;
	}
}