
:root {
	--primary-color: #4fd5ad;
	--secondary-color: #c9dc05;
	--text-color: #ffffff;
	--accent-color: #8e7e29;
}

* {
	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: #c9dc05;
	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: #4fd5ad;
	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;
}
@media (max-width: 768px) {
	.header_logo img {
		height: 35px;
	}
}
@media (max-width: 480px) {
	.header_logo img {
		height: 30px;
	}
}
.header_button {
	display: flex;
	gap: 20px;
	align-items: center;
}

/* Навигационное меню */
.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;
}
.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: #8e7e29;
}
.nav-link.active {
	background-color: #8e7e29;
	border-color: #8e7e29;
}

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

.btn {
	border: 1px solid #8e7e29;
	display: inline-block;
	padding: 10px 20px;
	background-color: #8e7e29;
	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 #8e7e29; }
	50% { box-shadow: 0 0 20px #8e7e29, 0 0 30px #8e7e29; }
	100% { box-shadow: 0 0 5px #8e7e29; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

@keyframes pulse-animation {
	0% { 
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
	}
	50% { 
		transform: scale(1.02);
		box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.05);
	}
	100% { 
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
	}
}

@keyframes slide-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce-in {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes shine {
	0% {
		background-position: -200px;
	}
	100% {
		background-position: 200px;
	}
}

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

.pulse-animation {
	animation: pulse-animation 2s ease-in-out infinite;
}

.slide-in-animation {
	animation: slide-in-up 0.6s ease-out forwards;
}

.bounce-in-animation {
	animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.float-animation {
	animation: float 3s ease-in-out infinite;
}

/* Дополнительные анимации */
@keyframes rotate-scale {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

@keyframes wiggle {
	0%, 100% {
		transform: rotate(-3deg);
	}
	50% {
		transform: rotate(3deg);
	}
}

@keyframes color-shift {
	0%, 100% {
		filter: hue-rotate(0deg);
	}
	50% {
		filter: hue-rotate(20deg);
	}
}

@keyframes zoom-in-out {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Применение анимаций к элементам */
.rotate-animation {
	animation: rotate-scale 10s linear infinite;
}

.shimmer-effect {
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	background-size: 1000px 100%;
	animation: shimmer 3s infinite;
}

.wiggle-animation:hover {
	animation: wiggle 0.5s ease-in-out;
}

.color-shift-animation {
	animation: color-shift 5s ease-in-out infinite;
}

.zoom-animation {
	animation: zoom-in-out 2s ease-in-out infinite;
}

/* Эффекты при наведении */
.hover-lift {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-glow:hover {
	box-shadow: 0 0 30px #8e7e29;
	filter: brightness(1.2);
}

.hover-rotate:hover {
	transform: rotate(5deg) scale(1.05);
}

/* Анимация для текста */
@keyframes text-glow {
	0%, 100% {
		text-shadow: 0 0 10px #8e7e29;
	}
	50% {
		text-shadow: 0 0 20px #8e7e29, 0 0 30px #8e7e29;
	}
}

.text-glow-animation {
	animation: text-glow 2s ease-in-out infinite;
}

/* Градиентная анимация для фона */
@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.gradient-bg {
	background: linear-gradient(45deg, #4fd5ad, #8e7e29, #c9dc05);
	background-size: 200% 200%;
	animation: gradient-shift 5s ease infinite;
}

/* Эффект частиц (звёздочки) */
@keyframes particles {
	0% {
		opacity: 0;
		transform: translateY(0) scale(0);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(-100px) scale(1);
	}
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #8e7e29;
	border-radius: 50%;
	animation: particles 3s ease-in-out infinite;
}

/* Пульсирующая точка (индикатор активности) */
@keyframes pulse-dot {
	0%, 100% {
		box-shadow: 0 0 0 0 #8e7e29;
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
}

.pulse-dot {
	animation: pulse-dot 2s ease-in-out infinite;
}

/* Эффект свечения границы */
@keyframes border-glow {
	0%, 100% {
		border-color: #8e7e29;
		box-shadow: 0 0 5px #8e7e29;
	}
	50% {
		border-color: #ffffff;
		box-shadow: 0 0 20px #8e7e29;
	}
}

.border-glow-animation {
	animation: border-glow 2s ease-in-out infinite;
}

/* Дополнительные респонсивные стили */
@media (max-width: 768px) {
  .slots-showcase {
    padding: 20px 15px;
    margin: 20px 0;
  }
  
  .slots-showcase h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .slot-icon {
    font-size: 36px;
  }
  
  .slot-card {
    padding: 15px;
  }
  
  .slot-card h4 {
    font-size: 18px;
  }
  
  .slot-desc {
    font-size: 12px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .advantage-card {
    padding: 20px;
  }
  
  .advantage-icon {
    font-size: 32px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .info-block {
    padding: 15px;
    margin: 15px 0;
  }
}

/* Улучшенные тени и глубина */
.depth-1 {
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.depth-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.depth-3 {
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.depth-4 {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.depth-5 {
  box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

/* Эффект стекла (glassmorphism) */
.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Градиентный текст */
.gradient-text {
  background: linear-gradient(45deg, #8e7e29, #fff, #8e7e29);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

/* Неоновый эффект */
.neon-effect {
  text-shadow: 
    0 0 5px #8e7e29,
    0 0 10px #8e7e29,
    0 0 20px #8e7e29,
    0 0 40px #8e7e29;
}

/* Стили для загрузки/скелетон */
@keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s infinite;
}

/* Курсор указателя для интерактивных элементов */
.slot-card,
.advantage-card,
.btn {
  cursor: pointer;
  user-select: none;
}

/* Улучшение кнопок */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn:active {
  transform: scale(0.95);
}

/* Эффект ripple для кликов */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.button_1 {
	background-color: #8e7e29;
}
.button_2 {
	background-color: transparent;
}
.button_2:hover {
	background-color: #8e7e29;
}

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: 90%;
	max-width: 520px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #4fd5ad 0%, #c9dc05 100%);
	color: #ffffff;
	border-radius: 20px;
	padding: 25px 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px #8e7e29;
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
	border: 2px solid #8e7e29;
	animation: border-glow 2s ease-in-out infinite;
	z-index: 9999;
}
@media (max-width: 768px) {
	.popup {
		width: 90%;
		max-width: 400px;
		padding: 20px 15px;
		gap: 15px;
		border-radius: 15px;
		bottom: 15px;
	}
}
@media (max-width: 480px) {
	.popup {
		width: 95%;
		max-width: 360px;
		padding: 15px 10px;
		gap: 10px;
		border-radius: 12px;
		bottom: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: center;
		gap: 10px;
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%);
	animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, border-glow 2s ease-in-out infinite;
}

.popup .block_img img {
	width: 80px;
	height: 80px;
	animation: rotate-scale 10s linear infinite;
}
@media (max-width: 768px) {
	.popup .block_img img {
		width: 60px;
		height: 60px;
	}
}
@media (max-width: 480px) {
	.popup .block_img img {
		width: 50px;
		height: 50px;
	}
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.popup-close:hover {
	color: rgba(255, 255, 255, 0.9);
	transform: scale(1.1);
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 20px;
		right: 10px;
		top: 8px;
		width: 26px;
		height: 26px;
	}
}
@media (max-width: 480px) {
	.popup-close {
		font-size: 18px;
		right: 8px;
		top: 6px;
		width: 24px;
		height: 24px;
	}
}
.block_txt {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	flex-shrink: 0;
}
.block_txt span {
	font-size: 36px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 16px;
	margin-top: 5px;
	line-height: 1.2;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 13px;
		margin-top: 3px;
	}
}
@media (max-width: 480px) {
	.block_txt p {
		font-size: 11px;
		margin-top: 2px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
.block_btn .btn {
	padding: 12px 25px;
	font-size: 16px;
	white-space: nowrap;
	min-width: 120px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
	.block_btn .btn {
		padding: 10px 20px;
		font-size: 14px;
		min-width: 100px;
	}
}
@media (max-width: 480px) {
	.block_btn {
		font-size: 12px;
	}
	.block_btn .btn {
		padding: 8px 16px;
		font-size: 13px;
		min-width: 90px;
	}
}

/* Дополнительные стили для сгенерированного контента */
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;
}

/* Стили для блока слотов */
.slots-showcase {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

.slots-showcase h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  background: linear-gradient(45deg, #8e7e29, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

@media (max-width: 768px) {
  .slots-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.slot-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.slot-card:hover::before {
  left: 100%;
}

.slot-card:hover {
  transform: translateY(-5px);
  border-color: #8e7e29;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slot-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.slot-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .slot-image {
    height: 150px;
  }
}

.slot-card h4 {
  color: #ffffff;
  margin: 10px 0;
  font-size: 20px;
  text-align: center;
}

.slot-rtp {
  text-align: center;
  color: #8e7e29;
  font-weight: bold;
  margin: 5px 0;
  font-size: 14px;
}

.slot-desc {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.5;
  margin: 15px 0;
  text-align: center;
}

.slot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.badge {
  background: #8e7e29;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.slots-cta {
  text-align: center;
  margin-top: 30px;
}

/* Стили для преимуществ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.advantage-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  border-color: #8e7e29;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.advantage-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.advantage-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #8e7e29;
}

.advantage-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* Стили для информационных блоков */
.info-block {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-left: 4px solid #8e7e29;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.info-block h3 {
  color: #8e7e29;
  margin-bottom: 10px;
}

/* Стили для статистики */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #8e7e29;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ====================================
   ХЛЕБНЫЕ КРОШКИ (BREADCRUMBS)
   ==================================== */
.breadcrumbs {
	padding: 10px 0;
	margin-bottom: 15px;
	background: transparent;
	border-radius: 4px;
}

.breadcrumbs-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.breadcrumb-item {
	display: inline-flex;
	align-items: center;
}

.breadcrumb-link {
	color: #8e7e29;
	text-decoration: none;
	padding: 3px 8px;
	border-radius: 3px;
	transition: all 0.3s ease;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.breadcrumb-link:hover {
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
	padding: 3px 8px;
	font-size: 12px;
}

.breadcrumb-separator {
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	user-select: none;
	pointer-events: none;
	margin: 0 4px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
	.breadcrumbs {
		padding: 10px 0;
		margin-bottom: 15px;
	}
	
	.breadcrumb-link,
	.breadcrumb-item.active {
		font-size: 13px;
		padding: 4px 8px;
	}
	
	.breadcrumb-separator {
		font-size: 14px;
	}
}

/* ====================================
   FAQ БЛОК (ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ)
   ==================================== */
.faq-section {
	background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	border: 1px solid rgba(255,255,255,0.1);
}

.faq-section h2 {
	color: #8e7e29;
	margin-bottom: 30px;
	font-size: 28px;
	text-align: center;
	text-shadow: 0 0 20px rgba(8, 158, 78, 0.5);
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.faq-item {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255,255,255,0.05);
}

.faq-item:hover {
	border-color: #8e7e29;
	box-shadow: 0 5px 20px rgba(8, 158, 78, 0.2);
	transform: translateX(5px);
}

.faq-question {
	background: linear-gradient(90deg, rgba(8, 158, 78, 0.2), transparent);
	color: #ffffff;
	padding: 18px 20px;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding-right: 50px;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: linear-gradient(90deg, rgba(8, 158, 78, 0.3), transparent);
	color: #8e7e29;
}

.faq-question::after {
	content: '▼';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #8e7e29;
	transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
	padding: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	font-size: 15px;
}

.faq-answer a {
	color: #8e7e29;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.faq-answer a:hover {
	color: #fff;
	text-shadow: 0 0 10px #8e7e29;
}

.faq-answer p {
	margin-bottom: 15px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

/* Адаптив для FAQ */
@media (max-width: 768px) {
	.faq-section {
		padding: 20px;
		margin: 30px 0;
	}
	
	.faq-section h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.faq-question {
		font-size: 16px;
		padding: 15px 40px 15px 15px;
	}
	
	.faq-answer {
		padding: 15px;
		font-size: 14px;
	}
	
	.breadcrumbs {
		padding: 8px 0;
	}
	
	.breadcrumb-link,
	.breadcrumb-item.active {
		font-size: 11px;
		padding: 2px 6px;
	}
}

/* ====================================
   УНИКАЛЬНЫЕ ИНТЕРАКТИВНЫЕ БЛОКИ
   ==================================== */

/* Статистический виджет */
.stats-widget {
	background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border-radius: 12px;
	padding: 30px;
	margin: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.stats-header {
	text-align: center;
	margin-bottom: 25px;
}

.stats-header h3 {
	color: #8e7e29;
	font-size: 24px;
	margin-bottom: 8px;
}

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

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	background: rgba(0,0,0,0.3);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(8, 158, 78, 0.3);
}

.stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #8e7e29;
	margin-bottom: 8px;
	display: block;
}

.stat-label {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

/* История успеха */
.success-story {
	background: linear-gradient(135deg, rgba(8, 158, 78, 0.1), rgba(255,255,255,0.05));
	border-left: 4px solid #8e7e29;
	border-radius: 12px;
	padding: 25px;
	margin: 30px 0;
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.story-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.story-header h3 {
	color: #8e7e29;
	font-size: 22px;
	margin: 0;
}

.story-badge {
	background: #8e7e29;
	color: #ffffff;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 11px;
	font-weight: bold;
}

.story-content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.story-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #8e7e29;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	flex-shrink: 0;
}

.story-text {
	flex: 1;
}

.story-text p {
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
	margin-bottom: 15px;
}

.story-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
}

.story-footer {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.responsible-gaming {
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	font-style: italic;
}

/* Сравнительная таблица */
.comparison-table-wrapper {
	background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border-radius: 12px;
	padding: 30px;
	margin: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
}

.comparison-table-wrapper h3 {
	color: #8e7e29;
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.comparison-table {
	overflow-x: auto;
}

.comparison-table table {
	width: 100%;
	border-collapse: collapse;
	background: rgba(0,0,0,0.3);
}

.comparison-table th {
	background: #8e7e29;
	color: #ffffff;
	padding: 15px;
	text-align: center;
	font-weight: bold;
}

.comparison-table td {
	padding: 15px;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.1);
}

.comparison-table td.best {
	background: rgba(8, 158, 78, 0.2);
	color: #8e7e29;
	font-weight: bold;
}

.comparison-note {
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	margin-top: 15px;
	text-align: center;
	font-style: italic;
}

/* Экспертный блок */
.expert-block {
	background: linear-gradient(135deg, rgba(8, 158, 78, 0.1), rgba(255,255,255,0.05));
	border-radius: 12px;
	padding: 25px;
	margin: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
	position: relative;
}

.expert-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

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

.expert-header h3 {
	color: #8e7e29;
	font-size: 22px;
	margin: 0;
}

.expert-content {
	position: relative;
}

.expert-quote {
	position: relative;
	padding-left: 20px;
	border-left: 3px solid #8e7e29;
	margin-bottom: 20px;
}

.expert-quote p {
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
	font-size: 16px;
	font-style: italic;
}

.expert-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.expert-name {
	font-size: 16px;
	font-weight: bold;
	color: #8e7e29;
}

.expert-title {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

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

/* Интерактивный гайд */
.interactive-guide {
	background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border-radius: 12px;
	padding: 30px;
	margin: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
}

.interactive-guide h3 {
	color: #8e7e29;
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.guide-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
}

.guide-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 120px;
	padding: 15px;
	background: rgba(0,0,0,0.3);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.guide-step.completed {
	background: rgba(8, 158, 78, 0.2);
	border: 2px solid #8e7e29;
}

.guide-step.pending {
	opacity: 0.6;
}

.step-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #8e7e29;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
}

.step-icon {
	font-size: 24px;
}

.step-text {
	font-size: 13px;
	text-align: center;
	color: rgba(255,255,255,0.9);
}

.step-connector {
	width: 50px;
	height: 2px;
	background: rgba(255,255,255,0.2);
	flex-shrink: 0;
}

.guide-note {
	text-align: center;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	margin-top: 20px;
}

/* Калькулятор бонусов */
.bonus-calculator {
	background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
	border-radius: 12px;
	padding: 30px;
	margin: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
}

.calculator-header {
	text-align: center;
	margin-bottom: 25px;
}

.calculator-header h3 {
	color: #8e7e29;
	font-size: 24px;
	margin-bottom: 8px;
}

.calculator-header p {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}

.calculator-content {
	max-width: 500px;
	margin: 0 auto;
}

.calculator-input {
	margin-bottom: 20px;
}

.calculator-input label {
	display: block;
	margin-bottom: 8px;
	color: rgba(255,255,255,0.9);
	font-size: 14px;
	font-weight: 500;
}

.calculator-input input {
	width: 100%;
	padding: 12px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 8px;
	background: rgba(0,0,0,0.3);
	color: #ffffff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.calculator-input input:focus {
	outline: none;
	border-color: #8e7e29;
	box-shadow: 0 0 10px rgba(8, 158, 78, 0.3);
}

.calculator-button {
	width: 100%;
	padding: 15px;
	background: #8e7e29;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 25px;
}

.calculator-button:hover {
	background: #0a9e50;
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(8, 158, 78, 0.4);
}

.calculator-result {
	background: rgba(0,0,0,0.3);
	border-radius: 8px;
	padding: 20px;
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-item:last-child {
	border-bottom: none;
}

.result-label {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
}

.result-value {
	color: #8e7e29;
	font-size: 20px;
	font-weight: bold;
}

/* Адаптив для интерактивных блоков */
@media (max-width: 768px) {
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.story-content {
		flex-direction: column;
	}
	
	.guide-steps {
		flex-direction: column;
	}
	
	.step-connector {
		width: 2px;
		height: 30px;
	}
	
	.comparison-table {
		font-size: 12px;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 10px 5px;
	}
}