html,
body {
  padding: 0;
  height: 100vh;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

.header-sc-1a6xmt4-0.byAcIc {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  box-shadow: 0 0 0 1px #e5e5e5;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app {
  padding-top: 80px;
  overflow-y: auto;
  overflow-x: hidden;
}

.header-sc-1a6xmt4-0 .container {
  max-width: 980px;

  margin: 0 auto;
}

.site-header-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 56px;
}

.site-header-toggle {
  flex: 1;

  display: flex;

  align-items: center;
}

.site-header-toggle-inner {
  width: 18px;

  height: 14px;

  display: inline-flex;

  flex-direction: column;

  justify-content: space-between;

  cursor: pointer;
}

.site-header-toggle-inner span {
  display: block;

  height: 2px;

  border-radius: 1px;

  background: #f16529;
}

.site-header-toggle-inner span:nth-child(2) {
  background: #00aa55;
}

.site-header-logo-img {
  width: 52px;

  height: 52px;

  flex: 1;
}

.site-header-menu-icons {
  flex: 1;

  display: flex;

  align-items: center;

  justify-content: flex-end;
}

.site-menu-icons {
  display: flex;

  align-items: center;

  gap: 16px;
}

.site-menu-icons-item {
  border: none;

  background: transparent;

  padding: 0;

  margin: 0;

  cursor: pointer;
}

.site-menu-icons-item i {
  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.site-menu-icons-item img {
  height: 20px;

  width: 20px;

  display: block;
}

.site-header-wrapper {
  display: none;
}

.t-30 {
}

.title-p {
  font-size: 16px;

  font-weight: 600;

  color: #333;

  text-align: center;
}

.t-5 {
  margin-top: 5px;
}

.banner-img {
  margin: 0 auto 0;
  overflow-clip-margin: content-box;
  overflow: clip;
  width: 345px;
  max-width: 100%;
  height: auto;
  display: block;
}

.join-btn {
  margin: 24px auto 12px;

  width: 260px;

  height: 52px;

  line-height: 52px;

  text-align: center;

  border-radius: 999px;

  background: linear-gradient(135deg, #ffcc00, #ff7a00);

  color: #00693e;

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 1px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

  cursor: pointer;

  position: relative;

  overflow: hidden;

  text-transform: uppercase;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.join-btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -60%;

  width: 40%;

  height: 100%;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0)
  );

  transform: skewX(-20deg);

  animation: join-shine 2.2s infinite;
}

.join-btn:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.join-btn:active {
  transform: translateY(0) scale(0.98);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@keyframes join-shine {
  0% {
    left: -60%;
  }

  60% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.survey-container {
  max-width: 800px;
  margin: 20px auto 40px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #00693e;
}

.survey-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #00693e;
  text-align: center;
}

.survey-subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #3f5f4a;
  text-align: center;
}

.survey-question {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.survey-question h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #004f34;
}

.survey-desc {
  margin: 0 0 10px;
  font-size: 12px;
  color: #67806d;
}

.rating-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.rating-option {
  min-width: 32px;
  padding: 6px 0;
  border-radius: 999px;
  border: 1px solid #b5d9c3;
  background: #ffffff;
  color: #004f34;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease;
}

.rating-option:hover {
  background: #e4f6eb;
  border-color: #00aa55;
  transform: translateY(-1px);
}

.rating-option.active {
  background: #00aa55;
  border-color: #00aa55;
  color: #ffffff;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.choice-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #b5d9c3;
  background: #ffffff;
  font-size: 13px;
  color: #004f34;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.choice-item input {
  accent-color: #00aa55;
}

.choice-item:hover {
  background: #e4f6eb;
  border-color: #00aa55;
}

.survey-submit {
  margin-top: 24px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #00aa55, #008b46);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 105, 62, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.survey-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 105, 62, 0.4);
}

.survey-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 105, 62, 0.25);
}

.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-panel {
  width: min(420px, 90vw);
  border-radius: 18px;
  background: #ffffff;
  padding: 20px 20px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.modal-panel h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #00693e;
}

.modal-desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: #4b6b57;
}

.modal-steps {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #33453a;
}

.step-item {
  position: relative;
  margin-bottom: 6px;
}

.step-item.done {
  color: #00693e;
  font-weight: 600;
}

.step-item.done::before {
  content: "✔";
  position: absolute;
  left: -16px;
  color: #00aa55;
  font-size: 11px;
  top: 2px;
}

.prize-modal {
  text-align: center;
}

.prize-header h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.prize-subtitle {
  margin: 0 0 12px;
  font-size: 13px;
  color: #4b6b57;
}

.prize-body {
  margin-top: 6px;
}

.prize-image-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 12px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.prize-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prize-text {
  margin: 0 0 14px;
  font-size: 14px;
  color: #264137;
}

.prize-claim-btn {
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffcc00, #ff7a00);
  color: #00693e;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.prize-claim-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.prize-claim-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.prize-fireworks {
  pointer-events: none;
}

.prize-modal::before,
.prize-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 20% 20%,
      #ffcc00 2px,
      transparent 0
    ),
    radial-gradient(circle at 80% 30%, #00aa55 2px, transparent 0),
    radial-gradient(circle at 30% 80%, #ff7a00 2px, transparent 0),
    radial-gradient(circle at 70% 75%, #ffffff 2px, transparent 0);
  background-size: 100% 100%;
  opacity: 0;
  animation: fireworks-pop 1.8s ease-out infinite;
}

.prize-modal::after {
  animation-delay: 0.6s;
}

@keyframes fireworks-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.footer {
  overflow: hidden;

  background-color: rgb(0, 105, 62);

  margin-top: 40px;

  padding-top: 45px;

  padding-bottom: 45px;
}

.footer-logo {
  margin-left: 20px;

  width: 80px;

  height: 80px;

  object-fit: cover;
}

.footer-colomns {
  display: flex;

  flex-wrap: wrap;

  margin: 20px 20px 0;
}

.footer-colomn {
  flex: 1 1 200px;

  padding: 0 20px;

  margin-top: 20px;

  color: #ffffff;

  box-sizing: border-box;
}

.footer-title h3 {
  margin: 0 0 12px;

  font-size: 16px;

  font-weight: 600;

  color: #ffffff;
}

.footer-menu ul,
.footer-social ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-menu li + li {
  margin-top: 6px;
}

.footer-menu a {
  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
}

.footer-menu a:hover {
  text-decoration: underline;
}

.footer-social ul {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 8px;
}

.footer-social img {
  width: 24px;

  height: 24px;

  display: block;
}

.footer-subscribe .form-group {
  display: flex;

  margin-top: 10px;
}

.footer-subscribe input[type="email"] {
  flex: 1;

  padding: 8px 10px;

  border-radius: 4px 0 0 4px;

  border: none;

  font-size: 14px;
}

.footer-subscribe button[type="submit"] {
  padding: 0 16px;

  border: none;

  border-radius: 0 4px 4px 0;

  background-color: #ffcc00;

  color: #00693e;

  font-weight: 600;

  font-size: 14px;

  cursor: pointer;
}

.footer-download {
  display: flex;

  align-items: center;

  gap: 10px;
}

.footer-subscribe button[type="submit"]:hover {
  background-color: #ffd633;
}

@media (max-width: 768px) {
  .footer-colomns {
    flex-direction: column;

    margin: 20px;
  }

  .footer-colomn {
    padding: 0;
  }
}

.invite-container {
  overflow-x: hidden;
  max-width: 600px;
  width: 100%;
  margin: 20px auto 40px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.invite-prize-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.invite-prize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.invite-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #00693e;
  text-align: center;
  line-height: 1.4;
}

.invite-desc {
  margin: 0 0 24px;
  font-size: 15px;
  color: #33453a;
  text-align: center;
  line-height: 1.6;
}

.share-progress-wrapper {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 0 0 32px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 12px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.share-progress-bar-container-2 {
  flex: 1 1 0%;
  min-width: 0;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: block !important;
  align-self: stretch;
}

.share-progress-bar-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  border-radius: 16px;
  z-index: 1;
}

.share-progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(135deg, #00aa55, #008b46);
  border-radius: 16px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 170, 85, 0.4);
  display: block;
  visibility: visible;
  opacity: 1;
  box-sizing: border-box;
}

.share-progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  ); */
  animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

.share-progress-text {
  min-width: 55px;
  font-size: 18px;
  font-weight: 700;
  color: #00693e;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.share-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.share-btn-icon {
  font-size: 18px;
  font-weight: 700;
}

.share-btn-icon-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  display: block;
}

.share-btn-text {
  font-size: 16px;
}

.share-btn-line {
  background: #00c300;
  color: #ffffff;
}

.share-btn-line:hover {
  background: #00b300;
}

.share-btn-messenger {
  background: linear-gradient(135deg, #0084ff, #0066cc);
  color: #ffffff;
}

.share-btn-messenger:hover {
  background: linear-gradient(135deg, #0073e6, #0055b3);
}

.share-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.share-btn-whatsapp:hover {
  background: #20ba5a;
}

.share-btn-other {
  background: linear-gradient(135deg, #ffcc00, #ff7a00);
  color: #00693e;
}

.share-btn-other:hover {
  background: linear-gradient(135deg, #ffd633, #ff8a1a);
}

/* 完成消息 */
.invite-complete {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #e4f6eb, #c8f0d8);
  border-radius: 12px;
  border: 2px solid #00aa55;
  text-align: center;
}

.invite-complete h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #00693e;
}

.invite-complete p {
  margin: 0;
  font-size: 14px;
  color: #33453a;
}

@media (max-width: 768px) {
  .invite-container {
    margin: 20px 12px 40px;
    padding: 20px 16px;
  }

  .invite-title {
    font-size: 20px;
  }

  .invite-desc {
    font-size: 14px;
  }

  .share-progress-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .share-progress-text {
    min-width: auto;
    font-size: 16px;
  }

  .share-progress-bar-container {
    height: 28px;
  }
}

/* 验证页面样式 */
.verify-container {
  max-width: 600px;
  margin: 20px auto 40px;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.verify-prize-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.verify-prize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.verify-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #00693e;
  text-align: center;
  line-height: 1.4;
}

.verify-desc {
  margin: 0 0 32px;
  font-size: 15px;
  color: #33453a;
  text-align: center;
  line-height: 1.6;
}

.verify-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verify-btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.verify-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.verify-btn:hover::before {
  left: 100%;
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.verify-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verify-btn-icon {
  font-size: 20px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.verify-btn.verified .verify-btn-icon {
  display: inline-flex;
  opacity: 1;
  transform: scale(1);
  animation: verify-icon-pop 0.4s ease-out;
}

@keyframes verify-icon-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.verify-btn-text {
  font-size: 16px;
}

.verify-btn-1 {
  background: linear-gradient(135deg, #00aa55, #008b46);
  color: #ffffff;
}

.verify-btn-1:hover {
  background: linear-gradient(135deg, #00bb66, #009c56);
}

.verify-btn-2 {
  background: linear-gradient(135deg, #00693e, #004f34);
  color: #ffffff;
}

.verify-btn-2:hover {
  background: linear-gradient(135deg, #007a4f, #005f44);
}

.verify-btn-3 {
  background: linear-gradient(135deg, #ffcc00, #00aa55);
  color: #00693e;
}

.verify-btn-3:hover {
  background: linear-gradient(135deg, #ffd633, #00bb66);
}

@media (max-width: 768px) {
  .verify-container {
    margin: 20px 12px 40px;
    padding: 20px 16px;
  }

  .verify-title {
    font-size: 20px;
  }

  .verify-desc {
    font-size: 14px;
  }

  .verify-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

.sd-img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  animation: santa-hat-animation 5s linear infinite;
}

@keyframes santa-hat-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.site-header-logo {
  position: relative;
}
