* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: rgba(234, 240, 255, 0.92);
  background: radial-gradient(900px 500px at 20% 10%, rgba(0, 245, 255, 0.12), transparent 60%), radial-gradient(700px 420px at 80% 30%, rgba(255, 43, 214, 0.12), transparent 55%), linear-gradient(180deg, #090b16, #05060c);
  background-repeat: no-repeat;
  background-color: #05060c;
}

a {
  color: rgba(234, 240, 255, 0.92);
}

.home {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 0 0;
  text-align: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.home h1 {
  color: rgba(234, 240, 255, 0.92);
  text-shadow: 0 0 18px rgba(0, 245, 255, 0.12);
}
.home .languageContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 120px 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  background: rgba(12, 16, 32, 0.72);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.14), 0 0 42px rgba(0, 245, 255, 0.08), 0 18px 55px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(234, 240, 255, 0.14);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  top: 110vh;
  opacity: 0;
  pointer-events: none;
  transition: top 0.6s ease-in-out, opacity 0.25s ease-in-out;
  padding: 60px 12px 90px 12px;
}
.modal.active {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.modal-dnd-result {
  width: min(640px, 92vw);
  text-align: center;
  padding: 70px 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.modal-dnd-result #dnd_result_title {
  font-size: 2rem;
  margin-top: 10px;
}

.modal-dnd-result.win {
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.12), rgba(12, 16, 32, 0.82) 55%);
}

.modal-dnd-result.lose {
  background: linear-gradient(180deg, rgba(255, 59, 59, 0.12), rgba(12, 16, 32, 0.82) 55%);
}

.modal-dnd-result.win #dnd_result_title,
.modal-dnd-result.win .dnd-result-score {
  color: #39ff14;
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.18);
}

.modal-dnd-result.lose #dnd_result_title,
.modal-dnd-result.lose .dnd-result-score {
  color: #ff3b3b;
  text-shadow: 0 0 18px rgba(255, 59, 59, 0.18);
}

.dnd-result-score {
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 800;
  margin: 18px 0 8px;
  line-height: 1;
}

.dnd-result-stats {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  font-weight: 600;
}

.modal-cards .btn-wrapper {
  margin-top: 30px;
}

.modal-settings-menu {
  z-index: 99999999999;
  padding: 50px 10px;
}
.modal-settings-menu a {
  text-decoration: none !important;
}
.modal-settings-menu .wrapper {
  margin-top: 40px;
}

.modal-rndCards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-rndCards .card {
  background-color: rgba(20, 26, 48, 0.72);
  font-weight: bold;
  font-style: italic;
  min-height: 200px;
  width: 90vw;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 80px 0;
  font-size: 1.3rem;
  border: 1px solid rgba(234, 240, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.12), 0 0 34px rgba(0, 245, 255, 0.11), 0 0 36px rgba(59, 130, 246, 0.08), 0 16px 45px rgba(0, 0, 0, 0.55);
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transform-origin: center right;
  transition: transform 1s;
}
.modal-rndCards .card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -17px;
  width: 26px;
  height: 40px;
  background-color: rgba(234, 240, 255, 0.08);
  transform: rotate(40deg);
  border-bottom: 1px solid rgba(234, 240, 255, 0.14);
}
.modal-rndCards .card.fly-in {
  animation: flyIn 1s ease-in-out;
}
.modal-rndCards .card.is-flipped {
  transform: translateX(-100%) rotateY(-180deg);
}
.modal-rndCards .card__face {
  position: absolute;
  width: 100%;
  height: 100%;
  color: rgba(234, 240, 255, 0.92);
  word-wrap: break-word;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-rndCards .card__face--front {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.18), rgba(12, 16, 32, 0.82));
}
.modal-rndCards .card__face--back {
  background: linear-gradient(135deg, rgba(43, 107, 255, 0.18), rgba(12, 16, 32, 0.82));
  color: rgba(234, 240, 255, 0.92);
  transform: rotateY(180deg);
}
.modal-rndCards .type-answer {
  width: 90vw;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -40px 0 16px;
}
.modal-rndCards .type-answer input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  font-size: 1.1em;
  text-align: center;
  background: rgba(20, 26, 48, 0.72);
  color: rgba(234, 240, 255, 0.92);
  border: 1px solid rgba(234, 240, 255, 0.14);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.09), 0 0 22px rgba(59, 130, 246, 0.06);
  outline: none;
}
.modal-rndCards .type-answer input:focus {
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.14), 0 0 26px rgba(0, 245, 255, 0.12), 0 0 24px rgba(59, 130, 246, 0.09);
}
.modal-rndCards .answer-btn {
  display: none;
}
.modal-rndCards .answer-btn.is-visible {
  display: flex;
}
.modal-rndCards .answer-known {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(0, 245, 255, 0.14));
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 34px rgba(57, 255, 20, 0.16), 0 0 30px rgba(0, 245, 255, 0.08), 0 12px 40px rgba(0, 0, 0, 0.55);
}
.modal-rndCards .answer-unknown {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.22), rgba(255, 43, 214, 0.14));
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 34px rgba(255, 59, 59, 0.16), 0 0 30px rgba(255, 43, 214, 0.08), 0 12px 40px rgba(0, 0, 0, 0.55);
}

@keyframes flyIn {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}
.modal-language-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}
.modal-language-menu h1 {
  margin: 50px auto;
}

.actionbutton {
  min-width: 180px;
  height: auto;
  min-height: 50px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.22), rgba(43, 107, 255, 0.18));
  color: rgba(234, 240, 255, 0.92);
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 34px rgba(0, 245, 255, 0.14), 0 0 34px rgba(59, 130, 246, 0.08), 0 12px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(234, 240, 255, 0.14);
  font-size: 1.2em;
  padding: 14px 28px;
  cursor: pointer;
}
.actionbutton.inactive {
  opacity: 0.2;
}

.close-Modal {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.35), rgba(59, 130, 246, 0.22));
  width: 80px;
  align-self: center;
  margin-top: 10px;
  color: rgba(234, 240, 255, 0.92);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  position: fixed;
  top: 5px;
  right: 10px;
  cursor: pointer;
}

.btn-translate {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.35), rgba(43, 107, 255, 0.18));
  width: 100px;
  align-self: center;
  margin-top: 10px;
  color: rgba(234, 240, 255, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.languageBtn {
  text-decoration: none;
  color: rgba(234, 240, 255, 0.92);
  font-size: 1.5em;
  height: auto;
  min-height: 48px;
  padding: 28px 20px;
  margin-top: 40px;
  font-weight: bold;
  background: linear-gradient(180deg, rgba(20, 26, 48, 0.72), rgba(12, 16, 32, 0.82));
  width: 260px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 40px rgba(255, 43, 214, 0.11), 0 0 34px rgba(0, 245, 255, 0.07), 0 16px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(234, 240, 255, 0.14);
  transition: all 0.4s ease;
  cursor: pointer;
}
.languageBtn:hover {
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.16), 0 0 42px rgba(0, 245, 255, 0.22), 0 0 36px rgba(59, 130, 246, 0.1), 0 18px 55px rgba(0, 0, 0, 0.65);
}

.button-q {
  background: rgba(20, 26, 48, 0.72);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(234, 240, 255, 0.14);
  box-shadow: 0 0 28px rgba(0, 245, 255, 0.1), 0 0 26px rgba(59, 130, 246, 0.08);
}

.middle-btn {
  transform: translateY(200%);
  padding: 25px;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 42px rgba(0, 245, 255, 0.14), 0 0 34px rgba(59, 130, 246, 0.08), 0 18px 55px rgba(0, 0, 0, 0.65);
}
.middle-btn.active {
  transform: translateY(0);
}

.button-add {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.22), rgba(43, 107, 255, 0.18));
  color: rgba(234, 240, 255, 0.92);
  margin: 50px auto;
  cursor: pointer;
}

.footerNav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(90deg, rgba(0, 245, 255, 0.22), rgba(59, 130, 246, 0.18), rgba(43, 107, 255, 0.18));
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 9999999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
  border: 1px solid rgba(234, 240, 255, 0.12);
}

.modal-new-words {
  width: 100%;
}
.modal-new-words .NewWords {
  background-color: rgb(186, 205, 218);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-new-words h1 {
  font-size: 2.5em;
  text-align: center;
  color: rgba(234, 240, 255, 0.92);
  z-index: 1000;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}
.modal-new-words .contentArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  width: 100%;
}
.modal-new-words .contentArea form {
  width: 100%;
  margin-top: 30px;
}
.modal-new-words .contentArea form label {
  color: rgba(234, 240, 255, 0.7);
  margin: 0 auto;
  font-weight: bold;
}
.modal-new-words .contentArea form input {
  width: 60%;
  height: 30px;
  border-radius: 8px;
  font-size: 1.2em;
  margin: 0 auto;
  text-align: center;
  background: rgba(20, 26, 48, 0.72);
  color: rgba(234, 240, 255, 0.92);
  border: 1px solid rgba(234, 240, 255, 0.14);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.09), 0 0 22px rgba(59, 130, 246, 0.06);
}
.modal-new-words .contentArea form select {
  width: 60%;
  height: 30px;
  border-radius: 8px;
  font-size: 1.2em;
  margin: 0 auto;
  text-align: center;
  background: rgba(20, 26, 48, 0.72);
  color: rgba(234, 240, 255, 0.92);
  border: 1px solid rgba(234, 240, 255, 0.14);
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.08), 0 0 18px rgba(59, 130, 246, 0.05);
}
.modal-new-words .savebutton {
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.18), rgba(0, 245, 255, 0.14));
  color: rgba(234, 240, 255, 0.92);
  font-weight: bold;
  letter-spacing: 1.5px;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 34px rgba(57, 255, 20, 0.14), 0 0 30px rgba(0, 245, 255, 0.08), 0 12px 40px rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  cursor: pointer;
}
.modal-new-words .inputWrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.modal-new-words .wordsWrapper {
  display: flex;
  flex-direction: column;
  margin: 90px auto 0 auto;
  align-items: center;
  width: 100%;
  height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.modal-new-words .wordsWrapper h2 {
  color: rgba(234, 240, 255, 0.92);
}
.modal-new-words .wordsWrapper .row {
  display: flex;
  width: 100%;
  background: rgba(20, 26, 48, 0.72);
  justify-content: space-around;
  border: 1px solid rgba(0, 245, 255, 0.22);
  margin-bottom: 3px;
}
.modal-new-words .wordsWrapper .cell {
  width: 50%;
  min-height: 24px;
  height: auto;
  text-align: center;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-break: anywhere;
  padding: 5px 0;
}
.modal-new-words .wordsWrapper .cellr {
  border-left: 1px solid rgba(234, 240, 255, 0.14);
}

.mini-modal {
  display: none;
}
.mini-modal.active {
  display: block;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px;
  background: rgba(12, 16, 32, 0.82);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 1px solid rgba(234, 240, 255, 0.14);
  border-radius: 15px;
  box-shadow: 0 0 42px rgba(255, 43, 214, 0.1), 0 0 34px rgba(0, 245, 255, 0.06), 0 0 34px rgba(59, 130, 246, 0.06);
}
.mini-modal.active h3 {
  margin: 30px auto;
  width: 100%;
  text-align: center;
}
.mini-modal.active .actionbutton {
  max-width: 90%;
  margin: 20px auto;
}
.mini-modal.active .close-Modal-minimodal {
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.35), rgba(59, 130, 246, 0.22));
  width: 80px;
  align-self: center;
  margin-top: 10px;
  color: rgba(234, 240, 255, 0.92);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.wordsWrapper {
  display: flex;
  flex-direction: column;
  margin: 90px auto 0 auto;
  align-items: center;
  width: 100%;
  height: 70vh;
  overflow-y: scroll;
}
.wordsWrapper h2 {
  color: rgba(234, 240, 255, 0.92);
}
.wordsWrapper .row {
  display: flex;
  width: 100%;
  background: rgba(20, 26, 48, 0.72);
  justify-content: space-around;
  border: 1px solid rgba(0, 245, 255, 0.22);
  margin-bottom: 3px;
}
.wordsWrapper .cell {
  width: 50%;
  min-height: 24px;
  height: auto;
  text-align: center;
  font-size: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-break: anywhere;
  padding: 5px 0;
  color: rgba(234, 240, 255, 0.92);
}
.wordsWrapper .cellr {
  border-left: 1px solid rgba(234, 240, 255, 0.14);
  color: rgba(234, 240, 255, 0.92);
}

.toast {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.22), rgba(57, 255, 20, 0.16));
  color: rgba(234, 240, 255, 0.92);
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 26px rgba(0, 245, 255, 0.12), 0 18px 55px rgba(0, 0, 0, 0.65);
  z-index: 10000000;
  max-width: min(90vw, 600px);
  min-width: 335px;
  text-align: center;
}
.toast.active {
  display: block;
}

.modal-dnd {
  padding: 60px 12px 120px 12px;
  overflow-y: auto;
}
.modal-dnd h2 {
  text-align: center;
}

.dnd-score {
  margin: 16px auto;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.dnd-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 18px auto;
}

.dnd-slot {
  min-height: 90px;
  border: 2px dashed rgba(0, 245, 255, 0.3);
  border-radius: 12px;
  background: rgba(12, 16, 32, 0.42);
  padding: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  font-weight: bold;
  color: rgba(234, 240, 255, 0.7);
}
.dnd-slot.correct {
  border-style: solid;
}

.dnd-pool {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dnd-card {
  background: rgba(20, 26, 48, 0.72);
  border: 1px solid rgba(234, 240, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 120px;
  max-width: 320px;
  text-align: center;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  color: rgba(234, 240, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(234, 240, 255, 0.12), 0 0 24px rgba(0, 245, 255, 0.08), 0 12px 40px rgba(0, 0, 0, 0.55);
}
.dnd-card:active {
  cursor: grabbing;
}
.dnd-card.solved {
  opacity: 0.65;
  cursor: default;
}

.dnd-card.dragging {
  cursor: grabbing;
}

.modal-dnd #btn_dnd_new_round {
  margin-top: 28px;
}/*# sourceMappingURL=style.css.map */