@charset "UTF-8";
.gameInfo {
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.gameInfo p, .gameInfo h1, .gameInfo h2, .gameInfo h3, .gameInfo h4, .gameInfo h5 {
  margin-bottom: 0;
  color: rgb(60, 61, 61);
}
.gameInfo h2 {
  font-weight: 700;
}
.gameInfo h3 {
  font-weight: 700;
}
.gameInfo p {
  font-size: 18px;
}
.gameInfo .bg-game {
  width: 100%;
  height: auto;
  margin-top: -100px;
}
.gameInfo__left {
  position: absolute;
  left: 50px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gameInfo__right {
  position: absolute;
  right: 50px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gameInfo__bottom {
  position: absolute;
  bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
.gameInfo__block {
  color: black;
  background: linear-gradient(180deg, rgba(234, 255, 253, 0.98) 0%, rgba(232, 240, 239, 0.43) 100%);
  padding: 20px;
  border-radius: 12px;
  max-width: 470px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.gameInfo__block--table {
  max-width: 100%;
  text-align: center;
}
.gameInfo .table-img {
  width: 100%;
  height: auto;
}
.gameInfo .indent {
  margin-bottom: 20px;
}
.gameInfo .indent-table {
  margin-bottom: 10px;
  font-weight: 600;
}

.bold {
  font-weight: 600;
}

.gameMain {
  padding: 30px 20px 0 20px;
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
.gameMain__top {
  text-align: center;
}
.gameMain__top h2 {
  font-weight: 600;
}
.gameMain__block {
  background: linear-gradient(180deg, rgb(184, 221, 244) 0%, rgb(233, 245, 255) 100%);
  padding: 20px;
  margin-top: 20px;
  border-radius: 12px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateX(0);
}
.gameMain__block.fade-out {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
}
.gameMain__block.fade-in {
  animation: slideIn 0.5s ease forwards;
}
.gameMain__block.block-hidden {
  display: none;
  opacity: 0;
  transform: translateX(30px);
}
.gameMain__block--final {
  background: inherit;
  text-align: center;
  padding-bottom: 35px;
  padding-top: 45px;
}
.gameMain__block--white {
  background: white;
}
.gameMain__block--white p {
  margin-bottom: 0;
}
.gameMain__top-other p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(2, 119, 123);
}
.gameMain label {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 5px 0;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.gameMain label.selected {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gameMain label:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.gameMain .answer-text.wrong-highlight {
  color: red;
}
.gameMain .answer-text.wrong-highlight .bold {
  color: red;
}
.gameMain .answer-text.correct-highlight {
  color: green;
}
.gameMain .answer-text.correct-highlight .bold {
  color: green;
}

.gameComment {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(234, 255, 253, 0.98) 0%, rgba(232, 240, 239, 0.43) 100%);
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-30px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.gameComment.show {
  padding: 20px;
  margin-top: 20px;
  max-height: 1100px;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.bnt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.gameMain__block input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gameMain__block input[type=checkbox]:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.gameMain__block input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.gameMain__block input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gameMain__block input[type=radio]:checked {
  background-color: black;
  border-color: black;
}

.gameMain__block input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.game-btn {
  display: inline-block;
  padding: 25px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.4);
  border: none;
  background: linear-gradient(90deg, rgb(2, 119, 123) 0%, rgb(78, 173, 163) 100%);
}
.game-btn:hover {
  color: white;
  transform: scale(1.02);
}

.next-btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.4);
  border: none;
  background: linear-gradient(90deg, rgb(2, 119, 123) 0%, rgb(78, 173, 163) 100%);
}
.next-btn:hover {
  color: white;
  transform: scale(1.02);
}

.more-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.4);
  border: none;
  background: linear-gradient(90deg, rgb(2, 119, 123) 0%, rgb(78, 173, 163) 100%);
}
.more-btn:hover {
  color: white;
  transform: scale(1.02);
}
.more-btn:visited {
  color: white;
}

.play-icon {
  width: 25px;
  height: 100%;
}

.green-bold {
  color: rgb(6, 79, 96);
  font-weight: 600;
}

.sources {
  font-style: italic;
  padding: 30px 20px 20px 20px;
  background: white;
}
.sources span {
  font-weight: 600;
}
.sources ol {
  padding-left: 1.2rem;
}
.sources ol li {
  font-size: 14px;
}

.gameMain__top h2 {
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.w1 {
  position: fixed;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
}

@media screen and (max-width: 1200px) {
  .gameInfo__block {
    max-width: 100%;
  }
  .gameInfo__left {
    position: static;
    margin-top: 30px;
    gap: 20px;
    margin-bottom: 20px;
  }
  .gameInfo__right {
    position: static;
  }
  .gameInfo__bottom {
    position: static;
    padding: 20px 0px 20px 0px;
  }
}
@media screen and (max-width: 768px) {
  .gameInfo__block h2 {
    font-size: 20px;
  }
  .gameInfo__block h3 {
    font-size: 18px;
  }
  .gameInfo__block p {
    font-size: 16px;
  }
  .gameMain__top h2 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=style.css.map */
