@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nulshock";
  src: url("nulshock-bd.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nulshock";
  src: url("nulshock-light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("FuturaCyrillicBook.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Nulshock", sans-serif;
  font-weight: normal;
  overflow: hidden;
}

.container {
  position: relative;
  width: 1464px;
  height: 2196px;
  /* width: 1920px;
  height: 2880px; */
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 1080px; */
  /* width: 1464px; */
  width: 100%;
  /* height: 1920px; */
  /* height: 2196px; */
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

h1.main-title {
  position: relative;
  font-size: 90px;
  color: #fadb42;
  font-weight: bold;
  margin-top: 0;
}

.timezone-logo {
  margin-bottom: 50px;
}

.timezone-logo img {
  width: 600px;
}

.parent-section {
  width: 100%;
  height: 100%;
}

/* Language Selector Switch */
.language-selector-switch {
  position: absolute;
  top: 70px;
  right: 90px;
  z-index: 1000;
}

.language-toggle {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.language-toggle:hover {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.2));
}

.toggle-container {
  position: relative;
  width: 140px;
  height: 90px;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 100px;
  margin-top: 30px;
  margin-right: 50px;
}

.toggle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 6px solid rgba(255, 255, 255);
  backdrop-filter: blur(10px);
}

.toggle-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 75px;
  height: 75px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-labels {
  position: absolute;
  top: 0;
  left: -56px;
  width: 190%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}

.lang-label {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.lang-label.active {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* English mode (toggle to right) */
.language-toggle.english .toggle-slider {
  transform: translateX(54px);
}

/* .language-toggle:active .toggle-slider {
  transform: scale(0.95) translateX(var(--slider-x, 0px));
} */

.timezone-nav-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timezone-nav-btn img {
  width: 250px;
  height: 250px;
  cursor: pointer;
}

.click-shrink {
  transition: transform 0.15s ease-out;
}

.click-shrink.active {
  transform: scale(0.9);
}
