:root {
  --wheel-size: 942px;
  --wheel-inner-size: 842px;

  --button-size: 470px;

  --arrow-size: 350px;

  --sub-wheel-size: 1125px;
  --segment-font-size: 40px;
}

.logo {
  position: absolute;
  left: 80px;
  top: 60px;
  max-width: 195px;
  z-index: 100;
}

.title-block {
  margin-top: 145px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title {
  position: relative;
  display: inline-block;
  font-size: 50px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.title-line-1 {
  margin-bottom: -0.3em;
}

.title-block .title-text-first {
  margin-bottom: -85px;
}

.black {
  color: #000000;
}

.language-select {
  position: absolute;
  z-index: 10;
  right: 110px;
  top: 50px;
  display: inline-block;

  display: none;
}

.active-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #e8c26a;
  border-radius: 10px;
  cursor: pointer;
  justify-content: space-between;
}

.active-lang button {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 600;
  color: #ffdfa7;
  cursor: pointer;
}

.active-lang img {
  transition: transform 0.3s ease;
}

.active-lang img.rotate {
  transform: rotate(90deg);
}

.lang-list {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid #e8c26a;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 50;
  padding: 6px;
}

.lang-list.show {
  display: flex;
}

.lang-list button {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  color: #ffdfa7;
  cursor: pointer;
}

.lang-list button.active {
  background: #ffd97a;
  color: black;
  border-radius: 6px;
}
