:root {
  --blue: #2454ff;
  --blue-dark: #1538bd;
  --yellow: #ffd934;
  --ink: #142033;
  --paper: #fffdf5;
  --white: #ffffff;
  --muted: #657083;
  --radius: 22px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--blue);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--blue);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgb(255 255 255 / 15%) 0 1px, transparent 2px) 0 0 / 24px 24px,
    linear-gradient(145deg, #3a68ff, var(--blue) 52%, var(--blue-dark));
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
}

.app-header,
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}

.app-header {
  min-height: 76px;
  padding: 20px 22px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
}

.brand-mark svg {
  width: 18px;
  fill: var(--ink);
}

.step-indicator {
  display: flex;
  gap: 6px;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d9dce2;
  transition: width 300ms ease, background-color 300ms ease;
}

.step-dot.is-active {
  width: 22px;
  background: var(--blue);
}

.screens {
  display: grid;
  flex: 1 0 auto;
}

.screen {
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  padding: 24px 22px 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(85%) scale(.94) rotate(2deg);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear 680ms;
  pointer-events: none;
}

.screen.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1) rotate(0);
  transition-delay: 60ms;
  pointer-events: auto;
}

.screen.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translateX(-70%) scale(.92) rotate(-2deg);
  transition-delay: 0s;
}

.screen:not(.is-active):not(.is-leaving) {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 390px;
  font-size: clamp(38px, 12vw, 56px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

.screen > .eyebrow,
.screen > h1,
.screen > h2 {
  opacity: 0;
  transform: translateY(24px);
}

.screen.is-active > .eyebrow {
  animation: title-in 540ms 180ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.screen.is-active > h1,
.screen.is-active > h2 {
  animation: title-in 680ms 280ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.destination-photo {
  position: relative;
  height: clamp(165px, 46vw, 210px);
  margin: 27px 0 20px;
  border-radius: 20px;
  background: #d9dce2;
  box-shadow: 7px 7px 0 var(--blue);
  clip-path: inset(0 100% 0 0 round 20px);
  overflow: hidden;
}

.destination-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgb(10 20 45 / 74%));
}

.destination-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.18);
}

.travel-date {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 12px;
  padding: 8px 11px 9px;
  border: 2px solid var(--ink);
  border-radius: 11px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  transform: rotate(3deg);
}

.travel-date span,
.travel-date strong {
  display: block;
}

.travel-date span {
  margin-bottom: 2px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.travel-date strong {
  font-size: 14px;
  line-height: 1;
}

.screen.is-active .travel-date {
  animation: date-sticker-in 650ms 1.1s cubic-bezier(.18, 1.6, .35, 1) both;
}

.destination-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 15px;
  left: 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.destination-photo figcaption span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.destination-photo figcaption strong {
  font-size: 21px;
}

.screen.is-active .destination-photo {
  animation: photo-reveal 900ms 480ms cubic-bezier(.77, 0, .18, 1) forwards;
}

.screen.is-active .destination-photo img {
  animation: photo-drift 4.5s 480ms ease-out forwards;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  align-items: end;
  margin: 0 0 20px;
  padding: 22px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--yellow);
  background: var(--white);
  opacity: 0;
  transform: translateY(34px) rotate(3deg) scale(.94);
}

.screen.is-active .route-card {
  animation: route-card-in 700ms 900ms cubic-bezier(.18, 1.35, .35, 1) forwards;
}

.airport {
  min-width: 0;
}

.airport-to {
  text-align: right;
}

.airport-label,
.airport span:last-child {
  display: block;
}

.airport-label {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.airport strong {
  display: block;
  font-size: clamp(31px, 10vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.airport span:last-child {
  margin-top: 5px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-visual {
  position: relative;
  height: 35px;
  align-self: center;
}

.route-line {
  position: absolute;
  top: 17px;
  right: 4px;
  left: 4px;
  height: 2px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, var(--ink) 0 4px, transparent 4px 8px);
  transform: scaleX(0);
  transform-origin: left;
}

.is-active .route-line {
  animation: draw-route 900ms 1.25s ease forwards;
}

.route-plane {
  position: absolute;
  top: 7px;
  left: 0;
  width: 22px;
  fill: var(--blue);
  opacity: 0;
  transform: rotate(90deg);
}

.is-active .route-plane {
  animation: fly-route 1.1s 1.3s cubic-bezier(.3, .7, .2, 1) forwards;
}

.screen-copy,
.screen-intro,
.birthday-message {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.screen-copy {
  margin: 0 2px 26px;
}

.screen-intro {
  max-width: 350px;
  margin: 18px 0 28px;
}

.primary-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 5px 0 var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.primary-button span {
  font-size: 21px;
}

.primary-button:hover {
  background: #1748f6;
}

.primary-button:active {
  box-shadow: 0 2px 0 var(--blue-dark);
  transform: translateY(3px);
}

.primary-button:focus-visible,
.text-button:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.passenger-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 14px;
  margin: 4px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: passenger;
}

.passenger-item {
  --accent: var(--yellow);
  --entry-x: 70px;
  --tilt: -1deg;
  position: relative;
  min-width: 0;
  padding: 21px 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 22px 22px 14px 14px;
  background:
    radial-gradient(circle at 14px 14px, rgb(20 32 51 / 7%) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
    var(--white);
  box-shadow: 6px 7px 0 var(--accent), 8px 9px 0 var(--ink);
  opacity: 0;
  transform: translateX(var(--entry-x)) rotate(7deg) scale(.78);
  counter-increment: passenger;
}

.passenger-item::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -17px;
  left: 50%;
  width: 2px;
  height: 25px;
  border-radius: 99px;
  background: var(--ink);
  transform: translateX(-50%) rotate(11deg);
  transform-origin: bottom;
}

.passenger-item::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 7px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 2px var(--accent);
  transform: translateX(-50%);
}

.is-active .passenger-item {
  animation: passenger-in 720ms calc(430ms + var(--index) * 125ms) cubic-bezier(.18, 1.35, .35, 1) forwards;
}

.passenger-item:nth-child(even) {
  --entry-x: -70px;
  --tilt: 1deg;
}

.passenger-item:nth-child(2) {
  --accent: #ff7bab;
  border-radius: 18px 24px 16px 13px;
}

.passenger-item:nth-child(3) {
  --accent: #68e0c1;
  --tilt: .7deg;
  border-radius: 25px 17px 13px 18px;
}

.passenger-item:nth-child(4) {
  --accent: #ff9c45;
  --tilt: -.7deg;
  border-radius: 17px 25px 19px 12px;
}

.passenger-item:nth-child(5) {
  --accent: #9d8cff;
  --tilt: 1.2deg;
}

.passenger-item:nth-child(6) {
  --accent: #70c8ff;
  --tilt: -1.2deg;
}

.passenger-number {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: -7px;
  display: grid;
  width: 34px;
  height: 25px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 5px;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 9px;
  font-weight: 900;
  transform: rotate(-8deg);
}

.passenger-number::before {
  content: counter(passenger, decimal-leading-zero);
}

.passenger-photo-frame {
  --photo-tilt: -2deg;
  position: relative;
  width: min(100%, 104px);
  display: block;
  margin: 3px auto 10px;
  padding: 5px 5px 13px;
  border: 2px solid var(--ink);
  border-radius: 9px 13px 8px 11px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--accent);
  transform: rotate(var(--photo-tilt));
}

.passenger-photo-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -8px;
  left: 50%;
  width: 39px;
  height: 14px;
  background: var(--accent);
  opacity: .72;
  transform: translateX(-50%) rotate(3deg);
}

.passenger-item:nth-child(even) .passenger-photo-frame {
  --photo-tilt: 2deg;
  border-radius: 13px 8px 12px 7px;
}

.passenger-item:nth-child(3n) .passenger-photo-frame::before {
  transform: translateX(-50%) rotate(-5deg);
}

.passenger-photo {
  width: 100%;
  aspect-ratio: 1 / .92;
  display: block;
  border: 1px solid var(--ink);
  border-radius: 5px 8px 4px 7px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.is-active .passenger-photo-frame {
  animation: portrait-wiggle 620ms calc(720ms + var(--index) * 125ms) ease both;
}

.passenger-name {
  display: block;
  min-width: 0;
  padding: 0;
  text-align: center;
}

.passenger-name strong,
.passenger-name span {
  display: block;
}

.passenger-name strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.passenger-name span,
.passenger-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.passenger-name span {
  width: max-content;
  margin: 6px auto 0;
  padding: 3px 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
}

.passenger-status {
  position: absolute;
  z-index: 5;
  right: -7px;
  bottom: 13px;
  display: block;
  padding: 4px 7px 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 1px 1px 0 var(--white);
  letter-spacing: .06em;
  transform: rotate(-7deg);
}

.screen-ticket {
  padding-top: 16px;
}

.screen-ticket h2 {
  font-size: clamp(34px, 10.5vw, 48px);
}

.boarding-pass {
  position: relative;
  margin: 27px 0 20px;
  border: 2px solid var(--ink);
  border-radius: 20px 15px 22px 17px;
  background:
    radial-gradient(circle at 6px 6px, rgb(20 32 51 / 5%) 0 1px, transparent 1.5px) 0 0 / 17px 17px,
    var(--white);
  box-shadow: 7px 8px 0 var(--blue), 10px 12px 0 var(--yellow), 0 24px 42px rgb(20 32 51 / 18%);
  opacity: 0;
  overflow: hidden;
  transform: rotate(-10deg) translateY(100px) scale(.72);
  transform-origin: center bottom;
}

.is-active .boarding-pass {
  animation: ticket-in 920ms 420ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.ticket-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 17px;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, transparent 0 9px, rgb(255 255 255 / 24%) 9px 13px),
    var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-topline::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -6px;
  left: 18px;
  height: 6px;
  background: radial-gradient(circle at 3px -1px, transparent 3px, var(--white) 3.5px) 0 0 / 12px 6px repeat-x;
}

.ticket-class {
  padding: 5px 8px 4px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: rgb(255 255 255 / 32%);
  font-size: 8px;
  transform: rotate(3deg);
}

.ticket-route {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  padding: 25px 17px 17px;
}

.ticket-route > div:last-child {
  text-align: right;
}

.ticket-route span,
.ticket-route small,
.ticket-details span,
.ticket-stub span {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticket-route strong {
  display: block;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -.05em;
  text-shadow: 2px 2px 0 #ffe97a;
}

.ticket-route small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticket-flight {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, #bbc0ca 0 3px, transparent 3px 6px);
}

.ticket-flight svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  padding: 3px;
  fill: var(--blue);
  background: var(--white);
  transform: translate(-50%, -50%) rotate(90deg);
}

.ticket-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 8px;
  padding: 16px 17px 20px;
  border-top: 2px solid var(--ink);
  background: rgb(255 255 255 / 66%);
}

.ticket-details strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.ticket-details > div:nth-child(5) strong {
  width: max-content;
  min-width: 31px;
  padding: 3px 6px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-3deg);
}

.ticket-stub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 16px;
  padding: 19px 17px 14px;
  border-top: 3px dashed var(--ink);
  background: #fff9dc;
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
}

.ticket-stub::before {
  left: -10px;
}

.ticket-stub::after {
  right: -10px;
}

.ticket-stub strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.ticket-number {
  margin-top: 12px;
}

.ticket-number b {
  color: var(--ink);
  font-size: 8px;
  letter-spacing: .04em;
}

.ticket-stub > small {
  grid-column: 1 / -1;
  color: #9299a5;
  font-size: 6px;
  letter-spacing: .18em;
}

.barcode-block {
  min-width: 0;
  text-align: center;
}

.barcode-block > span {
  margin-top: 5px;
  color: var(--ink);
  font-size: 7px;
  letter-spacing: .16em;
}

.barcode {
  position: relative;
  height: 58px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding: 0 3px 7px;
}

.barcode::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 3px 3px 7px 7px;
  background: var(--yellow);
}

.barcode span {
  --flame: #ff7b3d;
  position: relative;
  width: 5px;
  height: var(--candle-height);
  flex: 0 0 auto;
  border-radius: 1px 1px 0 0;
  background: var(--ink);
}

.barcode span:nth-child(3n) {
  width: 8px;
}

.barcode span:nth-child(4n) {
  width: 3px;
  --flame: #ff4e83;
}

.barcode span:nth-child(5n) {
  --flame: #2454ff;
}

.barcode span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 6px;
  height: 8px;
  border-radius: 70% 30% 65% 35%;
  background: var(--flame);
  box-shadow: inset 0 -2px 0 var(--yellow);
  transform: translateX(-50%) rotate(45deg) scale(.8);
  transform-origin: center bottom;
}

.is-active .barcode span::before {
  animation: candle-flicker 520ms calc(1.18s + var(--candle-delay)) ease-in-out 3 alternate;
}

.birthday-message {
  margin: 0 auto 15px;
  text-align: center;
}

.text-button {
  display: block;
  margin: 0 auto;
  padding: 8px 10px;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.app-footer {
  min-height: 48px;
  padding: 12px 22px;
  border-top: 1px solid #e7e8ec;
  color: #8d94a0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.app-footer strong {
  color: var(--ink);
}

@keyframes draw-route {
  to { transform: scaleX(1); }
}

@keyframes fly-route {
  0% { left: -8px; opacity: 0; transform: rotate(90deg) translateY(8px) scale(.7); }
  15% { opacity: 1; }
  55% { transform: rotate(90deg) translateY(-7px) scale(1.2); }
  100% { left: calc(100% - 22px); opacity: 1; transform: rotate(90deg) translateY(0) scale(1); }
}

@keyframes passenger-in {
  65% { opacity: 1; transform: translateX(0) rotate(-3deg) scale(1.08); }
  82% { opacity: 1; transform: translateX(0) rotate(2deg) scale(.98); }
  100% { opacity: 1; transform: translateX(0) rotate(var(--tilt)) scale(1); }
}

@keyframes portrait-wiggle {
  0%, 100% { transform: rotate(var(--photo-tilt)) scale(1); }
  45% { transform: rotate(4deg) scale(1.08); }
  70% { transform: rotate(-2deg) scale(.99); }
}

@keyframes candle-flicker {
  from { transform: translateX(-50%) rotate(39deg) scale(.72, .9); }
  to { transform: translateX(-50%) rotate(51deg) scale(.9, 1.06); }
}

@keyframes ticket-in {
  55% { opacity: 1; transform: rotate(3deg) translateY(-12px) scale(1.04); }
  78% { opacity: 1; transform: rotate(-2deg) translateY(5px) scale(.99); }
  100% { opacity: 1; transform: rotate(-1deg) translateY(0) scale(1); }
}

@keyframes title-in {
  70% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes photo-reveal {
  0% { clip-path: inset(0 100% 0 0 round 20px); transform: rotate(-3deg) scale(.94); }
  65% { clip-path: inset(0 0 0 0 round 20px); transform: rotate(1deg) scale(1.02); }
  100% { clip-path: inset(0 0 0 0 round 20px); transform: rotate(0) scale(1); }
}

@keyframes photo-drift {
  to { transform: scale(1.03) translateX(-1.5%); }
}

@keyframes date-sticker-in {
  0% { opacity: 0; transform: rotate(14deg) scale(.35); }
  70% { opacity: 1; transform: rotate(-3deg) scale(1.12); }
  100% { opacity: 1; transform: rotate(3deg) scale(1); }
}

@keyframes route-card-in {
  75% { opacity: 1; transform: translateY(-5px) rotate(-1deg) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@media (min-width: 520px) {
  body {
    padding: 28px 0;
  }

  .app-shell {
    width: min(100% - 32px, 480px);
    min-height: calc(100vh - 56px);
    min-height: calc(100svh - 56px);
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 28px 80px rgb(10 23 75 / 35%);
  }

  .screen {
    padding-right: 34px;
    padding-left: 34px;
  }

  .app-header,
  .app-footer {
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 359px) {
  .passenger-list {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .passenger-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 112px;
    padding: 16px 12px 12px 17px;
  }

  .passenger-photo-frame {
    width: 82px;
    margin: 0;
  }

  .passenger-name {
    padding-right: 5px;
    text-align: left;
  }

  .passenger-name span {
    margin-left: 0;
  }

  .passenger-status {
    right: -5px;
    bottom: 9px;
  }

  .ticket-route strong {
    font-size: 31px;
  }

  .ticket-stub {
    gap: 9px;
  }

  .barcode {
    gap: 2px;
  }
}

@media (max-height: 680px) {
  .app-header {
    min-height: 64px;
    padding-top: 14px;
  }

  .screen {
    padding-top: 12px;
  }

  .destination-photo {
    height: 155px;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
}
