/* [project]/UnicornsWay/src/components/Metrics.module.css [app-client] (css) */
.Metrics-module__pnHFua__wrapper {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.Metrics-module__pnHFua__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.Metrics-module__pnHFua__card {
  -webkit-backdrop-filter: blur(20px);
  background: #ffffff05;
  border: 1px solid #ffffff14;
  border-radius: 24px;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.Metrics-module__pnHFua__card:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff1a, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.Metrics-module__pnHFua__card:hover {
  background: #ffffff0d;
  border-color: #ffffff26;
  transform: translateY(-4px);
}

.Metrics-module__pnHFua__cardHeader {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Metrics-module__pnHFua__sparkline {
  width: 90px;
  height: 35px;
  overflow: visible;
}

.Metrics-module__pnHFua__sparkline path {
  fill: none;
  stroke: var(--stroke-color, var(--success));
  stroke-width: 2.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
  filter: drop-shadow(0 0 6px var(--stroke-color, var(--success)));
}

.Metrics-module__pnHFua__label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .85rem;
  font-weight: 500;
}

.Metrics-module__pnHFua__value {
  color: var(--foreground);
  letter-spacing: -.01em;
  font-size: 1.5rem;
  font-weight: 800;
}

.Metrics-module__pnHFua__danger {
  color: var(--danger);
  text-shadow: 0 0 10px var(--danger-glow);
}

.Metrics-module__pnHFua__progressBg {
  background: #ffffff0d;
  border-radius: 10px;
  width: 100%;
  height: 8px;
  margin-top: .25rem;
  overflow: hidden;
}

.Metrics-module__pnHFua__progressFill {
  height: 100%;
}

@media (max-width: 768px) {
  .Metrics-module__pnHFua__grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/UnicornsWay/src/components/QuestCard.module.css [app-client] (css) */
.QuestCard-module__VP7NLq__card {
  -webkit-backdrop-filter: blur(25px);
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 32px;
  width: 100%;
  padding: 3rem;
  position: relative;
  box-shadow: 0 30px 60px #00000080;
}

.QuestCard-module__VP7NLq__card:after {
  content: "";
  -webkit-mask-composite: xor;
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff1a, #0000, #ffffff0d);
  border-radius: 32px;
  padding: 1px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.QuestCard-module__VP7NLq__title {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: 800;
}

.QuestCard-module__VP7NLq__description {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
}

.QuestCard-module__VP7NLq__choices {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.QuestCard-module__VP7NLq__choiceButton {
  text-align: left;
  cursor: pointer;
  color: #fff;
  background: #ffffff0a;
  border: 1px solid #ffffff0f;
  border-radius: 20px;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  padding: 1.5rem 2rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.QuestCard-module__VP7NLq__choiceButton:hover {
  border-color: var(--accent);
  background: #ffffff14;
  transform: translateX(10px);
}

.QuestCard-module__VP7NLq__choiceText {
  letter-spacing: -.01em;
  font-size: 1.1rem;
  font-weight: 600;
}

.QuestCard-module__VP7NLq__choiceConsequence {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .QuestCard-module__VP7NLq__card {
    padding: 2rem 1.5rem;
  }

  .QuestCard-module__VP7NLq__title {
    font-size: 1.75rem;
  }
}

/* [project]/UnicornsWay/src/components/Mentor.module.css [app-client] (css) */
.Mentor-module__oko6fa__overlay {
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  background: #0006;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.Mentor-module__oko6fa__mentorBox {
  text-align: center;
  background: #141419f2;
  border: 1px solid #ffffff1a;
  border-radius: 32px;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 90%;
  max-width: 550px;
  padding: 3rem;
  display: flex;
  position: relative;
  box-shadow: 0 40px 80px #0009;
}

.Mentor-module__oko6fa__mentorBox:before {
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  height: 1px;
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
}

.Mentor-module__oko6fa__avatar {
  background: linear-gradient(135deg, var(--accent), #8e8dff);
  width: 80px;
  height: 80px;
  box-shadow: 0 10px 30px var(--accent-glow);
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.Mentor-module__oko6fa__avatarEmoji {
  font-size: 2.5rem;
}

.Mentor-module__oko6fa__mentorName {
  letter-spacing: -.01em;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}

.Mentor-module__oko6fa__content {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.Mentor-module__oko6fa__message {
  color: var(--text-secondary);
  white-space: pre-line;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* [project]/UnicornsWay/src/app/page.module.css [app-client] (css) */
.page-module__2jr_nq__main {
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 1rem;
  display: flex;
}

.page-module__2jr_nq__mainCenter {
  background-image: radial-gradient(circle, #5e5ce61a 0%, #0000 50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
}

.page-module__2jr_nq__gameOverContainer {
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 40px;
  max-width: 600px;
  padding: 4rem;
  box-shadow: 0 40px 100px #00000080;
}

.page-module__2jr_nq__gameOverTitle {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: -.04em;
  -webkit-background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
}

.page-module__2jr_nq__gameOverReason {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.page-module__2jr_nq__header {
  border-bottom: 1px solid #ffffff0f;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.page-module__2jr_nq__titleSmall {
  background: linear-gradient(135deg, #fff 0%, #71717a 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
  -webkit-background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 640px) {
  .page-module__2jr_nq__gameOverContainer {
    padding: 2rem 1.5rem;
  }

  .page-module__2jr_nq__gameOverTitle {
    font-size: 2.5rem;
  }

  .page-module__2jr_nq__header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

/*# sourceMappingURL=UnicornsWay_src_7e9fd695._.css.map*/