/* Общие настройки */
body {
  margin: 0;
  font-family: "Neo Sans W1G", sans-serif;
  background-color: #F0F3F7;
  color: #fff;
}

/* Шапка */
.header {
  background-color: #19232C;
  height: 87px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
}

/* Контейнер */
.container {
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center; 
}

.logo img {
  height: 82px;
  width: 100%;
  object-fit: contain;
  display: block;
  margin-top: 5px;
}

/* Меню */
.menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Общий стиль кнопок */
.menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #4A5B68;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

/* Ховер */
.menu .btn:hover {
  background-color: #4A5B68;
}

/* Кнопка языка */
.menu .btn.lang {
  border-radius: 3px;
}

.menu .btn.lang img {
  height: 20px;
  width: auto;
  margin-left: 6px;
}

/* Группа объединённых кнопок */
.btn-group {
  display: flex;
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-radius: 3px 0 0 3px;
}

.btn-group .btn:last-child {
  border-radius: 0 3px 3px 0;
  border-left: none;
}

/* Новый блок с размытым фоном */
.blur-block {
  position: relative;
  width: 100%;
  height: 758px;
  background: url("../img/background.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

/* Сильное размытие фона */
.blur-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(40px);
  background-color: rgba(0, 0, 0, 0.25); 
  z-index: 1;
}

/* Черная тень по контуру (сильнее сверху и снизу) */
.blur-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 
    inset 0 50px 50px rgba(0, 0, 0, 0.5),   /* сверху */
    inset 0 -50px 50px rgba(0, 0, 0, 0.5),  /* снизу */
    inset 50px 0 50px rgba(0, 0, 0, 0.5), /* слева */
    inset -50px 0 50px rgba(0, 0, 0, 0.5);/* справа */
  z-index: 2;
}

/* Контейнер внутри размытого блока */
.game-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1152px;
  max-height: 726px;
  border: 1px solid #4A5B68;
  display: flex;
  flex-direction: column;
  background: #0f151b; 
  z-index: 3;
}

/* Шапка */
.game-header {
  height: 42px;
  background: #1D2730;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}

.game-header-title {
  font-family: "Neo Sans W1G", sans-serif;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.game-header-main {
  color: #fff;
}

.game-header-sub {
  color: #7B8C98;
}

.game-header-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Контент */
.game-content {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Затемнение поверх картинки */
.game-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

/* Чтобы кнопки были выше затемнения */
.game-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.game-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Кнопки внутри контента */
.game-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-family: "Neo Sans W1G", sans-serif;
  color: #fff;
  text-decoration: none;
  border-radius: 0px;
  min-width: 280px;
}

.playfree {
  display: block;
  font-size: 22px;
}

.textplay {
  display: block;
  font-size: 14px;
}

.buttplay {
  display: block;
}

.game-btn img {
  width: 24px;
  height: 24px;
}

.game-btn.green {
  background: linear-gradient(90deg, #1FAF39, #2FD14A);
  border: 2px #5DD667 solid;
}

.game-btn.green:hover {
  background: linear-gradient(90deg, #297937, #2FD14A);
}

.game-btn.green .over {
  width: 36px;
  height: 36px;
}

.game-btn.purple {
  background: linear-gradient(90deg, #7B2CCF, #B05BFF);
  align-items: center;
  justify-content: center;
  border: 2px #9539C7 solid;
}

.game-btn.purple:hover {
  background: linear-gradient(90deg, #633595, #B05BFF);
}

/* Футер */
.game-footer {
  height: 72px;
  background: #19232C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}

/* Левая часть футера */
.footer-left {
  display: flex;
  gap: 12px;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-family: "Neo Sans W1G", sans-serif;
  text-decoration: none;
  padding: 0 16px;
  height: 36px;
}

.footer-btn:hover {
  background-color: #4A5B68;
  border-radius: 5px;
}

.footer-btn img {
  width: 24px;
  height: 24px;
}

.footer-btn.bordered {
  border: 1px solid #4A5B68;
  border-radius: 3px;
}

/* Правая часть футера */
.footer-right {
  display: flex;
}

.footer-right .btn-new {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 36px;
  border: 1px solid #4A5B68;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-right .btn-new:hover {
  background-color: #4A5B68;
}

.footer-right .btn-new img {
  width: 24px;
  height: 24px;
}

.footer-right .btn-new:first-child {
  border-radius: 3px 0 0 3px;
}

.footer-right .btn-new:last-child {
  border-radius: 0 3px 3px 0;
  border-left: none;
}

.background-main {
  background-color: #19232C;
}

/* Основной блок */
.main-block {
  display: flex;
  justify-content: center;
  padding-top: 20px; 
}

.main-container {
  width: 1152px;
  display: flex;
}

/* Сайдбар */
.sidebar {
  width: 320px;
  height: 100%; 
}

.block-left {
  background: #1D2730;
  border: 1px solid #4A5B68;
  border-radius: 3px;
  box-sizing: border-box;
  overflow: hidden; 
  display: flex;
  flex-direction: column;	
}

.sidebar-img {
  flex: 1; 
  margin: 0;
  padding: 0;
}

.sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Заголовок */
.sidebar-title {
  display: flex;
  align-items: center;
  font-family: "Neo Sans W1G", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 12px 0;
}

.sidebar-title img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.sidebar-list {
	padding:15px;
}

/* Список */
.sidebar-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Neo Sans W1G", sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
}

.sidebar-list li span {
  color: #fff;
}

.sidebar-list li strong {
  color: #A2AEB7;
  font-weight: normal;
}

.sidebar-list li img {
  width: 16px;
  height: 16px;
}

/* Правая часть */
.content-area {
  flex: 1;
  margin-left: 40px;
  border-radius: 3px;
  min-height: 400px; 
}

.sidebar-list ul li span {
  display: inline-flex;
  align-items: center;
  gap: 4px; 
}

.sidebar-list ul li span img {
  width: 14px;   
  height: 14px;
}

.sidebar-widget {
  background: #1D2730;
  border: 1px solid #4A5B68;
  border-radius: 3px;
  box-sizing: border-box;
  overflow: hidden; 
  display: flex;
  flex-direction: column;	
  margin-top: 20px;
}

.sidebar-widget .widget-img img,
.sidebar-widget .widget-img-bottom img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0px;
}

.sidebar-widget .widget-text {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.sidebar-widget .copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; 
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 15px 14px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
  margin: 15px;
  box-sizing: border-box;
  font-size: 16px;
}

.sidebar-widget .copy-btn img {
  width: 18px;
  height: 18px;
}

.sidebar-widget .copy-btn:hover {
  background: #218838;
}


.game-info {
  color: #fff;
}

.game-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  margin: 0px;
  padding: 0px;
}

.game-desc {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 25px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.info-card {
  background: #1D2730;
  border: 1px solid #4A5B68;
  border-radius: 3px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.info-card {
  display: flex;
  align-items: flex-start; 
}

.info-icon img {
  width: 24px;
  height: 24px;
  display: block;
}


.info-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info-text span {
  font-size: 12px;
  color: #CDD6DD;
}

.info-text strong {
  font-size: 20px;
  color: #fff;
  padding-top: 7px;
}

.provider-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff; 
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.provider-section h3 img {
  width: 28px;
  height: 28px;
  display: block;
}

.provider-card {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(180deg, #222E38 0%, #1D2730 100%);
  border: 1px solid #4A5B68;
  border-radius: 3px;
  gap: 20px;
}

.provider-logo img {
  width: 160px;
  height: 142px;
  display: block;
  margin: 2px;
}

.provider-content h4 {
  font-size: 18px;
  margin: 0 0 20px;
  font-weight: 700;
  color: #fff;
}

.provider-content {
  width: 100%;
  margin-top: 20px;
  margin-right: 40px;
  margin-left: 20px;
}

.provider-links {
  display: flex;
  gap: 10px;
  width: 100%;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #4A5B68;
  border-radius: 2px;
  padding: 8px 14px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  width: 50%;
  line-height: 22px;
  
}

.link-btn:hover {
  background: #253a4b;
}

.link-btn img {
  width: 24px;
  height: 24px;
}

.link-btn .arrow {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.7;
}

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

.info-row span {
  font-size: 14px;
  color: #fff; 
}

.info-row img {
  width: 20px;
  height: 20px;
}


/* Внешний контейнер на всю ширину */
.game-section-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-family: Arial, sans-serif;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #4A5B68;
}

/* Внутренний контейнер фикс ширины */
.game-container-bottom {
  width: 1152px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Левая часть */
.game-left-bottom {

}

.game-logo-bottom img {
  width: 90px;
  margin-bottom: 15px;
}

.game-rating-bottom h4 {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
}

.stars-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.stars-bottom img {
  width: 35px;
  height: 35px;
}

.score-bottom {
  font-weight: bold;
  font-size: 28px;
  margin-left: 8px;
}

.votes-bottom,
.reviews-bottom {
  font-size: 13px;
  color: #aaa;
  margin-left: 6px;
}

.review-btn-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Neo Sans W1G", sans-serif;
  text-decoration: none;
  padding: 0 16px;
  height: 36px;
  border: 1px solid #4A5B68;
  border-radius: 3px;
  width: 130px;
}

.review-btn-bottom:hover {
  background-color: #4A5B68;
  border-radius: 3px;
}

.review-btn-bottom img {
  width: 24px;
  height: 24px;
}

.review-btn-bottom img {
  width: 14px;
  height: 14px;
}

.review-btn-bottom:hover {
  border-color: #6b7280;
}

/* Правая часть */
.game-right-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.socials-bottom span {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

.socials-bottom .icons-bottom {
  display: flex;
  gap: 15px;
}

.socials-bottom .icons-bottom img {
  width: 24px;
  height: 24px;
}

/* Кнопки */
.game-buttons-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  border: 1px solid transparent;
  width: 260px;
}

.btn-bottom img {
  width: 36px;
  height: 36px;
}

.btn-text-bottom {
  display: flex;
  flex-direction: column;
}

.btn-text-bottom strong {
  font-size: 18px;
  padding-bottom: 5px;
}

.btn-text-bottom small {
  font-size: 12px;
  color: #ccc;
}

.btn-bottom.free-bottom {
  border: 1px solid #5DD667;
}
.btn-bottom.free-bottom:hover {
  background: linear-gradient(90deg, #1a2e1f, #122417);
}

.btn-bottom.money-bottom {
  border: 1px solid #9539C7;
  display: flex;
  justify-content: center;
}

.btn-bottom.money-bottom strong {
  font-size: 14px;
}

.btn-bottom.money-bottom:hover {
  background: linear-gradient(90deg, #23172d, #1b1124);
}

.btn-bottom:hover {
  opacity: 0.9;
}

.money-bottom img {
  width: 20px;
  height: 20px;
}


.footer-bottom {
  color: #fff;
  font-family: Arial, sans-serif;
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.footer-container-bottom {
  width: 1152px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Верхняя часть */
.footer-top-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #4A5B68;
  margin-top: 20px;
  padding-top: 30px;
}

.footer-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title-bottom {
  font-size: 12px;
  font-weight: 600;
  color: #ccc;
  padding-bottom: 20px;
}

.footer-logos-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logos-bottom img {
  height: 35px;
  object-fit: contain;
}

/* Нижняя часть */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-top: 1px solid #4A5B68;
  padding-top: 20px;
}

.footer-bottom-text {
  font-size: 13px;
  line-height: 1.6;
  color: #aaa;
  max-width: 800px;
}

.footer-right-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 220px;
  padding-top: 15px;
}

.footer-subtitle-bottom {
  font-size: 14px;
  color: #ccc;
  text-align: left;
  width: 100%;
  padding-bottom: 10px;
}

.footer-select-bottom select {
  background: #2c3440;
  border: 1px solid #3f4752;
  color: #ccc;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}

/* Кастомный селектор */
.custom-select-bottom {
  position: relative;
  display: flex;
  align-items: center;
  background: #2c3440;
  border: 1px solid #3f4752;
  border-radius: 4px;
  padding: 6px 36px 6px 34px; 
  cursor: pointer;
  min-width: 220px;
}

.custom-select-bottom select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  outline: none;
}

/* Иконка слева */
.select-icon-bottom {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Стрелочка справа */
.select-arrow-bottom {
  position: absolute;
  right: 10px;
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.custom-select-bottom select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #2c3440;
  border: none;
  color: #eee;
  font-size: 14px;
  padding: 8px;
  width: 100%;
  outline: none;
  cursor: pointer;
}

/* Стили для опций */
.custom-select-bottom select option {
  background: #2c3440;
  color: #eee;
  padding: 8px;
  font-size: 16px;
}


/* ====== Модалка ====== */
.modal-enter {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn-enter 0.3s ease;
  color: #000;
}

.modal-content-enter {
  background: #fff;
  width: 340px;
  padding: 20px;
  padding-top: 40px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  position: relative;
  font-family: Arial, sans-serif;
  animation: scaleIn-enter 0.25s ease;
}

.close-enter {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #000;
}

/* Анимации */
@keyframes fadeIn-enter {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes scaleIn-enter {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ====== Соц-кнопки ====== */
.social-btn-enter {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  text-decoration: none;
  color: #000;
  margin-bottom: 10px;
  font-weight: 500;
  justify-content: center;
}

.social-btn-enter img {
  position: absolute;
  left: 30px;
  width: 22px;
  height: auto;
}

.divider-enter {
  text-align: center;
  color: #999;
  margin: 12px 0;
}

/* ====== Поля ====== */
.modal-content-enter form input {
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 5px;
  width: 100%;
}

/* ====== Опции ====== */
.form-options-enter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 12px;
}

.form-options-enter a {
  color: #28a745;
  text-decoration: none;
  font-size: 16px;
}

/* ====== Кнопка входа ====== */
.login-btn-enter {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.login-btn-enter:hover {
  background: #23923a;
}

.register-text-enter {
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
  font-size: 16px;
}

.register-text-enter a {
  color: #28a745;
  text-decoration: none;
  font-size: 16px;
}

.form-options-enter label {
	display: flex;
	font-size: 16px;
}

.form-options-enter label input {
	margin-bottom: 0px;
	width: 20px;
	margin-top: 0px;
}

.enter-input {height: 48px;  font-size: 16px; padding: 10px;margin-bottom: 10px;}

    .container_tmp {
      max-width: 1152px;
      margin: 0 auto;
      display: flex;
      background: #fff;
    }

    /* Левая колонка */
    .sidebar_tmp {
      width: 360px;
      background: linear-gradient(to right, #222E38, #1D2730);
      color: #fff;
      padding: 30px 25px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sidebar_tmp h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .sidebar_tmp ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar_tmp li {
      margin-bottom: 18px;
      font-size: 15px;
      line-height: 1.4;
      display: block;
	  display: flex;
	  align-items: flex-start;
    }

    .sidebar_tmp li img.icon_tmp {
      width: 30px;
      height: 30px;
      margin-right: 5px;
      margin-top: 0px;
	  flex-shrink: 0; 
    }
	
	.sidebar_tmp li span {
	  display: inline-block;
	}

    .sidebar_tmp a {
      color: #4cd964;
      text-decoration: none;
    }

    .sidebar_tmp img.bottom_tmp {
      margin-top: 30px;
      max-width: 100%;
      height: auto;
    }

    /* Правая колонка */
    .content_tmp {
      flex: 1;
      background: #fff;
      padding: 30px;
      box-sizing: border-box;
	  color: #000;
    }
	
	
    .form-wrapper_reg {
      width: 360px;
      border-radius: 3px;
      text-align: center;
	  margin: 0 auto;
    }

    .info_reg {
      background: #f3f9ff;
      border: 1px solid #d1e5f9;
      border-radius: 3px;
      padding: 12px;
      font-size: 13px;
      text-align: left;
      color: #333;
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .info_reg img {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .info_reg span {
      color: #0096ff;
      font-weight: bold;
      cursor: pointer;
    }

    .title_reg {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .login-link_reg {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .login-link_reg a {
      color: #00a100;
      text-decoration: none;
      font-weight: bold;
    }

    .btn-google_reg, .btn-apple_reg {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 3px;
      background: #fff;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .btn-google_reg img, .btn-apple_reg img {
      height: 18px;
      margin-right: 8px;
    }

    .divider_reg {
      margin: 15px 0;
      font-size: 14px;
      color: #888;
    }

    .input_reg {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 3px;
      font-size: 14px;
      margin-bottom: 12px;
	  height: 48px;
	  padding-left: 20px;
    }

    .select_reg {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 3px;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .checkbox_reg {
      display: flex;
      align-items: flex-start;
      font-size: 13px;
      margin-bottom: 10px;
      text-align: left;
    }

    .checkbox_reg input {
      margin-right: 8px;
      margin-top: 3px;
    }

    .checkbox_reg a {
      color: #44BE4C;
      text-decoration: none;
      font-weight: bold;
    }

    .btn-submit_reg {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 3px;
      background: #44BE4C;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
    }

    .btn-submit_reg:hover {
      background: #008f00;
    }
	
.c-captcha {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 12px 0;
}

.c-captcha img {
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 44px;
}

.c-captcha input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.ui-form {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.checkbox_reg.reg_block {
  display: flex;
  align-items: flex-start; 
  gap: 0px;
  font-size: 13px;
  line-height: 1.4;
}

.checkbox_reg.reg_block input {
  flex-shrink: 0;  
  margin-top: 2px; 
}

.checkbox_reg.reg_block span {
  display: inline-block;
}

.berrors {
  background: #ffeaea;            
  border: 1px solid #ffb3b3;      
  color: #b20000;                  
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.berrors b {
  font-weight: bold;
  font-size: 15px;
  color: #a00000;
}

.berrors.fix_grid {
  box-shadow: 0 2px 6px rgba(255, 0, 0, 0.1);
}
 
.validation-box {
	color: #e5e9f0;
	margin-bottom: 25px;
}


.validation-header {
	font-size: 18px;
	font-weight: 600;
	color: #ffcc00;
	margin-bottom: 10px;
}

.validation-text {
	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
	line-height: 1.5;
}

.validation-form {
	margin: 0px;
	padding: 0px;
}

.validation-form .form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.validation-form label {
	font-size: 14px;
	color: #000;
	margin-bottom: 6px;
}

.validation-footer {
	text-align: right;
	margin-top: 20px;
}

.btn-validate {
	background: #4ba3ff;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-validate:hover {
	background: #1e90ff;
}


/* Footer-two */
.footer-two {
	background: #19232C;
	width: 100%;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-container-two {
	width: 1152px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-logo-two {
	height: 48px; 
}

.footer-right-two a {
	margin-left: 12px;
	display: inline-flex;
	align-items: center;
}

.footer-right-two img {
	width: 25px;
	height: 25px;
	transition: opacity 0.2s;
}

.footer-right-two img:hover {
	opacity: 0.7;
}



/* ====== АДАПТИВ ====== */

/* Планшеты (до 1152px) */
@media (max-width: 1152px) {
  .container,
  .game-container,
  .main-container,
  .game-container-bottom,
  .footer-container-bottom,
  .footer-container-two {
    max-width: 95%;
  }
  
.blur-block {
  position: relative;
  width: 100%;
  height: 100%; 
  background: url("../img/background.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  display: flex;          
  justify-content: center; 
  align-items: center;    
}

  .game-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 95%;
    margin: 40px auto;
  }

.header {
    height: 50px;
}

.logo img {
    height: 40px;
}
  .sidebar {
    width: 260px;
  }

  .content-area {
    margin-left: 20px;
  }

  .provider-logo img {
    width: 120px;
    height: auto;
  }

  .game-buttons {
    gap: 8px;
  }
  .provider-logo img {
    width: 100%;
    max-width: 200px;
	margin-top: 20px;
  }

  .provider-content {
    margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-top: 0px;
	width: auto;
  }
  .provider-content h4 {
	text-align: center;  
  }
  .provider-card {
    flex-direction: column;
    align-items: center;
  }
  .stars-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* ряд со звёздами */
  .stars-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .stars-row img {
    flex: 1 1 auto;
    width: 10%;     /* 10 звёзд = 100% */
    height: auto;
    max-width: none;
  }

  /* блок с текстом */
  .stars-text {
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  .stars-text span {
    margin: 0 6px;
    display: inline-block;
  }

  .footer-top-bottom,
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-right-bottom {
    align-items: center;
  }
	.footer-right-bottom {
		padding-bottom: 15px;
	}

	.container_tmp {
		width: 100%;
		margin: 0 auto;
		display: block;
		background: #fff;
	}
	.sidebar_tmp {
		width: 100%;
	}
	
	.sidebar_tmp img.bottom_tmp {
		width: 40%;
		margin: 0 auto;
	}

	.container_tmp {
		display: flex;
		flex-direction: column; 
	}

	.content_tmp {
		order: -1;
	}

	aside.container_tmp {
		order: 0; 
	}
}

/* Планшеты и большие телефоны (до 768px) */
@media (max-width: 768px) {
  .menu {
    gap: 8px;
  }

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

  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }

  .content-area {
    margin-left: 0;
  }

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

  .game-container-bottom {
    flex-direction: column;
    align-items: center;
  }
  
  .sidebar {
    height: auto;
  }
	.review-btn-bottom {
		display: flex; 
		justify-content: center; 
		align-items: center; 
		margin: 0 auto;
		width: fit-content;
		height: 40px; 
		padding: 0 10px; 
		text-align: center; 
	}
	.game-right-bottom {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.socials-bottom span {
		text-align: center;
	}
	.footer-logos-bottom {
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.game-header {
    height: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	}
	.game-header-icon img {
	margin-left: 15px;	
	}
	.game-footer {
    flex-direction: column;
    gap: 15px; 
    height: auto; 
    padding: 12px 0;
    }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
  .form-wrapper_reg {
	  width: 100%;
  }
}

/* Смартфоны (до 480px) */
@media (max-width: 480px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .game-btn {
    min-width: unset;
    width: 100%;
    font-size: 12px;
    padding: 3px;
  }

  .playfree {
    font-size: 14px;
  }
  
  .game-btn img {
    width: 20px;
    height: 20px;
  }
  
  .game-btn.green .over {
    width: 30px;
    height: 30px;
  } 

  .textplay {
    font-size: 12px;
  }

  .game-footer {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .provider-links {
    flex-direction: column;
    width: 100%;
  }

  .link-btn {
    width: auto;
  }
  
  .footer-btn {
	  font-size: 14px;
  }

  .btn-bottom {
    width: auto;
  }

  .footer-container-two {
    flex-direction: column;
    gap: 12px;
  }

  .footer-right-two {
    display: flex;
    justify-content: center;
  }
  .footer-two {
	  height: 100%;
	  padding-top: 15px;
	  padding-bottom: 15px;
  }
}

/* Смартфоны (до 350px) */
@media (max-width: 350px) {
  .footer-btn {
	  font-size: 12px;
  }
  .footer-right .btn-new {
	  font-size: 12px;
  }
}