html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=95);
  opacity: 0.95;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 5px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  margin-top: 10px;
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.dis__images{
  display: flex;
  gap:20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.dis__images img{
  max-height: 80px;
  height: auto;
  width: auto;
  filter: invert(0.7);
  transition: all .3s ease-in-out;
}
.disclaimer-block {
  width: 100%;
  background-color: #ad0202; /* ярко-жёлтый */
  color: #000;
  padding: 20px 10px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  border-top: 4px solid #ff9800;
  border-bottom: 4px solid #ff9800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* расстояние между иконкой и текстом */
}

.icon-18plus {
  background-color: #d32f2f; /* насыщенный красный */
  color: white;
  font-weight: 900;
  font-size: 24px;
  padding: 6px 12px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  user-select: none;
}
.disclaimer-block p {
  margin: 0;
  line-height: 1.2;
  font-size: 26px; /* увеличил с 22px до 28px */
}
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1.0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-modal {
  background-color: #222;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-modal button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.age-modal button:first-of-type {
  background-color: #28a745;
  color: white;
}

.age-modal button:last-of-type {
  background-color: #dc3545;
  color: white;
}
.btn-red-game {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #d32f2f, #f44336);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* пульсация */
}

.btn-red-game:hover {
  background: linear-gradient(45deg, #f44336, #e57373);
  transform: scale(1.1);
  box-shadow: 0 10px 22px rgba(0,0,0,0.5);
}

/* Анимация пульсации */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
}

.btn-game {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* подключаем пульсацию */
}

.btn-game:hover {
  background: linear-gradient(45deg, #ffb300, #ff7043);
  transform: scale(1.1); /* немного увеличиваем при наведении */
  box-shadow: 0 12px 26px rgba(0,0,0,0.6);
}
.btn-banner {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* эффект пульсации */
}

.btn-banner:hover {
  background: linear-gradient(45deg, #ffb300, #ff7043);
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
}

/* Анимация пульсации */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
}
.main-banner {
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* степень затемнения, можно менять 0.5 → 0.6/0.7 */
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;   /* центр по вертикали */
  justify-content: center; /* центр по горизонтали */
  text-align: center;
  z-index: 2;
}
.features {
  position: relative;
  z-index: 3; /* поднимаем над overlay */
}

.features h4,
.features p {
  color: #fff; /* текст снова будет ярким */
}