#qwdw-landing .logo {
  padding: 20px 0 0;
  width: 25%;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qwdw-landing .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#qwdw-landing .logo--text {
  width: auto;
  max-width: min(84vw, 560px);
}

#qwdw-landing .logo-title {
  margin: 0;
  padding: 12px 22px;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  font-family: "Arial Black", "Montserrat", sans-serif;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 255, 255, 0.16);
  word-break: break-word;
}

#qwdw-landing .logo-image[hidden],
#qwdw-landing .logo-title[hidden] {
  display: none;
}

#qwdw-landing .wheel-text-wrapper {
  width: 100%;
  height: 100%;
  padding-top: 5%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#qwdw-landing .wheel-text-wrapper p {
  width: fit-content;
  text-transform: uppercase;
}

#qwdw-landing .wheel-text {
  display: block;
}

#qwdw-landing .wheel-seg {
  padding-top: 10px;
  height: 51%;
  width: 41.6%;
  position: absolute;
  -webkit-clip-path: polygon(100% 0, 50% 100%, 0 0);
  clip-path: polygon(100% 0, 50% 100%, 0 0);
  translate: -50% 0;
  transform-origin: bottom;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  left: 50%;
  z-index: 1;
  border-right: 1px solid rgba(2, 46, 2, 0.85);
}

#qwdw-landing .wheel-seg:nth-child(1),
#qwdw-landing .wheel-seg:nth-child(5) {
  background: linear-gradient(0deg, #00b300 18%, #007800 72%);
}

#qwdw-landing .wheel-seg:nth-child(2),
#qwdw-landing .wheel-seg:nth-child(6) {
  background: linear-gradient(0deg, #0a8f0a 18%, #055f05 72%);
}

#qwdw-landing .wheel-seg:nth-child(3),
#qwdw-landing .wheel-seg:nth-child(7) {
  background: linear-gradient(0deg, #14b012 10%, #0a7f08 55%, #055805 88%);
  box-shadow: inset 0 0 28px rgba(251, 216, 77, 0.22);
}

#qwdw-landing .wheel-seg:nth-child(4),
#qwdw-landing .wheel-seg:nth-child(8) {
  background: linear-gradient(0deg, #078507 18%, #034903 72%);
}

#qwdw-landing .wheel-big-text {
  color: #fbd84d !important;
  font-weight: 800;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(251, 216, 77, 0.4);
}

#qwdw-landing .wheel-small-text,
#qwdw-landing .wheel-empty-text {
  color: #ffffff !important;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

#qwdw-landing .wheel-seg.is-at-pointer {
  z-index: 3;
  filter: brightness(1.14) saturate(1.08);
}

#qwdw-landing .wheel-seg.is-at-pointer .wheel-big-text {
  color: #fff4b0 !important;
  text-shadow:
    0 0 14px rgba(251, 216, 77, 0.95),
    0 2px 4px rgba(0, 0, 0, 0.8);
}

#qwdw-landing .wheel-seg.is-at-pointer .wheel-small-text,
#qwdw-landing .wheel-seg.is-at-pointer .wheel-empty-text {
  color: #ffffff !important;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.75);
}

#qwdw-landing .wheel-seg:nth-child(2) {
  rotate: 45deg;
}
#qwdw-landing .wheel-seg:nth-child(3) {
  rotate: 90deg;
}
#qwdw-landing .wheel-seg:nth-child(4) {
  rotate: 135deg;
}
#qwdw-landing .wheel-seg:nth-child(5) {
  rotate: 180deg;
}
#qwdw-landing .wheel-seg:nth-child(6) {
  rotate: 225deg;
}
#qwdw-landing .wheel-seg:nth-child(7) {
  rotate: 270deg;
}
#qwdw-landing .wheel-seg:nth-child(8) {
  rotate: 315deg;
}

#qwdw-landing .frame {
  position: absolute;
  z-index: 5;
  top: -1%;
  left: 50%;
  translate: -50% 0;
  height: 60%;
}

#qwdw-landing .frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#qwdw-landing .popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

#qwdw-landing .popup-body {
  border: 2px solid #fbd84d;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
}

#qwdw-landing .popup-btn {
  width: 100%;
  color: #612901;
  border-bottom: 4px solid #7e5205;
  background: linear-gradient(
    180deg,
    rgb(224, 138, 13) 0%,
    rgb(255, 196, 70) 40%,
    rgb(255, 196, 70) 60%,
    rgb(224, 138, 13) 100%
  );
  display: block;
  border-radius: 16px;
  font-size: 25px;
  padding: 24px 33px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

#qwdw-landing .popup-text {
  color: #fff !important;
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 500;
}

#qwdw-landing .popup-text-value {
  white-space: pre-line;
}

#qwdw-landing #second-popup .popup-text-prefix {
  display: block;
  margin-bottom: 10px;
}

#qwdw-landing #second-popup .popup-text-value {
  display: block;
}

#qwdw-landing .active-popup {
  opacity: 1;
  pointer-events: all;
}
