* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- FONTS ---------- */

@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito_Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- ROOT ---------- */

:root {
  --app-bg: #ffffff;
  
}

/* ---------- ROOT / APP ---------- */

html {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  height: 100lvh;
  background-color: var(--app-bg);
  background-image: var(--app-bg-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100lvh;
  overflow: hidden;
  position: relative;
  background-color: var(--app-bg);
  background-image: var(--app-bg-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  font-family: "Nunito", sans-serif;
}

.app {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100lvh;
  overflow: hidden;
  background-color: var(--app-bg);
  background-image: var(--app-bg-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- MAIN SHELL ---------- */

.game-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: transparent;
}

/* Узкие экраны: fullscreen */
@media (max-aspect-ratio: 9 / 16) {
  .game-shell {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}

/* Широкие экраны, включая ПК: центрированный 9:16 */
@media (min-aspect-ratio: 9 / 16) {
  .game-shell {
    width: min(100vw, calc(100dvh * 9 / 16));
    height: min(100dvh, calc(100vw * 16 / 9));
    aspect-ratio: 9 / 16;
    max-width: 100vw;
    max-height: 100dvh;
  }
}

.intro-overlay,
.overlay,
.order-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

/* ---------- CANVAS ---------- */

canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  user-select: none;
}

.hidden {
  display: none !important;
}

.hide-game-layer {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ---------- HUD ---------- */

.hud {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  left: 12px;
  right: 12px;
  z-index: 20;
  pointer-events: none;
}

.hud-ui {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  pointer-events: none;
}

.hud-left,
.hud-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
  flex-shrink: 0;
}

.hud-left {
  align-items: flex-start;
}

.hud-right {
  align-items: flex-end;
}

.ui-action {
  position: relative;
  min-width: 178px;
  width: auto;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  overflow: visible;
}

.ui-action-green {
  background: #43b794;
}

.ui-action-purple {
  background: #5258b0;
}

.ui-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ui-badge {
  position: absolute;
  top: -6px;
  left: 100%;
  margin-left: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #f06a37;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}

.score-card {
  position: relative;
  width: 142px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 16px 12px 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

.score-card-title {
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  margin-top: 0;
}

.score-progress-card {
  padding: 16px 12px 12px;
}

.score-card-progress {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: #000;
  font-weight: 900;
  line-height: 1;
}

#scoreCurrent {
  font-size: 34px;
}

.score-card-separator {
  font-size: 22px;
  opacity: 0.8;
}

#scoreTarget {
  font-size: 22px;
  opacity: 0.92;
}

.lives-card {
  width: 142px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  pointer-events: auto;
}

.heart {
  font-size: 22px;
  line-height: 1;
  color: #f05a35;
  opacity: 0.22;
  transform: translateY(-1px);
}

.heart.is-active {
  opacity: 1;
}

/* ---------- OVERLAY ---------- */

.overlay {
  z-index: 100;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    calc(env(safe-area-inset-top, 0px) + 20px)
    calc(env(safe-area-inset-right, 0px) + 20px)
    calc(env(safe-area-inset-bottom, 0px) + 20px)
    calc(env(safe-area-inset-left, 0px) + 20px);
}

.modal {
  width: min(90vw, 340px);
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.modal h1,
.modal h2 {
  margin: 0 0 12px;
  color: #2d1f52;
  line-height: 1.1;
}

.modal p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.45;
  color: #45385f;
}

button {
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  background: #6f35d0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  opacity: 0.65;
  cursor: default;
}

/* ---------- ORDER SCREEN ---------- */

.order-screen {
  position: absolute;
  inset: 0;
  z-index: 300;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(104, 161, 255, 0.22), transparent 30%),
    radial-gradient(circle at top left, rgba(67, 183, 148, 0.16), transparent 28%),
    linear-gradient(180deg, #f7f8fc 0%, #eef2f7 100%);
}

.order-screen-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.order-content {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top, 0px) + 14px)
    20px
    calc(env(safe-area-inset-bottom, 0px) + 32px);
}

/* ---------- TOPBAR ---------- */

.order-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.order-topbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.order-topbar-logo:hover,
.order-topbar-logo:active {
  transform: none;
  box-shadow: none;
}

.order-topbar-logo-img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
}

.order-topbar-menu {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 20px rgba(16, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.order-topbar-menu span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.order-topbar-menu:active {
  transform: scale(0.98);
}

/* ---------- HERO ---------- */

.order-hero {
  margin-bottom: 18px;
}

.order-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(67, 183, 148, 0.12);
  color: #1f7c62;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.order-hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #43b794;
  box-shadow: 0 0 0 6px rgba(67, 183, 148, 0.12);
  flex-shrink: 0;
}

.order-title {
  margin: 16px 0 10px;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111827;
}

.order-subtitle {
  margin: 0;
  max-width: 420px;
  font-size: 17px;
  line-height: 1.5;
  color: #5b6472;
}

/* ---------- ORDER CARD ---------- */

.order-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 30px rgba(30, 41, 59, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.order-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.order-card-row:last-child {
  border-bottom: none;
}

.order-card-label {
  font-size: 15px;
  line-height: 1.4;
  color: #6b7280;
}

.order-card-value {
  text-align: right;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  color: #111827;
}

.order-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(67, 183, 148, 0.14);
  color: #16785c;
}

/* ---------- Пропустить игру---------- */
.debug-win-btn {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  right: 14px;
  z-index: 260;

  border: none;
  border-radius: 999px;
  padding: 10px 14px;

  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.debug-win-btn:active {
  transform: scale(0.97);
}

.hide-game-layer + .debug-win-btn {
  display: none;
}

/* ---------- CALL SCREEN ---------- */

.call-overlay {
  position: absolute;
  inset: 0;
  z-index: 160;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3c316;
}

.call-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}


.mission-complete-modal {
  width: min(90vw, 340px);
}

.mission-complete-modal h2 {
  margin-bottom: 12px;
}

.mission-complete-modal p {
  margin-bottom: 18px;
}


/* 🔥 ОСНОВНАЯ ЛОГИКА РАЗДВИЖЕНИЯ */
.call-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 52px);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  /* ключ */
  padding-left: calc(32px + env(safe-area-inset-left, 0px));
  padding-right: calc(32px + env(safe-area-inset-right, 0px));

  gap: 0;
  z-index: 2;
}

.call-action {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
  cursor: pointer;
  min-width: 130px;
}

.call-action-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.call-action-decline .call-action-icon-wrap {
  background: #f45b55;
}

.call-action-answer .call-action-icon-wrap {
  background: #42bfa1;
}

.call-action-icon {
  width: 44px; /* чуть больше */
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  object-fit: contain;
  filter: brightness(0) invert(1);

  transform-origin: center center;
}

/* 🎯 ВИЗУАЛЬНОЕ ЦЕНТРИРОВАНИЕ */
.call-action-icon-answer {
  transform: translateY(1px) rotate(0deg);
}

.call-action-icon-decline {
  transform: translateY(-1px) rotate(139deg);
}

.call-action-label {
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #111;
  font-weight: 700;
  text-align: center;
}

/* 📱 ПРАВИЛЬНЫЙ БРЕЙКПОИНТ ДЛЯ iPhone */
@media (max-width: 430px) {
  .call-actions {
    padding-left: calc(24px + env(safe-area-inset-left, 0px));
    padding-right: calc(24px + env(safe-area-inset-right, 0px));
    bottom: calc(env(safe-area-inset-bottom, 0px) + 46px);
  }
}

  .call-action {
    min-width: 120px;
    gap: 12px;
  }

  .call-action-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .call-action-icon {
    width: 40px;
    height: 40px;
  }

  .call-action-label {
    font-size: 16px;
  }


/* ---------- PROMO CARD ---------- */

.promo-card {
  position: relative;
  margin-top: 20px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 358 / 270;
  min-height: 270px;
  background: #0d1120;
  box-shadow:
    0 20px 44px rgba(18, 20, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.promo-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("img/bg_button.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.promo-card-ufo {
  position: absolute;
  z-index: 1;
  top: 12%;
  left: 50%;
  width: 140%;
  height: 140%;
  pointer-events: none;
  background-image: url("img/tarelka.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  transform: translateX(-50%);
  transform-origin: center center;
  animation: promoUfoFloat 8s ease-in-out infinite;
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 20, 0.88) 0%,
      rgba(5, 8, 20, 0.70) 35%,
      rgba(5, 8, 20, 0.30) 60%,
      rgba(5, 8, 20, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 20, 0.35) 0%,
      rgba(5, 8, 20, 0.15) 40%,
      rgba(5, 8, 20, 0.55) 100%
    );
}

.promo-card-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

.promo-card-content {
  max-width: 330px;
  padding-top: 2px;
}

.promo-kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd76a;
}

.promo-title {
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.promo-text {
  margin: 0;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ---------- CTA ---------- */

.play-btn {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  min-height: 62px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd95a 0%, #f6bf2d 100%);
  box-shadow:
    0 16px 28px rgba(246, 191, 45, 0.28),
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    inset 0 -5px 0 rgba(165, 113, 8, 0.28);
  color: #1a1d2a;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  overflow: hidden;
}

.play-btn-text {
  position: relative;
  z-index: 2;
}

.play-btn-shine {
  position: absolute;
  top: 0;
  left: -38%;
  width: 24%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-22deg);
  animation: promoButtonShine 2.8s ease-in-out infinite;
}

.play-btn:hover .play-btn-shine {
  left: 110%;
}

.play-btn:hover {
  transform: translateY(-1px);
}

.play-btn:active {
  transform: translateY(1px);
}

/* ---------- GIFTS ---------- */

.gifts-modal {
  width: min(92vw, 360px);
  max-height: min(80vh, 560px);
  overflow: auto;
}

.gifts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
  text-align: left;
}

.gift-card {
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6f4ff;
  box-shadow: inset 0 0 0 1px rgba(82, 88, 176, 0.12);
}

.gift-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #2d1f52;
  margin-bottom: 6px;
}

.gift-card-meta,
.gift-card-id {
  font-size: 13px;
  line-height: 1.4;
  color: #5a5270;
}

#giftsBackBtn {
  width: 100%;
}

/* ---------- INTRO ---------- */

.intro-overlay {
  z-index: 120;
  background: #000;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  z-index: 121;
}

.intro-video-source {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- WIN OVERLAY ---------- */

#winOverlay .modal {
  max-width: 340px;
}

/* ---------- ANIMATIONS ---------- */

@keyframes promoUfoFloat {
  0% {
    transform: translateX(-50%) translateY(0px) scale(1);
  }
  25% {
    transform: translateX(-52%) translateY(8px) scale(1.02);
  }
  50% {
    transform: translateX(-49%) translateY(16px) scale(1.04);
  }
  75% {
    transform: translateX(-47%) translateY(8px) scale(1.02);
  }
  100% {
    transform: translateX(-50%) translateY(0px) scale(1);
  }
}

@keyframes promoButtonShine {
  0% {
    left: -38%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  35% {
    left: 114%;
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  100% {
    left: 114%;
    opacity: 0;
  }
}

/* ---------- DESKTOP ---------- */

@media (min-width: 1024px) {
  .order-content {
    max-width: 620px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .order-title {
    font-size: 44px;
  }

  .promo-title {
    font-size: 32px;
  }

  .promo-card {
    min-height: 300px;
  }
}

/* ---------- TABLET / MOBILE ---------- */

@media (max-width: 768px) {
  .order-content {
    max-width: 520px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .order-title {
    font-size: 34px;
  }

  .order-subtitle {
    font-size: 16px;
  }

  .promo-title {
    font-size: 24px;
  }

  .promo-text {
    font-size: 15px;
  }

  .play-btn {
    min-height: 58px;
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .order-content {
    padding:
      calc(env(safe-area-inset-top, 0px) + 12px)
      16px
      calc(env(safe-area-inset-bottom, 0px) + 28px);
  }

  .order-topbar {
    margin-bottom: 16px;
  }

  .order-topbar-logo-img {
    height: 40px;
    max-width: 170px;
  }

  .order-topbar-menu {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .order-title {
    font-size: 30px;
  }

  .order-subtitle {
    font-size: 16px;
  }

  .order-card,
  .promo-card {
    border-radius: 22px;
  }

  .promo-card {
    padding: 20px;
    aspect-ratio: 358 / 286;
    min-height: 286px;
  }

  .promo-card-ufo {
    top: 14%;
    left: 50%;
    width: 150%;
    height: 150%;
  }

  .promo-card-inner {
    align-items: flex-start;
    padding-top: 0;
  }

  .promo-title {
    font-size: 24px;
  }

  .promo-text {
    max-width: 290px;
    font-size: 15px;
  }

  .order-card-row {
    padding: 12px 2px;
  }

  .order-card-value {
    font-size: 16px;
  }

  .play-btn {
    left: 20px;
    right: 20px;
    bottom: 20px;
    min-height: 58px;
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .hud {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    left: 8px;
    right: 8px;
  }

  .hud-ui {
    gap: 8px;
  }

  .ui-action {
    min-width: 150px;
    min-height: 42px;
    font-size: 15px;
    padding: 0 12px;
  }

  .ui-badge {
    top: -4px;
    margin-left: -4px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    padding: 0 4px;
  }

  .score-card,
  .lives-card {
    width: 122px;
  }

  .score-card {
    padding: 12px 8px 8px;
  }

  .score-card-title {
    font-size: 11px;
  }

  #scoreCurrent {
    font-size: 24px;
  }

  .score-card-separator,
  #scoreTarget {
    font-size: 16px;
  }

  .heart {
    font-size: 17px;
  }

  .order-topbar-logo-img {
    height: 36px;
    max-width: 156px;
  }

  .order-topbar-menu {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .order-title {
    font-size: 28px;
  }

  .promo-card-ufo {
    top: 16%;
    left: 50%;
    width: 155%;
    height: 155%;
  }

  .promo-title {
    font-size: 22px;
  }

  .promo-text {
    font-size: 14px;
  }

  .play-btn {
    min-height: 56px;
    font-size: 18px;
  }
}