.btn-login:hover,
.btn-primary:hover,
.btn-register:hover,
.btn-secondary:hover {
	transform: translateY(-2px);
}

.btn,
.contact-card,
.feature-card,
.info-item,
.review-card,
.step-card {
	transition: 0.3s;
}

.bonus-card,
.btn,
.contact-card,
.countdown-card,
.feature-card,
.footer-content,
.section-title,
.step-card {
	text-align: center;
}

.bonus-amount,
.bonus-value {
	-webkit-text-fill-color: transparent;
}

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

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
		sans-serif;
	background-color: #0a1d27;
	color: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

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

.header {
	background-color: #0f2029;
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.bonus-card,
.hero,
.hero-content {
	position: relative;
}

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

.logo {
	display: flex;
	align-items: center;
}

.logo-image {
	height: 45px;
	width: auto;
	display: block;
}

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

.btn {
	padding: 12px 28px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
}

.btn-login {
	background-color: #c9302c;
	color: #fff;
}

.btn-login:hover {
	background-color: #a92822;
	box-shadow: 0 4px 12px rgba(201, 48, 44, 0.4);
}

.btn-register {
	background-color: #5bc0be;
	color: #fff;
}

.btn-register:hover {
	background-color: #3a9f9d;
	box-shadow: 0 4px 12px rgba(91, 192, 190, 0.4);
}

.btn-primary {
	background-color: #c9302c;
	color: #fff;
	box-shadow: 0 4px 15px rgba(201, 48, 44, 0.3);
}

.btn-primary:hover {
	background-color: #a92822;
	box-shadow: 0 6px 20px rgba(201, 48, 44, 0.5);
}

.btn-secondary {
	background-color: #5bc0be;
	color: #fff;
	box-shadow: 0 4px 15px rgba(91, 192, 190, 0.3);
}

.btn-secondary:hover {
	background-color: #3a9f9d;
	box-shadow: 0 6px 20px rgba(91, 192, 190, 0.5);
}

.btn-large {
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 700;
}

.hero {
	padding: 80px 0;
	background: linear-gradient(110.09deg, #0a1d27 0%, #1a2f3a 100%);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 80% 50%,
		rgba(255, 59, 48, 0.1) 0,
		transparent 50%
	);
	pointer-events: none;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	z-index: 1;
}

.hero-text {
	max-width: 550px;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	color: #fff;
}

.hero-description {
	font-size: 18px;
	line-height: 1.7;
	color: #b0b5c9;
	margin-bottom: 40px;
}

.app-buttons,
.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-image {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.pin-up-girl {
	max-width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.about-section,
.bonus-section,
.bonuses-section,
.payment-section,
.reviews-section,
.table-section {
	padding: 80px 0;
	background: linear-gradient(116.23deg, #1a2f3a 0%, #0a1d27 100%);
}

.bonus-card {
	background: linear-gradient(
		135deg,
		rgba(255, 59, 48, 0.1) 0,
		rgba(91, 192, 190, 0.1) 100%
	);
	border: 2px solid rgba(255, 59, 48, 0.3);
	border-radius: 20px;
	padding: 60px 40px;
	overflow: hidden;
}

.bonus-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 59, 48, 0.1) 0,
		transparent 70%
	);
	animation: 10s linear infinite bonus-rotate;
	z-index: 0;
}

.bonus-amount,
.bonus-card .btn,
.bonus-description,
.bonus-icon,
.bonus-title {
	z-index: 1;
	position: relative;
}

@keyframes bonus-rotate {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.bonus-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.bonus-title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.bonus-amount {
	font-size: 56px;
	font-weight: 900;
	background: linear-gradient(90deg, #ff3b30 0, #5bc0be 100%);
	-webkit-background-clip: text;
	background-clip: text;
	margin-bottom: 20px;
}

.bonus-description {
	font-size: 18px;
	color: #b0b5c9;
	margin-bottom: 40px;
}

.section-title {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 60px;
	color: #fff;
}

.app-section,
.contact-section,
.faq-section,
.features-section,
.games-section,
.info-section,
.steps-section {
	padding: 80px 0;
	background-color: #0a1d27;
}

.features-grid,
.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.feature-card {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px 30px;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 59, 48, 0.5);
	box-shadow: 0 12px 40px rgba(255, 59, 48, 0.15);
}

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

.bonus-item-title,
.feature-title,
.step-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.feature-text {
	font-size: 16px;
	color: #b0b5c9;
	line-height: 1.6;
}

.countdown-section {
	padding: 60px 0;
	background: linear-gradient(116.23deg, #1a2f3a 0%, #0a1d27 100%);
}

.countdown-card {
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.1) 0,
		rgba(255, 59, 48, 0.1) 100%
	);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 20px;
	padding: 50px 40px;
}

.info-item,
table,
.step-card {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
}

.countdown-title {
	font-size: 32px;
	font-weight: 700;
	color: gold;
	margin-bottom: 30px;
}

.countdown-timer {
	font-size: 48px;
	font-weight: 900;
	color: #ff3b30;
	font-family: 'Courier New', monospace;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.countdown-note {
	font-size: 18px;
	color: gold;
	font-weight: 600;
}

.info-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 4px solid #5bc0be;
	padding: 24px;
	border-radius: 12px;
}

.info-item:hover {
	transform: translateX(8px);
	border-left-color: #ff3b30;
	background: linear-gradient(
		135deg,
		rgba(255, 59, 48, 0.1) 0,
		rgba(91, 192, 190, 0.1) 100%
	);
}

.info-icon {
	font-size: 32px;
	flex-shrink: 0;
}

.info-text {
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.5;
}

.table {
	overflow-x: auto;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

table {
	width: 100%;
	border-collapse: collapse;
}

table thead th {
	background: linear-gradient(90deg, #ff3b30 0, #c9302c 100%);
	color: #fff;
	padding: 20px;
	text-align: left;
	font-weight: 700;
	font-size: 18px;
}

table tbody td {
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #e0e0e0;
	font-size: 16px;
}

table tbody tr:hover {
	background: rgba(255, 59, 48, 0.05);
}

table tbody tr:last-child td {
	border-bottom: none;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.step-card {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 40px 30px;
	position: relative;
}

.instruction-list li::before,
.step-number {
	background: linear-gradient(135deg, #ff3b30 0, #c9302c 100%);
}

.step-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(91, 192, 190, 0.2);
	border-color: rgba(91, 192, 190, 0.5);
}

.step-number {
	width: 60px;
	height: 60px;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 900;
	margin: 0 auto 24px;
	box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
}

.game-description,
.step-text {
	font-size: 15px;
	color: #b0b5c9;
	line-height: 1.6;
}

.bonuses-grid,
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.review-card {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 4px solid gold;
	border-radius: 16px;
	padding: 30px;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
	border-left-color: #ff3b30;
}

.review-rating {
	font-size: 20px;
	margin-bottom: 16px;
}

.review-text {
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.6;
	margin-bottom: 16px;
	font-style: italic;
}

.bonus-conditions div,
.review-author {
	font-size: 14px;
	color: #5bc0be;
	font-weight: 600;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.contact-card {
	background: linear-gradient(
		135deg,
		rgba(91, 192, 190, 0.1) 0,
		rgba(91, 192, 190, 0.05) 100%
	);
	border: 1px solid rgba(91, 192, 190, 0.3);
	border-radius: 16px;
	padding: 40px 30px;
}

.contact-card:hover,
.payment-method:hover {
	transform: translateY(-5px);
	border-color: #5bc0be;
	box-shadow: 0 12px 40px rgba(91, 192, 190, 0.2);
}

.contact-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.contact-title {
	font-size: 18px;
	font-weight: 700;
	color: #5bc0be;
	margin-bottom: 12px;
}

.contact-text {
	font-size: 16px;
	color: #e0e0e0;
}
.contact-text a {
	font-size: 16px;
	color: #e0e0e0;
}

.footer {
	background: linear-gradient(135deg, #0f2029 0, #0a1d27 100%);
	padding: 60px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-category,
.payment-method {
	padding: 35px 28px;
	transition: 0.3s;
}

.footer-text {
	font-size: 15px;
	color: #7a7f94;
	line-height: 1.8;
	margin-bottom: 30px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.footer-keywords {
	font-size: 13px;
	color: #5a5f74;
	font-style: italic;
}

.section-description {
	text-align: center;
	font-size: 18px;
	color: #b0b5c9;
	max-width: 900px;
	margin: 0 auto 50px;
	line-height: 1.7;
}

.game-category {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
}

.game-category:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 59, 48, 0.5);
	box-shadow: 0 12px 40px rgba(255, 59, 48, 0.15);
}

.game-icon {
	font-size: 52px;
	margin-bottom: 18px;
}

.game-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
}

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

.payment-method {
	background: linear-gradient(
		135deg,
		rgba(91, 192, 190, 0.1) 0,
		rgba(91, 192, 190, 0.05) 100%
	);
	border: 1px solid rgba(91, 192, 190, 0.3);
	border-radius: 16px;
}

.payment-icon {
	font-size: 48px;
	margin-bottom: 18px;
}

.payment-title {
	font-size: 22px;
	font-weight: 700;
	color: #5bc0be;
	margin-bottom: 18px;
}

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

.payment-item {
	font-size: 15px;
	color: #e0e0e0;
	line-height: 1.5;
}

.payment-note {
	background: rgba(255, 215, 0, 0.1);
	border-left: 4px solid gold;
	padding: 25px;
	border-radius: 12px;
	margin-top: 20px;
}

.bonus-item,
.instruction-list li {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
	position: relative;
}

.payment-note p {
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.7;
	margin: 0;
}

.app-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.app-subtitle {
	font-size: 26px;
	font-weight: 700;
	color: #5bc0be;
	margin-bottom: 20px;
}

.app-description {
	font-size: 17px;
	color: #b0b5c9;
	line-height: 1.7;
	margin-bottom: 30px;
}

.app-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 35px;
}

.app-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.5;
}

.feature-check {
	font-size: 20px;
	flex-shrink: 0;
}

.instruction-title {
	font-size: 22px;
	font-weight: 700;
	color: #ff3b30;
	margin-bottom: 20px;
}

.instruction-list {
	list-style: none;
	counter-reset: step-counter;
}

.instruction-list li {
	counter-increment: step-counter;
	padding: 18px 20px 18px 60px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 4px solid #5bc0be;
	border-radius: 12px;
	margin-bottom: 16px;
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.6;
}

.instruction-list li::before {
	content: counter(step-counter);
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
}

.bonus-item {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 35px 28px;
	transition: 0.3s;
}

.bonus-item:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 215, 0, 0.5);
	box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.bonus-badge {
	display: inline-block;
	background: linear-gradient(90deg, #ff3b30 0, #c9302c 100%);
	color: #fff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

.bonus-value {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(90deg, #ff3b30 0, gold 100%);
	-webkit-background-clip: text;
	background-clip: text;
	margin-bottom: 16px;
}

.bonus-item-description {
	font-size: 15px;
	color: #b0b5c9;
	line-height: 1.6;
	margin-bottom: 20px;
}

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

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.faq-item {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.02) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 4px solid #5bc0be;
	border-radius: 16px;
	padding: 30px;
	transition: 0.3s;
}

.faq-item:hover {
	transform: translateX(5px);
	border-left-color: #ff3b30;
	box-shadow: 0 8px 30px rgba(255, 59, 48, 0.1);
}

.faq-question {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
	line-height: 1.4;
}

.faq-answer {
	font-size: 15px;
	color: #b0b5c9;
	line-height: 1.7;
}

.about-text {
	max-width: 1000px;
	margin: 0 auto;
}

.about-text p {
	font-size: 17px;
	color: #e0e0e0;
	line-height: 1.8;
	margin-bottom: 25px;
}

.about-list li strong,
.about-text h3 {
	color: #5bc0be;
	font-weight: 700;
}

.about-text h3 {
	font-size: 26px;
	margin: 40px 0 20px;
}

.about-list {
	list-style: none;
	margin: 25px 0;
}

.about-list li {
	font-size: 16px;
	color: #e0e0e0;
	line-height: 1.7;
	padding: 16px 20px;
	margin-bottom: 12px;
	background: linear-gradient(
		135deg,
		rgba(91, 192, 190, 0.1) 0,
		rgba(91, 192, 190, 0.05) 100%
	);
	border-left: 4px solid #5bc0be;
	border-radius: 10px;
}

.features-section p {
	margin: 0 0 15px 0;
}

.features-section .img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.features-section ul,
.features-section ol {
	padding: 0 0 0 20px;
	margin: 15px auto;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 15px auto;
}

.pageMenu li a {
	color: white;
	text-decoration: none;
}
.pageMenu li a:hover {
	color: #c9302c;
}

@media (max-width: 992px) {
	.app-content,
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-image {
		justify-content: center;
	}

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

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

	.faq-grid,
	.info-list {
		grid-template-columns: 1fr;
	}

	.bonuses-grid,
	.games-grid,
	.payment-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		gap: 20px;
	}

	.logo-image {
		height: 38px;
	}

	.hero {
		padding: 60px 0;
	}

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

	.hero-description,
	.section-description {
		font-size: 16px;
	}

	.app-buttons,
	.hero-buttons {
		flex-direction: column;
	}

	.app-buttons .btn-large,
	.btn-large {
		width: 100%;
	}

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

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

	.bonuses-grid,
	.contact-grid,
	.faq-grid,
	.features-grid,
	.games-grid,
	.info-list,
	.payment-grid,
	.reviews-grid,
	.steps-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.logo-image {
		height: 32px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 14px;
	}

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

	.bonus-title,
	.section-title {
		font-size: 24px;
	}

	.bonus-amount {
		font-size: 32px;
	}

	.bonus-value {
		font-size: 26px;
	}

	.countdown-timer {
		font-size: 24px;
		letter-spacing: 2px;
	}

	.bonus-item-title,
	.game-title,
	.payment-title {
		font-size: 20px;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bonus-section,
.countdown-section,
.features-section,
.hero {
	animation: 0.8s ease-out fadeIn;
}

.footer__list {
	padding: 0 0 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
}
.footer__list li a {
	color: #7a7f94;
	text-decoration: none;
}
.footer__list li a:hover {
	color: white;
}

.header__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
}
.header__list li a {
	color: #fff;
	text-decoration: none;
}
.header__list li a:hover {
	color: #7a7f94;
}
