* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #1a1a2e;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	background: rgba(26, 26, 46, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 36, 0, 0.2);
}

.nav {
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo img {
	height: 40px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
	color: #ff2400;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ff2400;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.nav-buttons {
	display: flex;
	gap: 1rem;
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu-btn span {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-menu {
	display: none;
	background: rgba(26, 26, 46, 0.98);
	backdrop-filter: blur(10px);
	padding: 1rem 0;
}

.mobile-menu ul {
	list-style: none;
	text-align: center;
}

.mobile-menu li {
	margin: 1rem 0;
}

.mobile-menu a {
	color: white;
	text-decoration: none;
	font-weight: 500;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #ff2400 0%, #ff4d26 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(255, 36, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 36, 0, 0.4);
}

.btn-outline {
	border: 2px solid #ff2400;
	color: #ff2400;
	background: transparent;
}

.btn-outline:hover {
	background: #ff2400;
	color: white;
	transform: translateY(-2px);
}

.btn-large {
	padding: 16px 32px;
	font-size: 1.1rem;
	border-radius: 16px;
}

.hero {
	background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
	padding: 120px 0 80px;
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(255, 36, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(4, 207, 170, 0.05) 0%,
			transparent 50%
		);
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ff2400 0%, #04cfaa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.5;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 36, 0, 0.2);
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #04cfaa;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 36, 0, 0.3);
}

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, #ff2400, transparent);
	animation: rotate 4s linear infinite;
	z-index: -1;
}

.hero-card img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 1;
}

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: #1a1a2e;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #ff2400, #04cfaa);
	border-radius: 2px;
}

.features {
	padding: 100px 0;
	background: #f8f9fa;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.feature-block {
	background: white;
	padding: 1.5rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 36, 0, 0.1);
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.feature-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ff2400, #04cfaa);
}

.feature-block:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #ff2400, #04cfaa);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.feature-block h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a1a2e;
}

.feature-block p {
	color: #666;
	line-height: 1.6;
}

.games {
	padding: 100px 0;
	background: #1a1a2e;
}

.games .section-title {
	color: white;
}

.games-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.game-category {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 300px;
}

.category-image {
	position: relative;
	width: 100%;
	height: 100%;
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.8),
		rgba(22, 33, 62, 0.9)
	);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	opacity: 0;
	transition: all 0.3s ease;
}

.game-category:hover .category-overlay {
	opacity: 1;
}

.game-category:hover .category-image img {
	transform: scale(1.1);
}

.category-overlay h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.category-overlay p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.promotions {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.promo-showcase {
	display: grid;
	gap: 3rem;
}

.promo-main {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 24px;
	padding: 3rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.promo-main::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(4, 207, 170, 0.1) 0%,
		transparent 70%
	);
}

.promo-badge {
	display: inline-block;
	background: #04cfaa;
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.promo-main h3 {
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.promo-main p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.promo-features {
	list-style: none;
	margin-bottom: 2rem;
}

.promo-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.promo-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #04cfaa;
	font-weight: bold;
}

.promo-visual img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.promo-item {
	background: white;
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.promo-item:hover {
	transform: translateY(-5px);
}

.promo-item h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1a1a2e;
}

.promo-item p {
	color: #666;
	margin-bottom: 1.5rem;
}

.cta {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at center,
		rgba(255, 36, 0, 0.1) 0%,
		transparent 70%
	);
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.cta-content p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.cta-trust {
	margin-top: 2rem;
	font-size: 0.9rem;
	opacity: 0.7;
}

.footer {
	background: #0f0f23;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-logo {
	height: 40px;
	margin-bottom: 1rem;
}

.footer-section h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ff2400;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: #04cfaa;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
	text-align: center;
	color: #999;
}

/* Добавляем стили для новой секции "О нас" */
.about-text {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.text-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.text-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	color: #1a1a2e;
	position: relative;
}

.text-content h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #ff2400, #04cfaa);
	border-radius: 2px;
}

.text-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	text-align: left;
}

.text-column p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.5rem;
}

.text-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95em;
}

.text-content th,
.text-content td {
	padding: 0.75em 1em;
	border: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
	word-break: break-word;
}

.text-content th {
	background: #f7f7f7;
	font-weight: 600;
}
.text-content tr:nth-child(even) td {
	background: #fafafa;
}

@media (max-width: 767px) {
	.text-content table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		width: 100%;
		border-radius: 6px;
	}

	.text-content th,
	.text-content td {
		white-space: normal;
		word-break: break-word;
	}

	.text-content li {
		list-style-position: inside;
	}
}

.text-content table.scrollable {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: max-content;
  	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	border-radius: 6px;
}

.text-content table.scrollable th,
.text-content table.scrollable td {
	white-space: nowrap;
	word-break: normal;
}

.text-content table.scrollable::-webkit-scrollbar {
	height: 6px;
}
.text-content table.scrollable::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}
.text-content table.scrollable::-webkit-scrollbar-track {
	background: transparent;
}

/* Добавляем стили для секции отзывов */
.testimonials {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonials .section-title {
	color: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 36, 0, 0.2);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: rgba(4, 207, 170, 0.4);
}

.testimonial-content {
	margin-bottom: 1.5rem;
}

.stars {
	color: #04cfaa;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.testimonial-content p {
	color: white;
	font-size: 1.1rem;
	line-height: 1.6;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #ff2400;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	color: white;
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.author-info span {
	color: #04cfaa;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.nav-menu,
	.nav-buttons {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.features-grid,
	.games-showcase {
		grid-template-columns: 1fr;
	}

	.promo-main {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.promo-grid {
		grid-template-columns: 1fr;
	}

	.cta-content h2 {
		font-size: 2rem;
	}

	.text-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.btn {
		padding: 10px 20px;
	}

	.btn-large {
		padding: 14px 28px;
	}

	.feature-block,
	.promo-item {
		padding: 1.5rem;
	}

	.promo-main {
		padding: 2rem;
	}

	.text-content h2 {
		font-size: 2rem;
	}

	.text-column p {
		font-size: 1rem;
	}

	.testimonial-card {
		padding: 1.5rem;
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu.active {
	display: block;
}
li {
	list-style-position: inside;
}
.accordion {
	margin: 0;
	text-align: left;
}
.accordion__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.accordion__heading {
	margin: 0;
}
.accordion__heading * {
	font-weight: bold;
}
.accordion__button {
	display: flex;
	width: 100%;
	padding: 14px 16px;
	font-size: 16px;
	text-align: left;
	background: #fff;
	border: 0;
	cursor: pointer;
	outline: none;
}

.accordion__button::after {
	content: '+';
	margin-left: auto;
	width: 12px;
	height: 12px;
	transform: rotate(0deg);
	transition: transform 0.25s ease;
	opacity: 0.7;
}
.accordion__button[aria-expanded='true']::after {
	transform: rotate(-135deg);
}

.accordion__panel {
	padding: 0 16px 16px 16px;
	animation: fadeIn 0.18s ease;
}
.accordion__panel * {
	font-size: 0.9rem;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.accordion__panel[hidden] {
	display: none;
}
