.xapp-c3 {
  --xapp-c3-sentinel: ready;
  --xapp-c3-release: 20260723-cross-app-transition-c3-frame;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  box-sizing: border-box;
  min-inline-size: 100%;
  min-block-size: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #07080c;
  color: #f5ecd7;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.xapp-c3::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: #07080c;
  pointer-events: none;
}

.xapp-c3[hidden] {
  display: none !important;
}

.xapp-c3[data-xapp-c3-state="entry-preparing"],
.xapp-c3[data-xapp-c3-state="entry-visible"],
.xapp-c3[data-xapp-c3-state="entry-leaving"],
.xapp-c3[data-xapp-c3-state="exit-visible"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.xapp-c3__safe-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  padding: 18px;
}

.xapp-c3__stage {
  position: relative;
  box-sizing: border-box;
  inline-size: min(320px, 100%);
  block-size: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  text-align: center;
  opacity: 1;
}

.xapp-c3[data-xapp-c3-state="entry-preparing"] .xapp-c3__stage {
  opacity: 0;
}

.xapp-c3[data-xapp-c3-state="entry-visible"] .xapp-c3__stage {
  opacity: 1;
  transition: opacity 120ms cubic-bezier(.22, .68, .24, 1);
}

.xapp-c3[data-xapp-c3-state="entry-leaving"] .xapp-c3__stage {
  opacity: 0;
  transition: opacity 120ms cubic-bezier(.22, .68, .24, 1);
}

.xapp-c3__mark {
  position: relative;
  z-index: 0;
  inline-size: 112px;
  block-size: 112px;
  flex: 0 0 112px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.xapp-c3__aura {
  position: absolute;
  z-index: 0;
  inset: -48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 216, 137, .30) 0, rgba(212, 185, 120, .16) 32%, rgba(245, 216, 137, .06) 54%, transparent 72%);
  pointer-events: none;
}

.xapp-c3__picture,
.xapp-c3__picture img {
  position: relative;
  z-index: 1;
  display: block;
  inline-size: 112px;
  block-size: 112px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.xapp-c3__copy {
  inline-size: 100%;
  block-size: 69px;
  flex: 0 0 69px;
  display: grid;
  grid-template-rows: 12px 26px 19px;
  row-gap: 6px;
  margin-block-start: 18px;
  overflow: visible;
}

.xapp-c3__kicker,
.xapp-c3__title,
.xapp-c3__message {
  display: block;
  inline-size: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.xapp-c3__kicker {
  block-size: 12px;
  color: rgba(245, 216, 137, .76);
  font-size: 10px;
  font-weight: 800;
  line-height: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.xapp-c3__title {
  block-size: 26px;
  color: #fff8e8;
  font-size: 24px;
  font-weight: 800;
  line-height: 26px;
  letter-spacing: -.025em;
}

.xapp-c3__message {
  block-size: 19px;
  color: rgba(245, 236, 215, .72);
  font-size: 14px;
  font-weight: 550;
  line-height: 19px;
}

.xapp-c3__line {
  position: relative;
  inline-size: 196px;
  block-size: 3px;
  flex: 0 0 3px;
  margin-block-start: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
}

.xapp-c3__line::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  inline-size: 46%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(245, 216, 137, .55), #ffe7a3, transparent);
  transform: translateX(-120%);
  animation: xapp-c3-line-phase 1200ms linear infinite;
}

@keyframes xapp-c3-line-phase {
  to { transform: translateX(340%); }
}

@media (max-width: 360px) {
  .xapp-c3__stage { inline-size: min(284px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .xapp-c3[data-xapp-c3-state="entry-visible"] .xapp-c3__stage,
  .xapp-c3[data-xapp-c3-state="entry-leaving"] .xapp-c3__stage {
    transition-duration: 80ms;
  }

  .xapp-c3__line::before {
    inline-size: 100%;
    opacity: .52;
    transform: none;
    animation: none;
  }
}
