html,
body {
  height: 100%;
  margin: 0;
  font-family: "Noto Sans", serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.split-left {
  flex-direction: column;
  min-height: 100vh;
}

.split-right {
  height: 100vh;
}

.nav-link.active {
  transform: translateX(10px);
  transition: transform 0.2s ease-in-out;
}

@media (min-width: 992px) {
  .split-left {
    height: auto;
    max-height: none;
    position: fixed;
    width: calc(50% - 1rem);
    max-width: 540px;
  }

  .split-right {
    margin-left: 50%;
  }

  .header-responsive {
    opacity: 0%;
  }
}

@media (max-width: 991.98px) {
  .split-left {
    position: relative;
    width: 100%;
    min-height: 0;
  }

  .header-responsive {
    opacity: 100%;
  }
}

.active {
  font-weight: 800;
  color: #fff;
}

.custom-cursor {
  color: #fff;
  cursor: url(/images/fortnite.png), auto;
}

a {
  color: #fff;
  text-decoration: none;
}

h4 {
  color: #fff;
}

.language-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .language-switcher {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}

.btn:hover h4 {
  color: #5ECAED; /* Здесь указываем нужный цвет */
}