:root {
  --ink: #20334c;
  --muted: #708299;
  --line: #dbe5ef;
  --dark: #243f62;
  --lime: #ffd165;
  color: var(--ink);
  background: #eef3fa;
}
.boot-screen {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  color: #284f75;
}
.boot-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ffd165;
  box-shadow: 0 6px 0 #d9a846;
  font-size: 42px;
  font-weight: 800;
}
.boot-screen h1 {
  margin: 8px 0 0;
  font-size: 27px;
}
.boot-screen p {
  margin: 0;
  font-size: 14px;
  color: #59738d;
}
.boot-screen progress {
  width: 220px;
  height: 7px;
  accent-color: #168fbe;
}
.weapon-small {
  width: 38px;
  height: 32px;
  object-fit: contain;
}
.shop-loadout > .empty-weapon {
  justify-content: center;
  border: 1px dashed #bed1df;
  background: transparent;
  color: #94a9bd;
  min-height: 50px;
  font-size: 12px;
}
.shop-offers > button > span > img {
  width: 88px;
  height: 70px;
  object-fit: contain;
}
.shop-offers > button:has(img) > span {
  width: 100%;
  height: 72px;
  background: linear-gradient(140deg, #eff8ff, #dcecf6);
}
* {
  letter-spacing: 0 !important;
}
.site-header {
  height: 74px;
  margin: 0 32px;
  gap: 42px;
  border-color: #d4e0ed;
}
.brand > svg {
  background: #ffce53;
  color: #243e5b;
  border-radius: 8px;
}
.brand small {
  color: #6c829a;
}
.brand > span {
  color: #233e62;
}
.header-nav > .current {
  color: #168ac0;
}
.header-nav > .current:after {
  background: #28aad5;
}
.header-tools .icon-button,
.icon-button,
.game-back {
  border-color: #d3dfed;
  background: #fff;
  color: #466384;
  border-radius: 8px;
}
.lobby-main {
  padding: 0 32px;
}
.hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 22px 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
}
.hero-copy {
  padding: 0;
  flex: 1;
}
.hero-copy h1 {
  font-size: 26px;
  line-height: 1.35;
  margin: 5px 0 7px;
  color: #233e62;
}
.hero-copy p {
  font-size: 13px;
  line-height: 1.6;
  color: #71839a;
}
.eyebrow {
  color: #248bbb;
  font-size: 10px;
}
.hero-side {
  padding: 0 0 0 24px;
  border-left: 1px solid #d4dfed;
  min-width: 175px;
  width: auto;
  align-self: center;
  background: none;
}
.hero-side strong {
  font-size: 30px;
  line-height: 1.2;
  color: #294b71;
}
.hero-side strong span {
  font-size: 12px;
}
.hero-side p {
  font-size: 11px;
  margin: 4px 0;
}
.overall-track {
  height: 4px;
  margin: 7px 0;
  background: #d5e0ed;
}
.overall-track i {
  background: #1aa2cb;
}
.star-total {
  font-size: 11px;
  gap: 5px;
  color: #62738b;
}
.star-total svg {
  fill: #ffda66;
  color: #e1ad32;
  width: 15px;
}
.solid-button {
  background: #168fbe;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 0 #116b91;
  padding: 12px 19px;
  font-size: 13px;
}
.solid-button:hover {
  background: #117da9;
}
.outline-button {
  background: #fff;
  border: 1px solid #cfdae8;
  color: #335677;
  border-radius: 8px;
}
.section-heading {
  margin: 4px 0 16px;
}
.section-heading h2 {
  font-size: 21px;
}
.section-heading .eyebrow {
  display: none;
}
.library-filter {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.library-count {
  font-size: 11px;
  color: #75899f;
}
.difficulty-tabs {
  background: #e1eaf3;
  border-radius: 8px;
}
.difficulty-tabs button {
  color: #526e8a;
  border-radius: 6px;
}
.difficulty-tabs button[aria-pressed="true"] {
  background: #284f75;
  color: #fff;
}
.difficulty-tabs.compact button {
  min-height: 40px;
  padding: 6px 18px;
}
.games-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.game-card {
  border: 1px solid #d6e1ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 0 #d7e2ec;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 18px #21476620;
  border-color: #72b8d8;
}
.game-cover {
  aspect-ratio: 1.8;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.game-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transition: transform 0.25s;
}
.game-card:hover img {
  transform: scale(1.035);
}
.cover-number {
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  background: #163b5bda;
  border: 1px solid #ffffff30;
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
}
.cover-play {
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  background: #fff0b8;
  border-radius: 50%;
  color: #224566;
  border: 2px solid #fff;
}
.cover-play svg {
  width: 18px;
  fill: #254863;
}
.card-details {
  padding: 14px 16px 12px;
}
.card-details h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #243e5d;
}
.card-bottom > span {
  font-size: 10px;
  color: #6b819b;
}
.card-bottom > strong {
  font-size: 11px;
  color: #4086a6;
}
.card-progress {
  margin-top: 11px;
  gap: 5px;
}
.card-progress i {
  height: 4px;
  background: #e5edf4;
}
.card-progress .done {
  background: #3dbb97;
}
.lobby-footer {
  color: #8b9aae;
  font-size: 11px;
  margin: 22px 0;
  padding: 0;
}
.resume-banner {
  background: #d9edf8;
  border: 0;
  border-radius: 0;
}
.resume-banner strong {
  color: #244765;
}
.in-game {
  background: #12263d;
}
.play-header {
  height: 76px;
  padding: 0 28px;
  background: #f4f8fc;
}
.game-heading h2 {
  color: #234665;
  font-size: 20px;
}
.game-heading > span {
  color: #349ac0;
}
.game-level {
  color: #69839c;
  font-size: 12px;
}
.play-body {
  padding: 14px 20px 18px;
}
.game-frame {
  border-radius: 8px;
  border: 1px solid #436382;
  box-shadow: none;
}
.game-hud,
.game-footer {
  background: #203c58;
  color: #dcecff;
}
.game-hud #detail {
  color: #9cbed8;
  font-size: 11px;
}
.game-hud #goal {
  color: #fff;
  font-size: 15px;
}
.game-footer {
  font-size: 10px;
}
.game-footer span {
  color: #bad4e5;
}
.touch-action {
  background: #e9f6ffdf;
  border: 2px solid #fff;
  color: #21486a;
  box-shadow: 0 4px 0 #17314b80;
  backdrop-filter: none;
}
.secondary-action {
  background: #8fdaedd9;
  border: 2px solid #cbf4ff;
}
.touch-action.pressed {
  background: #ffd364;
  color: #263c58;
  transform: scale(0.95);
}
.joystick {
  background: #16385570;
  border: 2px solid #99d6f0a0;
  box-shadow: inset 0 0 0 14px #c2ebff15;
}
.knob {
  background: #e0f6ffdd;
  color: #326685;
  border: 2px solid #fff;
}
dialog {
  background: #f6f9fd;
  border: 1px solid #c8d9ea;
  border-radius: 10px;
  box-shadow: 0 20px 80px #102a4c66;
  color: #25425f;
  max-height: 92dvh;
}
dialog::backdrop {
  background: #10283cc4;
  backdrop-filter: blur(3px);
}
.dialog-description,
.difficulty-description {
  color: #6d8299;
}
.dialog-heading h2 {
  font-size: 24px;
}
.level-row {
  border-color: #d5e2ee;
  background: #fff;
  border-radius: 7px;
}
.level-row.selected {
  background: #dff3fc;
  border-color: #66bcdf;
}
.level-name strong {
  color: #2d516f;
}
.level-name small {
  color: #7b8c9e;
}
.level-number {
  color: #81a7bd;
}
.level-rating {
  color: #1da3c9;
}
.level-explanation,
.dialog-footnote {
  color: #7c8ea2;
}
.mode-tabs,
.loadout-tabs {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mode-tabs button,
.loadout-tabs button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid #d5e1ee;
  border-radius: 7px;
  background: #fff;
  text-align: left;
}
.mode-tabs button[aria-pressed="true"],
.loadout-tabs button[aria-pressed="true"] {
  border-color: #199bce;
  background: #e2f5fd;
  box-shadow: inset 0 0 0 1px #199bce;
}
.mode-tabs small,
.loadout-tabs small {
  width: 100%;
  line-height: 1.6;
  font-size: 11px;
  color: #6e849b;
}
.loadout-tabs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.loadout-tabs button {
  justify-content: center;
  text-align: center;
}
.loadout-tabs img {
  height: 64px;
  width: 64px;
  object-fit: contain;
}
.loadout-tabs strong {
  width: 100%;
}
.shop-dialog {
  width: min(880px, calc(100% - 24px));
}
.material-count {
  display: flex;
  gap: 8px;
  color: #208e97;
  font-size: 23px;
}
.shop-loadout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}
.shop-loadout > div {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px;
  background: #e7eef6;
  border-radius: 6px;
  min-width: 0;
}
.shop-loadout b {
  font-size: 11px;
  flex: 1;
}
.shop-loadout button {
  width: 30px;
  height: 32px;
  flex-shrink: 0;
}
.shop-loadout svg {
  width: 17px;
}
.shop-offers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.shop-offers > button {
  border: 1px solid #d2e2ec;
  background: #fff;
  padding: 20px 12px;
  border-radius: 7px;
  text-align: left;
  min-height: 175px;
}
.shop-offers > button > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  background: #e0f3fa;
  color: #168bb5;
  margin-bottom: 14px;
}
.shop-offers h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.shop-offers p {
  font-size: 11px;
  color: #69859a;
  line-height: 1.6;
  min-height: 36px;
}
.shop-offers strong {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #238d89;
}
.upgrade-grid > button {
  border-radius: 8px;
  background: #fff;
  border-color: #cfdeec;
}
.upgrade-grid h3 {
  color: #234766;
}
.upgrade-grid p {
  color: #69849a;
}
@media (max-width: 800px) {
  .site-header {
    margin: 0 20px;
    gap: 22px;
  }
  .lobby-main {
    padding: 0 20px;
  }
  .hero-copy h1 {
    font-size: 23px;
  }
  .hero {
    gap: 16px;
  }
  .hero-side {
    display: none;
  }
  .games-grid {
    gap: 14px;
  }
  .card-details {
    padding: 12px;
  }
  .card-details h3 {
    font-size: 18px;
  }
  .library-count {
    display: none;
  }
  .game-cover {
    aspect-ratio: 1.4;
  }
  .play-header {
    padding: 0 15px;
  }
  .game-heading h2 {
    font-size: 16px;
  }
  .shop-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-loadout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 550px) {
  .site-header {
    height: 66px;
    margin: 0 16px;
    gap: 14px;
  }
  .brand > span {
    font-size: 20px;
  }
  .lobby-main {
    padding: 0 16px;
  }
  .hero {
    padding: 20px 0;
  }
  .hero-copy h1 {
    font-size: 20px;
  }
  .hero-copy p {
    font-size: 11px;
  }
  .hero #hero-start {
    display: none;
  }
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .section-heading {
    margin: 0 0 14px;
  }
  .section-heading h2 {
    font-size: 18px;
  }
  .difficulty-tabs.compact button {
    padding: 6px 10px;
    min-height: 38px;
  }
  .card-details h3 {
    font-size: 17px;
  }
  .card-bottom {
    gap: 5px;
    flex-wrap: wrap;
  }
  .card-bottom > span {
    font-size: 9px;
  }
  .cover-number {
    font-size: 8px;
    top: 6px;
    left: 6px;
  }
  .game-cover {
    aspect-ratio: 1.2;
  }
  .cover-play {
    width: 30px;
    height: 30px;
    right: 8px;
    bottom: 8px;
  }
  .loadout-tabs {
    gap: 6px;
  }
  .loadout-tabs button {
    padding: 8px 4px;
  }
  .loadout-tabs img {
    height: 52px;
    width: 52px;
  }
  .loadout-tabs small {
    font-size: 9px;
  }
  .mode-tabs button {
    padding: 10px;
  }
  .mode-tabs strong {
    font-size: 12px;
  }
  .play-body {
    padding: 8px;
  }
  .game-level {
    font-size: 10px;
  }
  .game-footer {
    padding: 8px;
  }
  .shop-loadout > div {
    padding: 6px;
  }
  .shop-offers {
    gap: 8px;
  }
  .shop-offers > button {
    padding: 12px;
    min-height: 160px;
  }
}
@media (orientation: landscape) and (max-height: 520px) {
  .play-header {
    height: 47px;
  }
  .play-body {
    padding: 4px 8px 7px;
  }
  .game-hud {
    min-height: 40px;
    padding: 6px 15px;
  }
  .game-footer {
    min-height: 24px;
    padding: 5px 12px;
  }
  .joystick {
    width: 86px;
    height: 86px;
    bottom: 12px;
  }
  .touch-action {
    width: 67px;
    height: 67px;
  }
  .secondary-action {
    width: 54px;
    height: 54px;
  }
  .touch-buttons {
    bottom: 10px;
  }
}

/* Controls and information that stay legible during a full run. */
.quick-controls {
  font-size: 12px;
  line-height: 1.65;
  color: #426684;
  margin: -2px 0 16px;
}
.field-guide {
  margin: 12px 0 20px;
  border: 1px solid #d5e3ef;
  border-radius: 10px;
  background: #edf4fa;
}
.field-guide summary {
  cursor: pointer;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 13px;
  color: #365a79;
}
.field-guide summary svg {
  width: 17px;
  height: 17px;
  vertical-align: -4px;
  margin-right: 7px;
}
.field-guide summary:focus-visible {
  outline: 3px solid #4db5db;
  outline-offset: 2px;
  border-radius: 8px;
}
.guide-controls {
  display: grid;
  gap: 12px;
  padding: 4px 16px 16px;
}
.guide-controls > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-controls > div > svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 8px;
  color: #2385ae;
  background: #dceef7;
  flex-shrink: 0;
}
.guide-controls strong {
  display: block;
  font-size: 13px;
  color: #284d6b;
}
.guide-controls small {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #56718b;
  margin-top: 2px;
}
.guide-stars {
  border-top: 1px solid #d6e3ee;
  padding: 8px 16px;
}
.guide-stars p {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 8px 0;
  font-size: 12px;
  line-height: 1.55;
}
.guide-stars b {
  color: #a67b14;
  width: 48px;
  flex-shrink: 0;
}
.guide-stars span {
  color: #4b6681;
}
.guide-tips {
  padding-left: 21px;
  font-size: 13px;
  line-height: 1.85;
  color: #4b6681;
  margin: 10px 0 22px;
}
.guide-tips li {
  padding: 3px 0 3px 3px;
}
.help-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.help-title img {
  width: 108px;
  height: 84px;
  border-radius: 10px;
  object-fit: cover;
}
.help-title h2 {
  margin: 5px 0;
}
.help-title p {
  margin: 0;
  font-size: 12px;
  color: #69839c;
}
.help-dialog {
  width: min(580px, 94vw);
}
.help-dialog .solid-button {
  width: 100%;
}
.level-dialog .dialog-actions,
.shop-dialog .dialog-actions {
  position: sticky;
  bottom: -28px;
  padding: 16px 0 8px;
  background: #f6f9fdfa;
  border-top: 1px solid #d6e3ee;
  z-index: 2;
}
.build-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid #d3e4ef;
  border-radius: 9px;
  background: #eaf3fa;
  font-size: 12px;
  color: #52708a;
}
.build-summary b {
  color: #254e6e;
  margin-left: 4px;
}
.shop-note {
  font-size: 12px;
  line-height: 1.7;
  color: #56728a;
  margin: 12px 0 15px;
}
.shop-offers > button > p {
  font-size: 12px;
  line-height: 1.65;
  min-height: 58px;
  color: #52708a;
}
.shop-offers > button:disabled {
  opacity: 0.58;
}
.shop-offers > button:focus-visible {
  outline: 3px solid #268fbc;
  outline-offset: 3px;
}
.result-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d5e3ee;
  border-radius: 10px;
  background: #edf5fb;
  margin: 20px 0 14px;
}
.result-metrics > div {
  text-align: center;
  padding: 17px 6px;
  border-right: 1px solid #d5e3ee;
}
.result-metrics > div:last-child {
  border: 0;
}
.result-metrics strong {
  display: block;
  font-size: 19px;
  line-height: 1.5;
  color: #284f75;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.result-metrics span {
  font-size: 11px;
  color: #58758f;
}
.result-advice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  background: #fff3d8;
  border-radius: 9px;
  color: #7b6234;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  margin: 0 0 20px;
}
.result-advice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.backup-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.backup-actions > button {
  flex: 1;
}
.volume-setting input[type="range"] {
  width: 46%;
  accent-color: #188fbc;
}
.volume-setting b {
  font-size: 12px;
  font-weight: 500;
  color: #64829b;
}
.game-hud #detail {
  font-size: 12px;
}
.game-hud #goal {
  font-size: 16px;
}
.game-footer {
  font-size: 11px;
}
.health-number {
  color: #ceeca9;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
#clock {
  font-variant-numeric: tabular-nums;
}
#clock.time-low {
  color: #ffbaa0;
}
.play-tools {
  gap: 8px;
}
.touch-action > span {
  font-size: 12px;
}
.secondary-action.cooling {
  background: #7798b2e6;
  color: #e6f3ff;
  border-color: #adc4d6;
}
#launch-ball {
  min-width: 100px;
  font-size: 14px;
}
.dialog-description,
.difficulty-description {
  color: #526e86;
}
.icon-button.muted {
  opacity: 0.55;
}
@media (max-width: 800px) {
  .library-filter {
    gap: 10px;
  }
  .library-count {
    font-size: 10px;
  }
  .result-metrics strong {
    font-size: 17px;
  }
}
@media (max-width: 550px) {
  #fullscreen {
    display: none;
  }
  .play-header {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .play-tools {
    gap: 5px;
  }
  .play-tools .icon-button,
  .game-back {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
  .game-heading {
    min-width: 0;
  }
  .game-heading h2 {
    font-size: 15px;
  }
  .game-heading > span {
    font-size: 9px;
  }
  .game-hud #goal {
    font-size: 13px;
  }
  .game-hud #detail {
    font-size: 10px;
  }
  .library-filter {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .library-count {
    font-size: 10px;
  }
  .quick-controls {
    font-size: 11px;
  }
  .field-guide summary {
    font-size: 12px;
  }
  .guide-controls small {
    font-size: 11px;
  }
  .result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .result-metrics > div {
    padding: 12px 6px;
  }
  .result-metrics > div:nth-child(2) {
    border-right: 0;
  }
  .result-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid #d5e3ee;
  }
  .result-metrics strong {
    font-size: 18px;
  }
  .build-summary {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
  }
  .help-title img {
    width: 86px;
    height: 72px;
  }
  .help-title {
    gap: 13px;
  }
  .level-dialog .dialog-actions,
  .shop-dialog .dialog-actions {
    bottom: -20px;
  }
  .backup-actions {
    flex-direction: column;
  }
}
@media (orientation: landscape) and (max-height: 520px) {
  .play-tools .icon-button {
    width: 30px;
    height: 30px;
  }
  .game-hud #goal {
    font-size: 12px;
  }
  .game-hud #detail {
    font-size: 10px;
  }
  .help-title {
    margin-bottom: 10px;
  }
  .help-title img {
    width: 80px;
    height: 50px;
  }
  .guide-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .guide-controls > div {
    align-items: flex-start;
    gap: 6px;
  }
  .guide-controls > div > svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}

.portrait-guide {
  display: none;
}
@media (max-width: 550px) and (orientation: portrait) {
  .portrait-guide {
    display: block;
    position: absolute;
    top: calc(var(--portrait-scene-height) + 16px);
    bottom: 154px;
    left: 18px;
    right: 18px;
    overflow: hidden;
    color: #c5deee;
    font-size: 12px;
    line-height: 1.75;
    pointer-events: none;
    border-top: 1px solid #99cbea30;
    padding-top: 14px;
  }
  .portrait-heading {
    display: flex;
    gap: 7px;
    align-items: center;
  }
  .portrait-heading > svg {
    width: 15px;
    height: 15px;
    color: #ffdb8b;
  }
  .portrait-heading strong {
    color: #eff9ff;
    font-size: 13px;
  }
  .portrait-heading small {
    margin-left: auto;
    color: #91adc2;
    font-size: 10px;
  }
  .portrait-guide p {
    margin: 10px 0;
  }
  .portrait-actions {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }
  .portrait-actions span {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #9abdc133;
    background: #36546950;
    border-radius: 6px;
    padding: 5px 7px;
    font-size: 10px;
  }
  .portrait-actions svg {
    width: 14px;
    height: 14px;
    color: #b1deed;
  }
  .portrait-tip {
    color: #a9c5d5;
    font-size: 11px;
  }
}
@media (max-width: 550px) and (orientation: portrait) and (max-height: 720px) {
  .portrait-guide {
    top: calc(var(--portrait-scene-height) + 8px);
    padding-top: 7px;
    bottom: 125px;
    font-size: 11px;
    line-height: 1.5;
  }
  .portrait-actions,
  .portrait-tip {
    display: none;
  }
}
