:root {
  color: #211f1d;
  background: #e9e0d5;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html {
  min-width: 320px;
  min-height: 100%;
  background-color: #e9e0d5;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background-color: #e9e0d5;
  font-family: var(--merxi-font-ui, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif);
}

noscript {
  display: block;
  padding: 24px;
  text-align: center;
}

.demo-money-accessory {
  display: grid;
  min-width: 156px;
  min-height: 54px;
  align-content: center;
  gap: 3px;
  padding: 7px 12px;
  border: 1px solid rgba(225, 172, 91, 0.45);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 24px rgba(100, 68, 36, 0.08);
  white-space: nowrap;
}

.demo-money-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #9a7448;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.demo-money-label small {
  color: #e7514c;
  font-size: 7px;
  letter-spacing: 0.07em;
}

.demo-money-amount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #24211e;
}

.demo-money-amount strong {
  font-family: var(--coin-number-font);
  font-size: 22px;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
}

.demo-money-amount img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@container coin-flip-stage (max-width: 720px) {
  .demo-money-accessory {
    min-width: 118px;
    min-height: 42px;
    padding: 5px 8px;
    border-radius: 14px;
  }

  .demo-money-label {
    font-size: 6.5px;
    letter-spacing: 0.08em;
  }

  .demo-money-label small {
    font-size: 6px;
  }

  .demo-money-amount {
    gap: 5px;
  }

  .demo-money-amount strong {
    font-size: 17px;
  }

  .demo-money-amount img {
    width: 17px;
    height: 17px;
  }
}

@container coin-flip-stage (max-width: 360px) {
  .demo-money-accessory {
    min-width: 104px;
    padding-inline: 7px;
  }

  .demo-money-label small {
    display: none;
  }

  .demo-money-amount strong {
    font-size: 15px;
  }
}
