/* Preserve the source artwork and crossfade while the X particles are still moving. */
#fde-entry-screen { position: fixed; inset: 0; z-index: 100000; overflow: hidden; background: #02040a; color: #edfaff; font-family: "Microsoft YaHei", sans-serif; transition: opacity .9s cubic-bezier(.4, 0, .2, 1); }
#fde-entry-screen:focus { outline: none; }
#fde-entry-screen.is-leaving { opacity: 0; pointer-events: none; }
#fde-entry-screen iframe { display: block; width: 100%; height: 100%; border: 0; }
#fde-entry-screen .fde-entry-waiting { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none; background: radial-gradient(ellipse at 50% 40%, #103264 0, #071326 35%, #020610 78%); transition: opacity .6s ease, visibility .6s; }
#fde-entry-screen.is-waiting .fde-entry-waiting { opacity: 1; visibility: visible; pointer-events: auto; }
#fde-entry-screen .fde-entry-waiting::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(#5d9bff0b 1px, transparent 1px), linear-gradient(90deg, #5d9bff0b 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse, #000 5%, transparent 72%); }
#fde-entry-screen .fde-entry-waiting::after { content: ""; position: absolute; width: min(70vw, 650px); aspect-ratio: 1; border-radius: 50%; background: #146aff12; filter: blur(70px); animation: fde-wait-aura 3s ease-in-out infinite alternate; }
#fde-entry-screen .fde-entry-wait-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: min(100% - 40px, 560px); text-align: center; }
#fde-entry-screen .fde-entry-orbit { position: relative; display: grid; place-items: center; width: 250px; height: 250px; margin-bottom: 34px; }
#fde-entry-screen .fde-entry-orbit::before { content: ""; position: absolute; inset: -18px; border: 1px solid #6dcbff0d; border-radius: 50%; box-shadow: 0 0 50px #0578ff12, inset 0 0 30px #0578ff0a; }
#fde-entry-screen .fde-entry-ring { position: absolute; border-radius: 50%; box-sizing: border-box; }
#fde-entry-screen .fde-entry-ring-outer { inset: 6px; border: 1px solid #77cfff20; border-top: 2px solid #8aecff; border-right-color: #399dff; animation: fde-wait-orbit 2.4s linear infinite; box-shadow: 0 -4px 24px #38c7ff1c; }
#fde-entry-screen .fde-entry-ring-outer::after { content: ""; position: absolute; top: 31px; right: 31px; width: 7px; height: 7px; border-radius: 50%; background: #d2fbff; box-shadow: 0 0 16px 5px #31c9ff70; }
#fde-entry-screen .fde-entry-ring-inner { inset: 30px; border: 1px solid #6e8dff18; border-bottom: 2px solid #b195ff; border-left-color: #556dff; animation: fde-wait-orbit 3.6s linear infinite reverse; }
#fde-entry-screen .fde-entry-ring-track { inset: 49px; border: 1px dashed #8bceff25; animation: fde-wait-orbit 24s linear infinite; }
#fde-entry-screen .fde-entry-core { display: grid; place-items: center; width: 94px; height: 94px; border-radius: 26px; border: 1px solid #84dfff38; background: linear-gradient(145deg, #173d67b3, #081729e6); box-shadow: inset 0 1px 1px #c7faff21, 0 0 45px #149df52e; animation: fde-wait-aura 2s ease-in-out infinite alternate; }
#fde-entry-screen .fde-entry-core svg { width: 46px; height: 46px; filter: drop-shadow(0 0 9px #35bfff90); }
#fde-entry-screen .fde-entry-eyebrow { color: #86b8d5; font-size: 11px; letter-spacing: 6px; margin-bottom: 14px; padding-left: 6px; }
#fde-entry-screen .fde-entry-status { margin: 0; font-size: clamp(24px, 3vw, 30px); font-weight: 500; line-height: 1.5; letter-spacing: 4px; color: #e9faff; background: linear-gradient(105deg, #b4d5ed 25%, #fff 44%, #96edff 52%, #b4d5ed 70%); background-size: 230% 100%; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: fde-wait-shimmer 3s linear infinite; }
#fde-entry-screen .fde-entry-detail { margin: 14px 0 0; font-size: 13px; line-height: 1.8; letter-spacing: 1px; color: #7897b4; }
#fde-entry-screen .fde-entry-beam { position: relative; width: 184px; height: 2px; margin-top: 28px; background: #5999d821; border-radius: 2px; overflow: hidden; }
#fde-entry-screen .fde-entry-beam::before { content: ""; position: absolute; inset: 0 auto 0 -80px; width: 80px; background: linear-gradient(90deg, transparent, #80e8ff, #7b7bff, transparent); animation: fde-wait-beam 1.8s ease-in-out infinite; }
#fde-entry-screen .fde-entry-retry { margin-top: 24px; padding: 9px 22px; border: 1px solid #8acfff55; border-radius: 24px; color: #cfefff; background: #73b8ff0d; cursor: pointer; font: 13px "Microsoft YaHei", sans-serif; }
#fde-entry-screen .fde-entry-retry:hover { background: #73b8ff1c; }
#fde-entry-screen button:focus-visible { outline: 2px solid #92eaff; outline-offset: 5px; }
#fde-entry-screen.is-error .fde-entry-status { background: none; -webkit-text-fill-color: #e7ecff; animation: none; }
#fde-entry-screen.is-error .fde-entry-core { border-color: #baadff70; }
#fde-entry-screen [hidden] { display: none !important; }
#fde-entry-screen noscript { position: absolute; bottom: 28px; width: 100%; text-align: center; color: #c5e5ff; }
@keyframes fde-wait-orbit { to { transform: rotate(360deg); } }
@keyframes fde-wait-aura { from { opacity: .65; } to { opacity: 1; } }
@keyframes fde-wait-shimmer { from { background-position: 100% 50%; } to { background-position: -130% 50%; } }
@keyframes fde-wait-beam { to { transform: translateX(270px); } }
@media (max-height: 600px), (max-width: 480px) {
  #fde-entry-screen .fde-entry-orbit { width: 190px; height: 190px; margin-bottom: 28px; }
  #fde-entry-screen .fde-entry-core { width: 72px; height: 72px; border-radius: 22px; }
  #fde-entry-screen .fde-entry-core svg { width: 36px; height: 36px; }
  #fde-entry-screen .fde-entry-ring-track { inset: 41px; }
  #fde-entry-screen .fde-entry-status { font-size: 23px; letter-spacing: 2px; }
}
