/* Современный минималистичный дизайн */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #ffffff;
	color: #1a1a1a;
	line-height: 1.6;
}

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

/* Шапка */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	border-bottom: 1px solid #f0f0f0;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.logo img {
	height: 35px;
}

.desktop-nav {
	display: none;
}

.desktop-nav a {
	color: #1a1a1a;
	text-decoration: none;
	margin: 0 24px;
	font-weight: 500;
	transition: color 0.3s;
}

.desktop-nav a:hover {
	color: #6366f1;
}

.auth-buttons {
	display: none;
}

.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.btn-ghost {
	background: transparent;
	color: #6b7280;
	border: 1px solid #e5e7eb;
}

.btn-ghost:hover {
	background: #f9fafb;
	color: #1a1a1a;
}

.btn-primary {
	background: #6366f1;
	color: #ffffff;
}

.btn-primary:hover {
	background: #5856eb;
	transform: translateY(-1px);
}

.btn-cta {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #ffffff;
	font-size: 16px;
	padding: 16px 32px;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Бургер меню */
.burger-menu {
	display: flex;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
}

.burger-line {
	width: 24px;
	height: 2px;
	background: #1a1a1a;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-nav {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #f0f0f0;
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-nav.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.mobile-nav-content {
	padding: 24px 20px;
}

.mobile-nav a {
	display: block;
	color: #1a1a1a;
	text-decoration: none;
	padding: 12px 0;
	font-weight: 500;
	border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a.btn-primary {
	color: #fff;
}

.mobile-auth {
	margin-top: 24px;
	display: flex;
	gap: 12px;
}

.mobile-auth .btn {
	flex: 1;
	text-align: center;
}
a {
	text-decoration: none;
}
/* Герой секция */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-shape {
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	border-radius: 50%;
	opacity: 0.1;
	transform: rotate(-15deg);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 100px 0 50px;
	text-align: center;
}

.hero-badge {
	display: inline-block;
	background: #6366f1;
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 800;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #1a1a1a, #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-description {
	font-size: 1.1rem;
	color: #6b7280;
	margin-bottom: 40px;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.bonus-showcase {
	background: #ffffff;
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid #f0f0f0;
}

.bonus-main {
	margin-bottom: 24px;
}

.bonus-amount {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	color: #6366f1;
	margin-bottom: 8px;
}

.bonus-text {
	color: #6b7280;
	font-size: 1.1rem;
}

.bonus-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.feature {
	color: #059669;
	font-weight: 500;
}

/* Игровые разделы */
.games-section {
	padding: 100px 0;
	background: #ffffff;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	color: #1a1a1a;
}

.section-header p {
	font-size: 1.1rem;
	color: #6b7280;
}

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

.game-card {
	background: #ffffff;
	border: 1px solid #f0f0f0;
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
	display: grid;
	grid-template-rows: auto 1fr auto;
}

.game-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: #6366f1;
}

.card-icon {
	color: #6366f1;
	margin-bottom: 20px;
}

.game-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1a1a1a;
}

.game-card p {
	color: #6b7280;
	margin-bottom: 16px;
}

.card-stats span {
	background: #f0f9ff;
	color: #0369a1;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Дополнительные блоки */
.features-section {
	padding: 100px 0;
	background: #f8fafc;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

.feature-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	border: 1px solid #f0f0f0;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #1a1a1a;
}

.feature-card p {
	color: #6b7280;
	margin-bottom: 8px;
}

.payment-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 16px;
}

.payment-list span {
	background: #6366f1;
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Футер */
.footer {
	background: #1a1a1a;
	padding: 40px 0;
	color: #ffffff;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.footer-logo img {
	height: 25px;
}

.footer p {
	color: #9ca3af;
	font-size: 0.875rem;
}

/* Планшеты */
@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
	}

	.auth-buttons {
		display: flex;
		gap: 12px;
	}

	.burger-menu {
		display: none;
	}

	.hero h1 {
		font-size: 1.55rem;
	}

	.bonus-amount {
		font-size: 4rem;
	}

	.bonus-features {
		flex-direction: row;
		justify-content: center;
		gap: 32px;
	}

	.games-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-content {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* Десктоп */
@media (min-width: 1024px) {
	.hero h1 {
		font-size: 2.25rem;
	}

	.games-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.text-wrapper {
	padding: 60px 0;
	max-width: 100%;
	margin: 0 auto;
}

.text-wrapper p {
	margin: 0 0 16px 0;
	line-height: 1.6;
}

.text-wrapper h2,
.text-wrapper h3 {
	margin: 24px 0 16px 0;
}
.text-wrapper h4,
.text-wrapper h5,
.text-wrapper h6 {
	margin: 18px 0 10px 0;
}

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

.text-wrapper table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
}
.text-wrapper table thead {
	font-weight: bold;
	background-color: #f5f5f5;
}

.text-wrapper th,
.text-wrapper td {
	padding: 12px;
	border: 1px solid #ddd;
}

.text-wrapper th {
	background-color: #f5f5f5;
	text-align: left;
}

.text-wrapper img {
	max-width: 100%;
	height: auto;
	margin: 16px 0 !important;
	display: block;
}

.text-wrapper figure {
	margin: 24px 0;
}

.text-wrapper figcaption {
	margin-top: 8px;
	font-style: italic;
	color: #666;
	text-align: center;
}

.text-wrapper blockquote {
	margin: 24px 0;
	padding: 16px;
	border-left: 4px solid #ddd;
	color: #555;
	background-color: #f9f9f9;
}

.text-wrapper *:last-child {
	margin-bottom: 0;
}

.text-wrapper .btn {
	margin: 1rem auto;
	width: max-content;
	max-width: 100%;
	display: block;
}

@media (max-width: 767px) {
	.text-wrapper h2 {
		font-size: 24px;
	}

	.text-wrapper h3 {
		font-size: 20px;
	}

	.text-wrapper table {
		display: block;
		overflow-x: auto;
	}

	.text-wrapper th,
	.text-wrapper td {
		padding: 8px;
	}

	.text-wrapper blockquote {
		padding: 12px;
	}
}

@media (max-width: 480px) {
	.text-wrapper h2 {
		font-size: 20px;
	}

	.text-wrapper h3 {
		font-size: 18px;
	}

	.text-wrapper p {
		margin: 0 0 12px 0;
		font-size: 16px;
	}

	.text-wrapper ul,
	.text-wrapper ol {
		padding-left: 15px;
	}

	.text-wrapper img {
		margin: 12px 0;
	}

	.text-wrapper figure {
		margin: 16px 0;
	}

	.text-wrapper blockquote {
		padding: 10px;
		border-left-width: 3px;
	}
}
