@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;
  font-weight: 600;
}
.gameInfo ul li {
  font-weight: 600;
}
.gameInfo .bg-game {
  width: 100%;
  height: auto;
}
.gameInfo__left {
  position: absolute;
  left: 50px;
  top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.gameInfo__right {
  position: absolute;
  right: 50px;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
}
.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.7) 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__block--small {
  max-width: 325px;
}
.gameInfo__block--medium {
  max-width: 435px;
}
.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 30px 20px;
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
.gameMain__wrapper {
  padding-bottom: 30px;
}
.gameMain__wrapper--end {
  padding-bottom: 0;
}
.gameMain__top h3 {
  font-weight: 600;
}
.gameMain__block {
  background: linear-gradient(180deg, rgba(214, 239, 255, 0.68) 0%, rgba(244, 248, 247, 0.99) 100%);
  box-shadow: 0px 2px 10px rgba(107, 107, 107, 0.4);
  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;
  font-size: 18px;
  gap: 5px;
}
.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: 3px 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 {
  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: rgb(0, 188, 212);
  border-radius: 50%;
}

.game-btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 20px;
  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);
}

.game-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.next-btn {
  display: inline-block;
  padding: 10px 50px;
  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;
}

.answer-block {
  background: linear-gradient(180deg, rgba(214, 239, 255, 0.68) 0%, rgba(244, 248, 247, 0.99) 100%);
  box-shadow: 0px 2px 10px rgba(107, 107, 107, 0.4);
  border-radius: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
}
.answer-block p {
  font-size: 18px;
}
.answer-block h3 {
  margin-bottom: 20px;
}
.answer-block__content {
  display: grid;
  grid-template-columns: 0.6fr 0.4fr;
  gap: 20px;
  margin-top: 20px;
}
.answer-block__content--two {
  margin-bottom: 30px;
}
.answer-block__container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.answer-block__btn {
  display: flex;
  justify-content: flex-end;
}
.answer-block ul li {
  font-size: 18px;
}
.answer-block i {
  font-size: 16px;
}
.answer-block h1 {
  text-align: center;
}

.answer-block.show {
  margin: 20px 0;
  padding: 20px;
  max-height: 3000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-articles {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.more {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
}
.more__block {
  background: linear-gradient(180deg, rgba(234, 255, 253, 0.98) 0%, rgba(232, 240, 239, 0.6) 100%);
  box-shadow: 0px 2px 10px rgba(107, 107, 107, 0.4);
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
}
.more__block h3 {
  font-weight: 700;
}
.more__block p {
  font-weight: 600;
}

.table-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.table-main__content {
  background: linear-gradient(180deg, rgb(234, 254, 252) 0%, rgba(232, 240, 239, 0.43) 50%, rgba(12, 126, 128, 0.4) 100%);
  border: 1px solid rgb(147, 237, 199);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.table-main__content img {
  width: 100%;
  height: auto;
}
.table-main__content p {
  font-weight: 600;
}

@media screen and (max-width: 1540px) {
  .gameInfo__right {
    gap: 10px;
    top: 13px;
  }
}
@media screen and (max-width: 1400px) {
  .gameInfo .indent {
    margin-bottom: 10px;
  }
  .gameInfo p {
    font-size: 16px;
  }
  .gameInfo__block {
    max-width: 490px;
  }
  .gameInfo__right {
    gap: 10px;
    top: 6px;
  }
  .gameInfo__right ul {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .gameInfo .indent {
    margin-bottom: 20px;
  }
  .gameInfo p {
    font-size: 18px;
  }
  .gameInfo__block {
    max-width: 100%;
  }
  .gameInfo__left {
    position: static;
    margin-top: 30px;
    gap: 20px;
    margin-bottom: 20px;
  }
  .gameInfo__right {
    position: static;
    margin-bottom: 20px;
  }
  .gameInfo__bottom {
    position: static;
    padding: 20px 0px 20px 0px;
  }
  .answer-block__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .answer-block__content--two {
    margin-bottom: 10px;
  }
  .more {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0px 0px 30px 0px;
  }
  .more__block {
    max-width: 100%;
  }
  .table-main {
    grid-template-columns: repeat(1, 1fr);
  }
}
@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 label {
    font-size: 16px;
  }
  .gameMain__top h2 {
    font-size: 24px;
  }
  .answer-block h1 {
    font-size: 25px;
  }
  .game-btn {
    padding: 12px 16px;
  }
  .game-btn-container {
    margin-top: 30px;
  }
}

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