
* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
body {
	max-width: 1300px;
   margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #190127;
	color: #ffffff;
	padding-top: 120px; /* Увеличено для навигации */
}
.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: #190127;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	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: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	z-index: 999;
	padding: 10px 0;
	margin-top: 20px;
}

/* 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: #b633fe;
}
.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-color: rgba(255, 255, 255, 0.1);
	border-color: #b633fe;
}
.nav-link.active {
	background-color: #b633fe;
	border-color: #b633fe;
}

@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: 1px solid #b633fe;
	display: inline-block;
	padding: 10px 20px;
	background-color: #b633fe;
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: box-shadow 0.3s ease-in-out;
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 5px #b633fe; }
	50% { box-shadow: 0 0 20px #b633fe; }
	100% { box-shadow: 0 0 5px #b633fe; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background-color: #b633fe;
}
.button_2 {
	background-color: transparent;
}
.button_2:hover {
	background-color: #b633fe;
}

h1 {
	font-size: 50px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: bold;
}
@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: #190127;
	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: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}

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;
}

th, td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  text-align: left;
}

th {
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/* Footer Styles */
.footer {
	background: linear-gradient(180deg, #190127 0%, #0f0119 100%);
	border-top: 2px solid #b633fe;
	padding: 50px 0 20px;
	margin-top: 60px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-section h3 {
	color: #b633fe;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 600;
}
.footer-section p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.footer-license {
	background: rgba(182, 51, 254, 0.1);
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #b633fe;
	font-size: 13px;
	line-height: 1.8;
}
.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: #b633fe;
	transform: translateX(5px);
}
.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: #b633fe;
	font-weight: 400;
	transition: opacity 0.3s ease;
}
.footer-contacts a:hover {
	opacity: 0.8;
}
.footer-age {
	background: #ff4444;
	color: #ffffff;
	padding: 10px;
	border-radius: 5px;
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
}
.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: rgba(182, 51, 254, 0.2);
	transform: translateY(-2px);
}
.payment-secure {
	font-size: 13px;
	color: #4CAF50;
	font-weight: 500;
}
.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(182, 51, 254, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
	border-radius: 15px;
}

.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, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 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);
}

.stat-card:hover {
	transform: translateY(-5px);
	border-color: #b633fe;
	box-shadow: 0 8px 25px rgba(182, 51, 254, 0.4);
}

.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;
	color: #b633fe;
	margin-bottom: 10px;
	text-shadow: 0 2px 8px rgba(182, 51, 254, 0.5);
}

.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, 140, 0, 0.05) 100%);
	border-radius: 15px;
	overflow: hidden;
}

.winners-ticker {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 20px 0;
	scrollbar-width: thin;
	scrollbar-color: #b633fe 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: #b633fe;
	border-radius: 4px;
}

.winner-item {
	min-width: 280px;
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 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);
}

.winner-item:hover {
	transform: translateY(-3px);
	border-color: #FFD700;
	box-shadow: 0 6px 20px 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, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.3);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.summary-rating {
	font-size: 32px;
	font-weight: 700;
	color: #FFD700;
	margin-bottom: 10px;
}

.summary-number {
	font-size: 36px;
	font-weight: 700;
	color: #b633fe;
	margin-bottom: 10px;
}

.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;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 40px;
}

.review-card {
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.2);
	border-radius: 15px;
	padding: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
	transform: translateY(-3px);
	border-color: #b633fe;
	box-shadow: 0 8px 25px rgba(182, 51, 254, 0.3);
}

.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, #b633fe 0%, #8a2be2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(182, 51, 254, 0.5);
}

.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: #4CAF50;
	font-weight: 500;
	display: inline-block;
	padding: 6px 12px;
	background: rgba(76, 175, 80, 0.1);
	border-radius: 6px;
	border-left: 3px solid #4CAF50;
}

.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(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
	border-radius: 15px;
}

.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, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(76, 175, 80, 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);
}

.badge-item:hover {
	transform: translateY(-5px);
	border-color: #4CAF50;
	box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.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: 2px;
	height: 100%;
	background: linear-gradient(180deg, #b633fe 0%, rgba(182, 51, 254, 0.3) 100%);
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
}

.timeline-year {
	flex: 0 0 80px;
	font-size: 24px;
	font-weight: 700;
	color: #b633fe;
	text-align: center;
}

.timeline-content {
	flex: 1;
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.3);
	border-radius: 12px;
	padding: 20px;
	margin-left: 20px;
}

.timeline-content h3 {
	color: #b633fe;
	margin-bottom: 10px;
	font-size: 18px;
}

.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, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.2);
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	border-color: #b633fe;
	box-shadow: 0 8px 25px rgba(182, 51, 254, 0.3);
}

.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, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.2);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
	border-color: #b633fe;
	box-shadow: 0 8px 25px rgba(182, 51, 254, 0.3);
}

.member-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #b633fe 0%, #8a2be2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 32px;
	color: #ffffff;
	margin: 0 auto 20px;
	box-shadow: 0 4px 15px rgba(182, 51, 254, 0.5);
}

.team-member h3 {
	color: #ffffff;
	font-size: 20px;
	margin-bottom: 5px;
}

.member-role {
	color: #b633fe;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
}

.team-member p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* Awards Grid */
.awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.award-item {
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.award-item:hover {
	transform: translateY(-5px);
	border-color: #FFD700;
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.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;
}

.partners-section h3 {
	color: #b633fe;
	font-size: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	margin-bottom: 40px;
}

.partner-logo {
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(182, 51, 254, 0.2);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s ease;
}

.partner-logo:hover {
	border-color: #b633fe;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(182, 51, 254, 0.3);
}

/* CTA Block */
.cta-block {
	background: linear-gradient(135deg, #b633fe 0%, #8a2be2 100%);
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	margin: 40px 0;
	box-shadow: 0 8px 25px rgba(182, 51, 254, 0.4);
}

.cta-block h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 15px;
}

.cta-block p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	margin-bottom: 25px;
}

/* External Ratings */
.external-ratings {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 40px auto 60px;
}

.rating-widget {
	background: linear-gradient(145deg, #1f0b2e 0%, #2a1040 100%);
	border: 2px solid rgba(76, 175, 80, 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);
}

.rating-widget:hover {
	transform: translateY(-5px);
	border-color: #4CAF50;
	box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.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;
	color: #4CAF50;
	margin-bottom: 8px;
}

.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;
	}
}