/* Безопасный сброс стилей */
html, body, div, img, footer, .container, .label, .half {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000;
  user-select: none;
  overflow: hidden;
  color: #fff;
}

/* Контейнер и блоки */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.half {
  width: 50%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(60%);
  user-select: none;
  pointer-events: none;
}

.half:hover img {
  transform: scale(1.05);
  filter: brightness(100%);
}

/* Тексты */
.label {
  position: relative;
  z-index: 3;
  font-weight: bold;
  text-shadow: 0 0 10px #000, 0 0 20px #000;
  pointer-events: none;
  user-select: none;
  text-align: center;
  white-space: nowrap;
}

/* ПК размеры */
.label.rust-label {
  font-size: 48px;
}

.label.minecraft-label {
  font-size: 48px;
}

/* Разделитель */
.divider {
  width: 2px;
  background-color: rgba(0,0,0,0.3);
  box-shadow:
    -5px 0 15px rgba(0,0,0,0.9),
     5px 0 15px rgba(0,0,0,0.9);
  z-index: 4;
}

/* Виньетка */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  background:
    radial-gradient(circle at top left,     rgba(0, 0, 0, 0.7) 0%, transparent 50%) 0% 0%,
    radial-gradient(circle at top right,    rgba(0, 0, 0, 0.7) 0%, transparent 50%) 100% 0%,
    radial-gradient(circle at bottom left,  rgba(0, 0, 0, 0.7) 0%, transparent 50%) 0% 100%,
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.7) 0%, transparent 50%) 100% 100%;
  background-repeat: no-repeat;
  background-size: 60% 60%;
}

/* Футер */
footer {
  position: fixed;
  bottom: 10px;
  right: 15px;
  color: #888;
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  z-index: 1000;
  text-shadow: 0 0 5px #000;
}

/* Адаптив: мобильные */
@media screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .half {
    width: 100%;
    height: 50vh;
  }

  .divider {
    width: 100%;
    height: 3px;
    box-shadow:
      0 -15px 25px rgba(0,0,0,0.9),
      0 15px 25px rgba(0,0,0,0.9);
  }

  .label.rust-label {
    font-size: 24px;
  }

  .label.minecraft-label {
    font-size: 24px;
  }
}
