/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #ffffff;
  background-color: #00558C;
}

.hydrate-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: #00558C;
  width: 100%;
}

.hydrate-logo-wrap {
  width: 100%;
  margin-bottom: 1rem;
}

.hydrate-logo {
  width: 318px;
  height: 238px;
  display: block;
  margin: 0 auto;
}

.hydrate-content {
  text-align: center;
  width: 100%;
}

.hydrate-kicker {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 71px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #00A3E0;
  margin-bottom: 6rem;
}

.hydrate-subtitle {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 6rem;
}

.hydrate-word {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25rem;
}

.hydrate-word img {
  display: block;
  width: 298px;
  height: 51px;
  transform: rotate(0deg);
  opacity: 1;
}

.hydrate-cta {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border-radius: 999px;
  border: none;
  background-color: #f8b731;
  color: #fff;
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hydrate-cta:hover {
  background-color: #ffca45;
}

/* Quiz page layout */
.quiz-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 4rem;
  box-sizing: border-box;
  background-color: #00558C;
}

.quiz-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.quiz-left {
  flex: 0 0 56%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz-right {
  flex: 0 0 44%;
  display: flex;
  justify-content: flex-end;
}

.quiz-question {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 5rem;
}

.quiz-answers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.quiz-answer {
  width: auto;
  max-width: 100%;
}

.quiz-answer.hydrate-cta {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: none;
  padding: 0.6rem 2.8rem;
}

.quiz-answer.is-selected {
  box-shadow: 0 0 0 3px #ffffff;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}

.quiz-arrow-btn {
  width: 64px;
  height: 64px;
  border: none;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}

.quiz-arrow-btn:disabled {
  cursor: default;
}

.quiz-arrow-next {
  background-image: url("../images/arrow-inactive.svg");
}

.quiz-arrow-next:not(:disabled) {
  background-image: url("../images/arrow-active.svg");
}

.quiz-arrow-prev {
  background-image: url("../images/arrow-inactive.svg");
  transform: scaleX(-1);
}

.quiz-arrow-prev:not(:disabled) {
  background-image: url("../images/arrow-active.svg");
}

.quiz-progress {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #00A3E0;
}

.quiz-meter {
  position: relative;
  display: inline-block;
  width: 600px;
  height: 900px;
}

.quiz-can-window {
  position: absolute;
  right: 0;
  top: -20px;
  width: 388px;
  height: 973px;
  overflow: hidden;
  -webkit-mask-image: url("../images/CAN.svg");
  mask-image: url("../images/CAN.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 388px 940px;
  mask-size: 388px 940px;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}

.quiz-can-fill {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.quiz-can-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px; /* only cover the curved bottom part */
  background-color: #00A3E0;
  z-index: 1;
  pointer-events: none;
}

.quiz-can-liquid {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 200%;
  height: 100%;
  overflow: hidden;
}

.quiz-can-liquid-clip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140%;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.4s ease-out;
}

.quiz-can-liquid-clip svg {
  width: 100%;
  height: 100%;
  display: block;
}

.quiz-can {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.quiz-level-arrow {
  position: absolute;
  width: 164px;
  height: 352px;
  top: 300px;
  left: 136px;
  z-index: 4;
}

.quiz-scale {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
}

.quiz-scale-line {
  width: 250px;
  height: 10px;
  background-image: url("../images/line-weak.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.quiz-scale-line:nth-child(1),
.quiz-scale-line:nth-child(11),
.quiz-scale-line:nth-child(21) {
  background-image: url("../images/line-strong.svg");
}

/* Assume full-HD canvas for quiz */
.quiz-hero {
  height: 1080px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.quiz-layout {
  gap: 2.5rem;
}

/* Result page layout */
.result-hero {
  height: 1080px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 80px;
  box-sizing: border-box;
  background-color: #00558C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}

.result-left {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.result-right {
  flex: 0 0 40%;
  display: flex;
  justify-content: flex-end;
}

.result-kicker {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.result-heading {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 1rem;
}

.result-percent {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #00A3E0;
}

.result-band {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin: 5rem 0;
  color: #F1B434;
}

.result-short {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 5rem;
}

.result-message-box {
  background-color: #00A3E0;
  padding: 3rem 4rem;
  border-radius: 4px;
  margin-bottom: 7rem;
}

.result-message {
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.result-cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.9rem 3.6rem;
  border-radius: 999px;
  border: none;
  background-color: #f8b731;
  color: #ffffff;
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.result-cta:hover {
  background-color: #ffca45;
}

/* Fortune wheel page */
.fortune-hero {
  height: 1080px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 80px;
  box-sizing: border-box;
  background-color: #00558C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fortune-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: -30rem;
}

.fortune-left {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -10rem;
}

.fortune-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -6rem;
}

.fortune-heading {
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Museo Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
}

.fortune-wheel-wrap {
  width: 1115px;
  height: 1115px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}

.fortune-pick {
  position: absolute;
  top: 8.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  width: 108px;
  height: 108px;
}

.fortune-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: 176px;
  height: 176px;
}

.fortune-wheel {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 3s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.fortune-product {
  width: 956px;
  height: 923px;
  object-fit: contain;
}


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