
* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
html {
	overflow-x: hidden;
	width: 100%;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
body {
	max-width: 1300px;
	margin: 0 auto;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 16px;
	background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
	background-attachment: fixed;
	color: #ffffff;
	padding-top: 120px; /* Увеличено для навигации */
	overflow-x: hidden;
	width: 100%;
	position: relative;
}
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}
.conteiner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(26, 26, 46, 0.95) 100%);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
	border-bottom: 2px solid rgba(255, 215, 0, 0.2);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;
}
.header_conatiner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 90px;
}
.header_logo img {
	height: 41px;
	width: 100%;
	object-fit: contain;
}
.header_button {
	display: flex;
	gap: 20px;
}

/* Навигационное меню */
.navigation {
	position: fixed;
	top: 60px; /* Под header */
	left: 0;
	width: 100%;
	background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(255, 215, 0, 0.15);
	z-index: 999;
	padding: 10px 0;
	margin-top: 20px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs (хлебные крошки) */
.breadcrumbs {
	padding: 15px 0;
	margin-bottom: 20px;
}
.breadcrumbs ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}
.breadcrumbs li {
	display: flex;
	align-items: center;
	margin: 0;
}
.breadcrumbs li:not(:last-child)::after {
	content: "›";
	margin-left: 8px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 16px;
}
.breadcrumbs a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 400;
}
.breadcrumbs a:hover {
	color: #FFD700;
}
.breadcrumbs li:last-child {
	color: #ffffff;
	font-weight: 500;
}
@media (max-width: 768px) {
	.breadcrumbs {
		padding: 10px 0;
		margin-bottom: 15px;
	}
	.breadcrumbs ol {
		font-size: 12px;
		gap: 5px;
	}
	.breadcrumbs li:not(:last-child)::after {
		margin-left: 5px;
	}
}
.nav_conteiner {
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.nav-link {
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
}
.nav-link:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
	border-color: #FFD700;
	color: #FFD700;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.nav-link.active {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	border-color: #FFD700;
	color: #0a0a0f;
	font-weight: 700;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.2);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	body {
		padding-top: 140px; /* Больше места для мобильной навигации */
	}
	.header_button {
		gap: 8px;
	}
	.nav_conteiner {
		gap: 10px;
		padding: 10px;
	}
	.nav-link {
		font-size: 12px;
		padding: 6px 10px;
	}
}

.btn {
	border: 2px solid #FFD700;
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #0a0a0f;
	border-radius: 8px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
	background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 165, 0, 0.2); }
	50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 165, 0, 0.3); }
	100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 165, 0, 0.2); }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #0a0a0f;
	border-color: #FFD700;
}
.button_2 {
	background-color: transparent;
	color: #FFD700;
	border-color: #FFD700;
}
.button_2:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
	color: #FFD700;
	border-color: #FFD700;
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.4;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
	letter-spacing: 2px;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: 700;
	color: #FFD700;
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
	border-left: 4px solid #FFD700;
	padding-left: 15px;
	margin-top: 30px;
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main p {
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.4;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #1a1a1a;
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}

/* Дополнительные стили для сгенерированного контента */
h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.6) 0%, rgba(10, 10, 15, 0.8) 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

th, td {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 12px;
  text-align: left;
}

th {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
  font-weight: 700;
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

/* Footer Styles */
.footer {
	background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
	border-top: 3px solid #FFD700;
	padding: 50px 0 20px;
	margin-top: 60px;
	box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.2);
	position: relative;
}
.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-section h3 {
	color: #FFD700;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}
.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.footer-license {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #FFD700;
	font-size: 13px;
	line-height: 1.8;
	box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 400;
	transition: color 0.3s ease;
	display: inline-block;
}
.footer-links a:hover {
	color: #FFD700;
	transform: translateX(5px);
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.footer-contacts {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-contacts li {
	margin-bottom: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}
.footer-contacts a {
	color: #FFD700;
	font-weight: 500;
	transition: all 0.3s ease;
}
.footer-contacts a:hover {
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.footer-contacts a:hover {
	opacity: 0.8;
}
.footer-age {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #0a0a0f;
	padding: 10px;
	border-radius: 5px;
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}
.payment-methods {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}
.payment-icon {
	background: rgba(255, 255, 255, 0.1);
	padding: 8px 12px;
	border-radius: 5px;
	font-size: 12px;
	white-space: nowrap;
	transition: all 0.3s ease;
}
.payment-icon:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
	border-color: #FFD700;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.payment-secure {
	font-size: 13px;
	color: #FFD700;
	font-weight: 600;
	text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	margin: 8px 0;
	line-height: 1.6;
}
.footer-disclaimer {
	font-size: 12px !important;
	color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
	.footer {
		padding: 30px 0 20px;
		margin-top: 40px;
	}
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.payment-methods {
		justify-content: center;
	}
	.footer-bottom p {
		font-size: 12px;
	}
}

/* Section Title */
.section-title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
	margin: 60px auto;
	padding: 40px 20px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
	border-radius: 15px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 215, 0, 0.05);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.stat-card {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.stat-icon {
	font-size: 48px;
	margin-bottom: 15px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Winners Section */
.winners-section {
	margin: 60px auto;
	padding: 40px 20px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
	border-radius: 15px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 215, 0, 0.05);
	overflow: hidden;
}

.winners-ticker {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 20px 0;
	scrollbar-width: thin;
	scrollbar-color: #FFD700 rgba(255, 255, 255, 0.1);
}

.winners-ticker::-webkit-scrollbar {
	height: 8px;
}

.winners-ticker::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

.winners-ticker::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.winner-item {
	min-width: 280px;
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.winner-item:hover {
	transform: translateY(-3px);
	border-color: #FFD700;
	box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
}

.winner-name {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
}

.winner-game {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.winner-amount {
	font-size: 22px;
	font-weight: 700;
	color: #FFD700;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

/* Reviews Summary */
.reviews-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.summary-card {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.summary-rating {
	font-size: 32px;
	font-weight: 700;
	color: #FFD700;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.summary-number {
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.summary-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
	margin: 60px auto;
	padding: 40px 20px;
	display: block !important;
	flex-direction: column;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.review-card {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.2);
	border-radius: 15px;
	padding: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.review-card:hover {
	transform: translateY(-3px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.reviewer-info {
	display: flex;
	gap: 12px;
	align-items: center;
}

.reviewer-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #0a0a0f;
	box-shadow: 0 2px 12px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.reviewer-name {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 3px;
}

.review-date {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.review-rating {
	font-size: 16px;
	color: #FFD700;
}

.review-text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
}

.review-verified {
	font-size: 13px;
	color: #FFD700;
	font-weight: 600;
	display: inline-block;
	padding: 6px 12px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
	border-radius: 6px;
	border-left: 3px solid #FFD700;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.reviews-cta {
	text-align: center;
	margin-top: 40px;
}

/* Trust Badges Section */
.trust-badges-section {
	margin: 60px auto 40px;
	padding: 40px 20px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
	border-radius: 15px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 0 50px rgba(255, 215, 0, 0.05);
	display: block !important;
}

.trust-badges {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.badge-item {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 25px 15px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.badge-item:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.badge-icon {
	font-size: 40px;
	margin-bottom: 12px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.badge-title {
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 5px;
}

.badge-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Timeline */
.timeline {
	position: relative;
	padding: 20px 0;
	margin: 40px 0;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, #FFD700 0%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 165, 0, 0.3) 100%);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
}

.timeline-year {
	flex: 0 0 80px;
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.timeline-content {
	flex: 1;
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 20px;
	margin-left: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.timeline-content h3 {
	color: #FFD700;
	margin-bottom: 10px;
	font-size: 18px;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.timeline-content p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Values Grid */
.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.value-card {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.2);
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.value-card:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.value-icon {
	font-size: 48px;
	margin-bottom: 15px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 12px;
}

.value-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Team Grid */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.team-member {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.2);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.team-member:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.member-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 32px;
	color: #0a0a0f;
	margin: 0 auto 20px;
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-member h3 {
	color: #ffffff;
	font-size: 20px;
	margin-bottom: 5px;
}

.member-role {
	color: #FFD700;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.team-member p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* Awards Grid */
.awards-section {
	display: block !important;
}

.awards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 40px 0;
}

.award-item {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.award-item:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.award-icon {
	font-size: 48px;
	margin-bottom: 15px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.award-title {
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.award-org {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

/* Partners Section */
.partners-section {
	margin: 40px 0;
	display: block !important;
}

.partners-section h3 {
	color: #FFD700;
	font-size: 20px;
	margin-bottom: 20px;
	text-align: center;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
	font-weight: 700;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 15px;
	margin-bottom: 40px;
}

.partner-logo {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.2);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.partner-logo:hover {
	border-color: #FFD700;
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
	color: #FFD700;
}

/* CTA Block */
.cta-block {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	margin: 40px 0;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}
.cta-block::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: shimmer 3s infinite;
}
@keyframes shimmer {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.cta-block h3 {
	color: #0a0a0f;
	font-size: 28px;
	margin-bottom: 15px;
	font-weight: 900;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.cta-block p {
	color: #0a0a0f;
	font-size: 16px;
	margin-bottom: 25px;
	font-weight: 600;
	position: relative;
	z-index: 1;
}

/* External Ratings */
/* External Ratings Section */
.ratings-section {
	display: block !important;
}

.external-ratings {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin: 40px auto 60px;
}

.rating-widget {
	background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.05);
	backdrop-filter: blur(10px);
}

.rating-widget:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2);
}

.rating-platform {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
}

.rating-stars {
	font-size: 24px;
	margin-bottom: 10px;
}

.rating-score {
	font-size: 32px;
	font-weight: 700;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.rating-reviews {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

/* Social Links */
.social-links {
	display: flex;
	gap: 12px;
	margin: 15px 0;
	justify-content: flex-start;
}

.social-links a {
	font-size: 24px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	display: inline-block;
}

.social-links a:hover {
	transform: scale(1.2);
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.section-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.timeline::before {
		left: 30px;
	}
	
	.timeline-item {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 60px;
	}
	
	.timeline-year {
		position: absolute;
		left: 0;
		flex: 0;
	}
	
	.timeline-content {
		margin-left: 0;
		width: 100%;
	}
	
	.values-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.team-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.awards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.cta-block {
		padding: 30px 20px;
	}
	
	.cta-block h3 {
		font-size: 22px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.stat-card {
		padding: 20px 15px;
	}

	.stat-icon {
		font-size: 36px;
	}

	.stat-number {
		font-size: 28px;
	}

	.stat-label {
		font-size: 12px;
	}

	.winners-ticker {
		gap: 15px;
	}

	.winner-item {
		min-width: 240px;
		padding: 15px;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.review-card {
		padding: 20px;
	}

	.trust-badges {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.badge-item {
		padding: 20px 10px;
	}

	.badge-icon {
		font-size: 32px;
	}

	.badge-title {
		font-size: 13px;
	}

	.badge-desc {
		font-size: 11px;
	}
}

/* Супер CTR баннер */
.ctr-banner {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
	border: 3px solid #FFD700;
	border-radius: 20px;
	padding: 30px;
	margin: 30px auto;
	max-width: 1200px;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	animation: glow-pulse 3s ease-in-out infinite;
}

.ctr-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
	animation: shimmer 4s linear infinite;
}

.ctr-banner-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.ctr-banner-text {
	flex: 1;
	min-width: 300px;
}

.ctr-banner-title {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
	margin-bottom: 15px;
	line-height: 1.2;
	letter-spacing: 1px;
}

.ctr-banner-subtitle {
	font-size: 20px;
	color: #FFD700;
	font-weight: 700;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.ctr-banner-bonus {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.bonus-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
	border: 2px solid #FFD700;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #FFD700;
	text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
	font-size: 24px;
	animation: bounce 2s ease-in-out infinite;
}

.ctr-banner-button {
	flex-shrink: 0;
}

.ctr-banner-btn {
	display: inline-block;
	padding: 20px 50px;
	font-size: 24px;
	font-weight: 900;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #0a0a0f;
	border: 3px solid #FFD700;
	border-radius: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	animation: button-pulse 2s ease-in-out infinite;
}

.ctr-banner-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.ctr-banner-btn:hover::before {
	width: 300px;
	height: 300px;
}

.ctr-banner-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6), inset 0 2px 15px rgba(255, 255, 255, 0.4);
	background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.ctr-banner-btn:active {
	transform: translateY(-2px) scale(1.02);
}

@keyframes glow-pulse {
	0%, 100% {
		box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.1);
	}
	50% {
		box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.4), inset 0 2px 15px rgba(255, 255, 255, 0.15);
	}
}

@keyframes shimmer {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes button-pulse {
	0%, 100% {
		box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3);
	}
	50% {
		box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6), inset 0 2px 15px rgba(255, 255, 255, 0.4);
	}
}

@media (max-width: 768px) {
	.ctr-banner {
		padding: 20px;
		margin: 20px auto;
		border-radius: 15px;
	}
	
	.ctr-banner-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.ctr-banner-title {
		font-size: 24px;
	}
	
	.ctr-banner-subtitle {
		font-size: 16px;
	}
	
	.ctr-banner-bonus {
		justify-content: center;
		gap: 10px;
	}
	
	.bonus-item {
		padding: 8px 15px;
		font-size: 14px;
	}
	
	.ctr-banner-btn {
		padding: 15px 40px;
		font-size: 18px;
		width: 100%;
		max-width: 300px;
	}
}