* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  background: #000;
  overflow: hidden;

  font-family: Arial, Helvetica, sans-serif;
}

.intro-screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* для современных мобильных */
  overflow: hidden;
  background: #000;
}

/* ВИДЕО — правильное масштабирование БЕЗ обрезки */
.intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* видео целиком влезает в контейнер, возможны чёрные полосы */
  object-position: center; /* центрируем по горизонтали и вертикали */
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Лёгкое затемнение, тоже не ловит клики */
.intro-shade {
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.20) 28%,
      rgba(0, 0, 0, 0.04) 68%,
      rgba(0, 0, 0, 0.20) 100%
    );
}

/* Контейнер кнопки */
.intro-ui {
  position: absolute;
  inset: 0;
  z-index: 10;

  pointer-events: none;
}

/*
  КНОПКА:
  стоит справа снизу и закрывает водяной знак.
*/
.enter-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 20;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 235px;
  min-height: 58px;

  padding: 15px 26px;

  border: 1px solid rgba(255, 174, 0, 0.98);
  border-radius: 0;

  color: #ffffff;
  background: rgba(0, 0, 0, 0.86);

  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;
  pointer-events: auto;

  box-shadow:
    0 0 0 1px rgba(255, 174, 0, 0.35),
    0 0 20px rgba(255, 145, 0, 0.36),
    inset 0 0 14px rgba(255, 145, 0, 0.10);

  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.enter-btn:hover {
  transform: translateY(-1px);

  background: rgba(16, 16, 16, 0.94);
  border-color: rgba(255, 210, 80, 1);

  box-shadow:
    0 0 0 1px rgba(255, 210, 80, 0.52),
    0 0 28px rgba(255, 170, 0, 0.55),
    inset 0 0 18px rgba(255, 170, 0, 0.16);
}

.enter-btn:active {
  transform: translateY(1px) scale(0.99);
}

.enter-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/*
  SEO-блок:
  есть для поисковика и доступности,
  но визуально не ломает заставку.
*/
.seo-content {
  position: absolute;
  width: 1px;
  height: 1px;

  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Мобильный вариант */
@media (max-width: contain) {
  .enter-btn {
    right: 12px;
    bottom: 12px;

    min-width: 190px;
    min-height: 50px;

    padding: 13px 20px;

    font-size: 14px;
  }
}