#easter-dialog,
#easter-dialog * {
  box-sizing: border-box;
}

:root {
  --easter-dialog-z: 9999;
  --easter-overlay-bg: rgba(0, 0, 0, 0.7);
  --easter-panel-width: min(calc(100vw - 32px), 647px);
  --easter-panel-shadow: 0 24px 80px rgba(49, 108, 37, 0.35);
  --easter-panel-gradient: linear-gradient(180deg, #d1f4a0 0%, #a9e9a6 100%);
  --easter-title-color: #fb26fb;
  --easter-title-shadow: #573000;
  --easter-text-main: #5b3316;
  --easter-text-accent: #fb26fb;
  --easter-text-muted: rgba(87, 48, 0, 0.6);
  --easter-yellow-bar: #ffe24a;
  --easter-count-value: #573000;
  --easter-count-separator: #7b5a15;
  --easter-toast-bg: rgba(31, 39, 48, 0.96);
  --easter-toast-border: rgba(255, 255, 255, 0.08);
  --easter-toast-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  --easter-toast-success: #57d51b;
  --easter-toast-error: #ff5e5e;
}

body.easter-dialog-open {
  overflow: hidden;
}

#easter-dialog {
  position: fixed;
  inset: 0;
  z-index: var(--easter-dialog-z);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#easter-dialog[hidden] {
  display: none;
}

#easter-dialog .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#easter-dialog .easter-overlay {
  position: absolute;
  inset: 0;
  background: var(--easter-overlay-bg);
  backdrop-filter: blur(2px);
  animation: easter-overlay-show 0.2s ease-out;
}

#easter-dialog .easter-dialog {
  position: relative;
  z-index: 1;
  width: var(--easter-panel-width);
  outline: none;
  animation: easter-content-show 0.24s ease-out;
}

#easter-dialog .easter-close {
  position: absolute;
  top: 16px;
  right: -32px;
  z-index: 3;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  transform: translate(50%, -50%);
  transition: background 0.2s ease;
}

#easter-dialog .easter-close:hover {
  background: rgba(255, 255, 255, 0.5);
}

#easter-dialog .easter-close-icon {
  font-size: 28px;
  line-height: 1;
}

#easter-dialog .easter-panel {
  position: relative;
  overflow: hidden;
  padding: 20px 16px 32px;
  border-radius: 28px;
  background: var(--easter-panel-gradient);
  box-shadow: var(--easter-panel-shadow);
  text-align: center;
}


#easter-dialog .cloud-left {
  position: absolute;
  width: 203px;
  height: 137px;
  top: 20px;
  left: -20px;
  animation: easter-cloud-left 4.8s ease-in-out infinite;
  background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/icloud-left.png) no-repeat;
}

#easter-dialog .cloud-right {
  position: absolute;
  top: 16px;
  height: 96px;
  width: 110px;
  right: -40px;
  animation: easter-cloud-right 5.3s ease-in-out infinite;
  background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/icloud-right.png) no-repeat;
}


#easter-dialog .bunny-ear-left {
  left: 38px;
  transform: rotate(-8deg);
}

#easter-dialog .bunny-ear-right {
  left: 66px;
  transform: rotate(10deg);
}

#easter-dialog .bunny-left {
  position: absolute;
  bottom: 0;
  left: -20px;
  animation: easter-bunny-left 3.8s ease-in-out infinite;
}

#easter-dialog .bunny-right {
  position: absolute;
  bottom: 0;
  right: -20px;
  animation: easter-bunny-right 4.1s ease-in-out infinite;
}

#easter-dialog .bunny-mobile {
  display: none;
}

#easter-dialog .dialog-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#easter-dialog .dialog-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  color: var(--easter-title-color);
  font-family: 'Trebuchet MS', 'Arial Rounded MT Bold', cursive;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -1px;
}

#easter-dialog .title-line {
  position: relative;
  margin: 0;
  text-shadow: 0 2px 0 var(--easter-title-shadow);
}

#easter-dialog .yellow-bar {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: fit-content;
}

#easter-dialog .yellow-bar::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -5px;
  left: -5px;
  z-index: -1;
  height: 50%;
  background: var(--easter-yellow-bar);
}

#easter-dialog .flower {
  position: absolute;
  top: -8px;
  right: -50px;
  animation: easter-flower 3.4s ease-in-out infinite;
  transform-origin: center bottom;
}

#easter-dialog .dialog-description {
  max-width: 475px;
  margin: 20px 0 8px;
  color: var(--easter-text-main);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

#easter-dialog .dialog-description .accent {
  color: var(--easter-text-accent);
}

#easter-dialog .coupon-card {
  position: relative;
  width: 100%;
  max-width: 374px;
  margin-top: 4px;
}

#easter-dialog .coupon-card-shell {
  width: 100%;
  height: 116px;
  background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/easear-bg.svg);
}

#easter-dialog .coupon-card-content {
  position: absolute;
  inset: 0;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  padding-right: 24px;
}

#easter-dialog .coupon-code-button {
  position: relative;
  right: 12px;
  bottom: 4px;
  display: flex;
  min-width: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: #5e2a12;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#easter-dialog .coupon-copy-button {
  position: relative;
  right: 6px;
  bottom: 4px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 44px;
  padding: 0 18px;
  border: 0;
  background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/liner-bt.png) no-repeat;
  color: #5e2a12;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

#easter-dialog .coupon-code-button:hover,
#easter-dialog .coupon-copy-button:hover {
  opacity: 0.9;
}

#easter-dialog .coupon-code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #5e2a12;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

#easter-dialog .dialog-tip {
  max-width: 300px;
  margin: 0;
  color: var(--easter-text-muted);
  font-size: 14px;
  line-height: 1.45;
}

#easter-dialog .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

#easter-dialog .countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#easter-dialog .countdown-value {
  display: flex;
  width: 45px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: url('https://images.litmedia.ai/litmediaen/assets/images/easter-active/count-bg.svg') center / contain no-repeat;
  color: var(--easter-count-value);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

#easter-dialog .countdown-label {
  color: var(--easter-count-value);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

#easter-dialog .countdown-separator {
  margin-bottom: 24px;
  color: var(--easter-count-separator);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

#easter-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: calc(var(--easter-dialog-z) + 1);
  display: inline-flex;
  min-width: 200px;
  max-width: min(calc(100vw - 32px), 420px);
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid var(--easter-toast-border);
  border-radius: 999px;
  background: var(--easter-toast-bg);
  box-shadow: var(--easter-toast-shadow);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#easter-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

#easter-toast .easter-toast-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

#easter-toast .easter-toast-message {
  white-space: nowrap;
}

#easter-toast.is-success .easter-toast-icon {
  background: var(--easter-toast-success);
}

#easter-toast.is-error .easter-toast-icon {
  background: var(--easter-toast-error);
}

@keyframes easter-overlay-show {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes easter-content-show {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes easter-cloud-left {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -6px, 0); }
}

@keyframes easter-cloud-right {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, 8px, 0); }
}

@keyframes easter-bunny-left {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -8px, 0) rotate(-2deg); }
}

@keyframes easter-bunny-right {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -6px, 0) rotate(2deg); }
}

@keyframes easter-flower {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(0, -4px, 0) rotate(8deg) scale(1.04); }
}

@media (min-width: 440px) {
  #easter-dialog .countdown-separator {
    margin-bottom: 28px;
    font-size: 30px;
  }

  #easter-dialog .countdown-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #easter-dialog .easter-panel {
    padding-bottom: 80px;
  }

  #easter-dialog .cloud,
  #easter-dialog .bunny-left,
  #easter-dialog .bunny-right {
    display: none;
  }

  #easter-dialog .bunny-mobile {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 215px;
    height: 130px;
    transform: translateX(-50%);
  }

  #easter-dialog .bunny-mobile .bunny-body {
    left: 60px;
  }
}

@media (max-width: 991px) {
  #easter-dialog .easter-close {
    right: 50%;
    top: auto;
    bottom: -48px;
    width: 32px;
    height: 32px;
    transform: translateX(50%);
  }

  #easter-dialog .easter-close-icon {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  #easter-dialog .easter-dialog {
    width: calc(100vw - 32px);
  }

  #easter-dialog .dialog-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 28px;
  }

  #easter-dialog .flower {
    top: 10px;
    right: -20px;
    width: 55px;
    height: 75px;
  }

  #easter-dialog .dialog-description {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 16px;
  }

  #easter-dialog .coupon-card-content {
    left: 32px;
    gap: 12px;
    padding: 12px;
    padding-right: 20px;
  }

  #easter-dialog .coupon-code-button,
  #easter-dialog .coupon-copy-button {
    right: 0;
  }

  #easter-dialog .coupon-code {
    font-size: 16px;
  }

  #easter-dialog .coupon-copy-button {
    min-width: 100px;
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  #easter-dialog .dialog-tip {
    font-size: 13px;
  }

  #easter-toast {
    min-width: 0;
    width: calc(100vw - 32px);
    padding: 10px 16px;
  }

  #easter-toast .easter-toast-message {
    white-space: normal;
  }
}

:root {
  --button-inner-gradient: linear-gradient(180deg, #e2ffb9 0%, #b1efae 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'PingFang SC', 'Hiragino Sans', 'Noto Sans JP', 'Microsoft YaHei', sans-serif;
  background: transparent;
}

body {
  padding: 16px;
}

button {
  font: inherit;
}

.easter-entry {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
}

@media (max-width: 1366px) {
  .easter-entry {
    display: none;
  }
}

@media (max-width: 991px) {
  .easter-entry,
  .phone-stage {
    display: flex;
  }
}

.easter-entry[hidden] {
  display: none;
}

.entry-button {
  display: inline-flex;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.entry-shell {
  max-width: 100%;
  padding: 2px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fb26fb 0%, #ff88c1 100%);
  box-shadow: 0 4px 12px rgba(251, 38, 251, 0.16);
}

.entry-content {
  position: relative;
  display: flex;
  height: 33px;
  max-width: 100%;
  align-items: center;
  padding: 4px 6px 0 56px;
  border-radius: 6px;
  background: linear-gradient(180deg, #e2ffb9 0%, #b1efae 100%);
  color: #fb26fb;
}

.entry-icon {
  position: absolute;
  top: 8px;
  left: -10px;
  width: 66px;
  height: 53px;
  pointer-events: none;
  user-select: none;
  transform: translateY(-50%);
  transform-origin: center bottom;
  will-change: transform;
  animation: easter-bunny-pop 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.entry-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.entry-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fb26fb;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

@keyframes easter-bunny-pop {
  0%,
  56%,
  100% {
    transform: translateY(-50%) scale3d(1, 1, 1) rotate(0deg);
  }

  60% {
    transform: translateY(-43%) scale3d(1.16, 0.82, 1) rotate(-4deg);
  }

  66% {
    transform: translateY(-72%) scale3d(0.84, 1.2, 1) rotate(5deg);
  }

  71% {
    transform: translateY(-46%) scale3d(1.1, 0.9, 1) rotate(-4deg);
  }

  76% {
    transform: translateY(-60%) scale3d(0.95, 1.08, 1) rotate(3deg);
  }

  81% {
    transform: translateY(-48%) scale3d(1.04, 0.97, 1) rotate(-2deg);
  }

  86% {
    transform: translateY(-53%) scale3d(0.98, 1.02, 1) rotate(1deg);
  }

  92% {
    transform: translateY(-50%) scale3d(1, 1, 1) rotate(0deg);
  }
}

.easter-bg-mobile {
  display: none;
}

@media (max-width: 991px) {
  .easter-entry {
    margin-right: auto;
  }
}

@media (max-width: 440px) {
  .easter-bg-mobile {
    position: absolute;
    bottom: 0;
    display: block;
    margin: 0 auto;
    bottom: -92px;
    z-index: -1;
  }

  #easter-dialog .coupon-card {
    width: 360px;
  }

  #easter-dialog .coupon-card-shell {
    height: 82px;
    width: 306px;
    margin: 0 auto;
    background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/liner-btn-m-2.svg) no-repeat;
  }

  #easter-dialog .coupon-copy-button {
    position: absolute;
    right: 34px;
    top: 19px;
    width: 112px;
    height: 44px;
    background: url(https://images.litmedia.ai/litmediaen/assets/images/activity/liner-bt-m.webp) no-repeat;
  }

  #easter-dialog .coupon-code-button{
    position: absolute;
    left: 19px;
    top: 5px;
  }

  #easter-dialog .coupon-code-button {
    top: 2px;
  }

  #easter-dialog .flower {
    width: 33px;
    height: 44px;
    right: -30px;
  }

  #easter-dialog .dialog-tip {
    margin-top: 10px;
  }
}

.phone-stage {
  display: none;
}
@media (max-width: 1366px) {
.phone-stage {
  position: fixed;
  display: flex;
  justify-content: center;
  right: 0;
  bottom: 210px;
  width: 120px;
  z-index: 39;
}

.phone-stage-content {
  position: relative;
  width: fit-content;
  height: 100%;
}

.phone-stage .top-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-stage .discount-text {
  display: flex;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fb26fb;
  font-size: 15px;
  line-height: 22px;
    font-weight: 700;
  }
}