.ag-game {
  --ag-lime: #ccff5f;
  --ag-muted: #85858f;
  --ag-line: #2a2b34;
  color: #f4f5f3;
  font-family: inherit;
  max-width: 760px;
  margin: auto;
  padding: 8px 0 4px;
}

.ag-game * {
  box-sizing: border-box;
}

.ag-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 24px;
  gap: 15px;
}

.ag-eyebrow {
  color: var(--ag-lime);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 750;
}

.ag-heading h2 {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -1.5px;
  line-height: 1.14;
  margin: 8px 0;
}

.ag-heading p {
  font-size: 13px;
  color: #92929e;
  margin: 0;
}

.ag-game-mark {
  color: var(--ag-lime);
  font-size: 42px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #ccff5f25;
  border-radius: 19px;
  background: #ccff5f08;
}

.ag-stage {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  background:
    radial-gradient(ellipse at 50% 15%, #2a303033, transparent 75%), #101116;
  border: 1px solid #2a2d35;
  min-height: 320px;
}

.ag-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(#000, transparent);
}

.ag-stage-top,
.ag-stage-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #767c83;
  letter-spacing: 1.3px;
  font-size: 8px;
  font-weight: 700;
  padding: 18px 20px;
}

.ag-stage-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ag-stage-top i {
  width: 5px;
  height: 5px;
  background: var(--ag-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px #ccff5f50;
}

.ag-stage-status {
  color: #aeb7a5;
  text-align: right;
}

.ag-stage-foot {
  justify-content: center;
  padding: 15px 16px;
  font-size: 8px;
  letter-spacing: 1.7px;
}

.ag-board {
  position: relative;
  z-index: 1;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
}

.ag-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
  margin: 23px 0 18px;
}

.ag-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9698a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 9px;
}

.ag-label > span {
  color: #646a70;
  font-size: 9px;
}

.ag-stake-field,
.ag-target-field {
  display: flex;
  align-items: center;
  border: 1px solid #353740;
  background: #191a22;
  border-radius: 9px;
  min-height: 48px;
  overflow: hidden;
}

.ag-stake-field > span {
  color: var(--ag-lime);
  font-size: 17px;
  padding-left: 14px;
}

.ag-stake-field input,
.ag-target-field input {
  width: 100%;
  min-width: 0;
  border: 0 !important;
  background: none !important;
  color: #eee;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 12px !important;
  outline: none;
}

.ag-stake-field:focus-within,
.ag-target-field:focus-within {
  border-color: #ccff5f90;
  box-shadow: 0 0 0 2px #ccff5f0d;
}

.ag-stake-field button {
  border: 0;
  border-left: 1px solid #ffffff09;
  background: none;
  color: #93969c;
  padding: 6px 13px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.ag-stake-field button:hover {
  color: #e6ffae;
}

.ag-game small {
  font-size: 10px;
  line-height: 1.5;
  color: #71747e;
}

.ag-stake-section > small,
.ag-game-options > small {
  display: block;
  margin-top: 7px;
}

.ag-game-options select,
.ag-game-options input:not(.ag-target-field input) {
  height: 48px;
  width: 100%;
  color: #e4e5e8;
  background: #191a22;
  border: 1px solid #353740;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 13px;
  outline: none;
}

.ag-game-options select:focus,
.ag-game-options input:focus {
  border-color: #ccff5f90;
}

.ag-option-flex {
  display: flex;
  gap: 8px;
}

.ag-option-flex input {
  max-width: 72px;
}

.ag-target-field > span {
  font-size: 20px;
  color: #6f7478;
  padding-right: 15px;
}

.ag-play-hint {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 74px;
}

.ag-play-hint > span {
  width: 37px;
  height: 37px;
  background: #232631;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #adbc96;
  font-size: 22px;
  flex-shrink: 0;
}

.ag-play-hint p {
  font-size: 12px;
  color: #999aa4;
  line-height: 1.65;
  margin: 0;
  max-width: 180px;
}

.ag-action-row {
  grid-column: 1/-1;
}

.ag-play {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--ag-lime);
  color: #182007;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  min-height: 51px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.ag-play:hover:enabled {
  background: #dcff8f;
  box-shadow: 0 3px 23px #bff95315;
  transform: translateY(-1px);
}

.ag-play > span:last-child {
  font-size: 20px;
}

.ag-game button:disabled,
.ag-game input:disabled,
.ag-game select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ag-game button:focus-visible {
  outline: 2px solid #cfff66;
  outline-offset: 4px;
}

.ag-result {
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 77px;
  border: 1px solid #ffffff07;
  border-radius: 10px;
  background: #191a2180;
  padding: 16px;
  margin-bottom: 18px;
}

.ag-result-icon {
  display: grid;
  place-items: center;
  background: #ffffff06;
  border: 1px solid #ffffff09;
  border-radius: 9px;
  width: 35px;
  height: 35px;
  font-size: 20px;
  color: #8e9495;
  flex-shrink: 0;
}

.ag-result strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.ag-result div > span {
  display: block;
  color: #82868e;
  font-size: 11px;
  line-height: 1.6;
  margin-top: 3px;
}

.ag-result.is-win {
  border-color: #ccff5f27;
  background: #caff5807;
}

.ag-result.is-win strong,
.ag-result.is-win .ag-result-icon {
  color: var(--ag-lime);
}

.ag-rules {
  border-top: 1px solid #ffffff0b;
  padding-top: 17px;
}

.ag-rules summary {
  display: flex;
  justify-content: space-between;
  color: #a3a5ad;
  cursor: pointer;
  font-size: 11px;
  list-style: none;
}

.ag-rules summary::-webkit-details-marker {
  display: none;
}

.ag-rules summary > span {
  font-size: 16px;
  line-height: 1;
}

.ag-rules[open] summary > span {
  transform: rotate(45deg);
}

.ag-rules-body {
  font-size: 11px;
  line-height: 1.8;
  color: #8b919a;
  padding: 7px 0;
}

.ag-rules-foot {
  font-size: 10px;
  color: #71757e;
}

.ag-paytable {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #ffffff09;
  padding: 12px 15px;
  border-radius: 9px;
  gap: 5px 15px;
  text-transform: capitalize;
}

.ag-paytable strong {
  color: #bdcbae;
}

.ag-session-note {
  text-align: center;
  font-size: 9px;
  color: #626771;
  margin: 21px 0 1px;
  line-height: 1.7;
}

.ag-error {
  color: #f69ea9;
  padding: 30px;
}

.ag-slot-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 8px 0 23px;
}

.ag-slot-sign > span:first-child {
  color: #c2bb8d;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 5px;
}

.ag-slot-sign strong {
  font-size: 36px;
  line-height: 1.3;
  color: #e5f6c6;
  letter-spacing: 6px;
  font-weight: 850;
  text-shadow: 0 0 30px #ccff5f20;
}

.ag-slot-sign > span:last-child {
  font-size: 6px;
  letter-spacing: 3px;
  color: #7f886c;
}

.ag-slot-reels {
  width: min(100%, 430px);
  display: flex;
  gap: 9px;
  position: relative;
  border: 1px solid #cfeb7740;
  border-radius: 15px;
  padding: 11px;
  background: linear-gradient(135deg, #60684722, #111413);
  box-shadow:
    0 0 50px #b9f65608,
    inset 0 0 9px #cadf7508;
}

.ag-reel {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid #bcc79320;
  border-radius: 8px;
  background: linear-gradient(#12181d, #293034 48%, #14191e);
  box-shadow: inset 0 8px 25px #0009;
  color: #cfef98;
  font-size: 57px;
  font-weight: 850;
  text-shadow: 0 1px 15px #d6ff8950;
}

.ag-reel[data-symbol="seven"] {
  color: #f6a9bd;
  text-shadow: 0 1px 15px #fd7eb850;
}

.ag-reel[data-symbol="diamond"] {
  color: #85d6e5;
  text-shadow: 0 1px 15px #7be6fd50;
}

.ag-reel[data-symbol="bar"] {
  font-size: 29px;
  letter-spacing: 0;
}

.ag-reel[data-symbol="cherry"] {
  color: #ff6c8a;
}

.ag-reel[data-symbol="bell"] {
  color: #e4c37b;
}

.ag-reel.is-spinning > span {
  animation: ag-reel-roll 0.16s linear infinite;
  filter: blur(2px);
}

.ag-reel:nth-child(3).is-spinning > span {
  animation-delay: -0.07s;
}

.ag-reel:nth-child(4).is-spinning > span {
  animation-delay: -0.11s;
}

.ag-payline {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  border-top: 1px solid #daed5733;
  z-index: 2;
  pointer-events: none;
}

.ag-slot-legend {
  display: flex;
  gap: 19px;
  align-items: center;
  color: #6e7961;
  letter-spacing: 1.8px;
  font-size: 7px;
  margin: 23px 0 10px;
}

.ag-wheel-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 4px auto 15px;
  border-radius: 50%;
  padding: 8px;
  border: 1px solid #e7efaf44;
  box-shadow:
    0 0 0 4px #313831,
    0 0 0 5px #a2b67a20,
    0 0 60px #d1ff5309;
  background: #111918;
}

.ag-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--wheel-background);
  position: relative;
  will-change: transform;
  border: 1px solid #becb9655;
  box-shadow:
    inset 0 0 0 24px #00000016,
    inset 0 0 35px #0005;
}

.ag-wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 16px;
  font-size: 13px;
  text-align: center;
  margin: -8px 0 0 -16px;
  transform: rotate(var(--angle)) translateY(-96px);
  font-weight: 750;
  color: #e8eddc;
}

.ag-roulette-wheel .ag-wheel-label {
  font-size: 9px;
  transform: rotate(var(--angle)) translateY(-108px);
}

.ag-wheel-hub {
  position: absolute;
  inset: 34%;
  background: radial-gradient(circle at 30% 20%, #3e4638, #161e18 80%);
  border-radius: 50%;
  border: 2px solid #a4b5746b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 3px 19px #0009;
  color: #c4d991;
}

.ag-wheel-hub > span {
  font-size: 28px;
  line-height: 1.2;
}

.ag-wheel-hub > small {
  font-size: 5px;
  letter-spacing: 1.5px;
  color: #aab892;
}

.ag-wheel-pointer {
  position: absolute;
  top: -2px;
  left: 50%;
  z-index: 4;
  width: 17px;
  height: 23px;
  background: #deffa0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
  filter: drop-shadow(0 0 10px #ccff5f);
}

.ag-number-result {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #c2d498;
  margin: 2px 0 4px;
}

.ag-blackjack-table,
.ag-poker-table {
  width: 100%;
  text-align: center;
}

.ag-hand-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: #8c9e8b;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 6px 0 12px;
}

.ag-hand-label > span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  background: #ffffff0a;
  border: 1px solid #ffffff10;
  border-radius: 4px;
  color: #d7efb7;
  font-size: 11px;
  letter-spacing: 0;
}

.ag-card-hand {
  display: flex;
  justify-content: center;
  gap: 8px;
  perspective: 700px;
}

.ag-kind-blackjack .ag-card-hand {
  flex-wrap: wrap;
}

.ag-card {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  height: 88px;
  border: 1px solid #e7e8df;
  border-radius: 6px;
  background: linear-gradient(140deg, #f7f8ee, #b9c5b3);
  color: #21302b;
  box-shadow: 0 5px 15px #0004;
  animation: ag-card-in 0.33s backwards;
  animation-delay: calc(var(--card-i) * 0.05s);
}

.ag-card.is-red {
  color: #bd4155;
}

.ag-card-corner {
  position: absolute;
  top: 6px;
  left: 6px;
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ag-card-corner small {
  color: inherit;
  font-size: 12px;
  margin-top: 2px;
}

.ag-card-suit {
  font-size: 30px;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.ag-card-bottom {
  position: absolute;
  bottom: 5px;
  right: 6px;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 750;
}

.ag-card.is-hidden {
  border-color: #70855966;
  background: repeating-linear-gradient(
    45deg,
    #26362a 0px,
    #26362a 3px,
    #30462f 3px,
    #30462f 5px
  );
  box-shadow:
    inset 0 0 0 4px #1e2b22,
    0 5px 15px #0004;
  color: #acd375;
}

.ag-card-back {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  opacity: 0.6;
}

.ag-table-wordmark {
  font-size: 12px;
  letter-spacing: 4px;
  color: #687962;
  margin: 18px 0;
  font-weight: 750;
}

.ag-table-wordmark span {
  display: block;
  font-size: 6px;
  letter-spacing: 2px;
  margin-top: 5px;
  opacity: 0.6;
}

.ag-kind-blackjack .ag-stage {
  background:
    radial-gradient(ellipse at 50% 50%, #23362877, transparent 90%), #101616;
}

.ag-blackjack-actions {
  display: flex;
  gap: 10px;
}

.ag-blackjack-actions button {
  background: #242833;
  color: #dfe8d7;
  border: 1px solid #3c423e;
  border-radius: 9px;
  min-height: 49px;
  padding: 12px 17px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 650;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ag-blackjack-actions button:first-child {
  background: var(--ag-lime);
  color: #1f2e0a;
  border-color: transparent;
}

.ag-blackjack-actions button:hover:enabled {
  filter: brightness(1.12);
}

.ag-poker-emblem {
  font-size: 45px;
  color: #c2d889;
  margin: 0 0 31px;
  line-height: 1.2;
  text-shadow: 0 0 24px #d0ff6730;
}

.ag-poker-emblem > span {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  color: #a7b49a;
  margin-top: 8px;
}

.ag-poker-hand {
  gap: 13px;
  padding-bottom: 29px;
}

.ag-poker-hand .ag-card {
  width: 72px;
  height: 106px;
  cursor: default;
}

.ag-poker-hand button.ag-card {
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.ag-poker-hand button.ag-card:hover {
  transform: translateY(-4px);
}

.ag-poker-hand .ag-card.is-held {
  border: 2px solid #d1ff6e;
  box-shadow:
    0 0 0 2px #ccff5f22,
    0 0 24px #ccff5f10;
  transform: translateY(-7px);
}

.ag-held-label {
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 750;
  color: #637063;
}

.ag-card.is-held .ag-held-label {
  color: #d0f994;
}

.ag-poker-instruction {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: #7d907c;
  margin: 15px 0 4px;
}

.ag-crash-scene,
.ag-plinko-scene {
  width: 100%;
  max-width: 560px;
  position: relative;
  min-height: 235px;
}

.ag-crash-scene canvas,
.ag-plinko-scene canvas {
  display: block;
  width: 100%;
  height: auto;
}

.ag-crash-value {
  position: absolute;
  inset: 12% 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}

.ag-crash-value > span {
  font-size: 8px;
  letter-spacing: 2px;
  color: #8eab7e;
}

.ag-crash-value strong {
  font-size: clamp(42px, 7vw, 73px);
  font-weight: 750;
  letter-spacing: -3px;
  color: #e3ffc0;
  line-height: 1.5;
  text-shadow: 0 0 35px #ceff6d10;
}

.ag-crash-value strong > span {
  font-size: 0.55em;
  color: #99b37e;
  margin-left: 3px;
}

.ag-crash-value small {
  font-size: 10px;
  letter-spacing: 0.3px;
  color: #8b9b83;
}

.ag-plinko-scene {
  max-width: 500px;
}

.ag-kind-plinko .ag-board {
  padding-top: 0;
  padding-bottom: 0;
}

.ag-kind-plinko .ag-stage-foot {
  padding-top: 9px;
}

.ag-game input[type="number"] {
  appearance: textfield;
}

.ag-game input::-webkit-inner-spin-button,
.ag-game input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@keyframes ag-reel-roll {
  0% {
    transform: translateY(-78px);
  }
  100% {
    transform: translateY(78px);
  }
}

@keyframes ag-card-in {
  from {
    opacity: 0;
    transform: translateY(-12px) rotateY(65deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

@media (max-width: 540px) {
  .ag-game {
    padding: 4px 0;
  }
  .ag-heading {
    margin-bottom: 19px;
  }
  .ag-heading h2 {
    letter-spacing: -1px;
  }
  .ag-heading p {
    font-size: 11px;
  }
  .ag-game-mark {
    width: 49px;
    height: 49px;
    font-size: 32px;
    border-radius: 14px;
  }
  .ag-stage-top {
    padding: 14px 13px;
    font-size: 6px;
    letter-spacing: 0.9px;
  }
  .ag-stage-foot {
    font-size: 6px;
    letter-spacing: 1px;
    padding: 14px 8px;
  }
  .ag-board {
    min-height: 220px;
    padding: 10px 10px;
  }
  .ag-controls {
    gap: 16px 12px;
    margin-top: 20px;
  }
  .ag-stake-field button {
    padding: 6px 8px;
  }
  .ag-game-options select {
    font-size: 11px;
    padding: 10px 7px;
  }
  .ag-label {
    font-size: 8px;
  }
  .ag-play-hint {
    gap: 8px;
  }
  .ag-play-hint > span {
    width: 28px;
    height: 31px;
    font-size: 17px;
  }
  .ag-play-hint p {
    font-size: 10px;
  }
  .ag-reel {
    height: 105px;
    font-size: 46px;
  }
  .ag-slot-sign {
    margin-top: 3px;
    margin-bottom: 15px;
  }
  .ag-slot-sign strong {
    font-size: 28px;
  }
  .ag-slot-legend {
    font-size: 5px;
    gap: 13px;
    margin: 18px 0 5px;
  }
  .ag-wheel-wrap {
    width: 220px;
    height: 220px;
  }
  .ag-wheel-label {
    transform: rotate(var(--angle)) translateY(-77px);
    font-size: 11px;
  }
  .ag-roulette-wheel .ag-wheel-label {
    transform: rotate(var(--angle)) translateY(-88px);
    font-size: 8px;
  }
  .ag-card {
    width: 51px;
    height: 74px;
  }
  .ag-card-hand {
    gap: 6px;
  }
  .ag-card-suit {
    font-size: 25px;
  }
  .ag-card-corner {
    font-size: 12px;
    left: 4px;
    top: 5px;
  }
  .ag-card-corner small {
    font-size: 10px;
  }
  .ag-poker-hand {
    gap: 7px;
  }
  .ag-poker-hand .ag-card {
    width: 49px;
    height: 78px;
  }
  .ag-poker-hand .ag-card-corner {
    font-size: 11px;
  }
  .ag-poker-emblem {
    font-size: 38px;
    margin-bottom: 23px;
  }
  .ag-poker-instruction {
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .ag-crash-scene {
    min-height: 190px;
  }
  .ag-crash-value {
    inset: 10% 0 0;
  }
  .ag-crash-value > span {
    font-size: 7px;
  }
  .ag-crash-value small {
    font-size: 8px;
  }
  .ag-result {
    padding: 12px;
    gap: 10px;
  }
  .ag-result strong {
    font-size: 12px;
  }
  .ag-result div > span {
    font-size: 10px;
  }
  .ag-blackjack-actions button {
    padding: 12px;
    font-size: 11px;
  }
  .ag-option-flex input {
    max-width: 53px;
    padding: 9px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-game * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.ag-rules-scroll {
  overflow-x: auto;
  margin: 14px 0;
  border: 1px solid #ffffff09;
  border-radius: 9px;
}

.ag-odds-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 310px;
  text-align: left;
  font-size: 10px;
}

.ag-odds-table th {
  font-size: 9px;
  letter-spacing: 0.8px;
  color: #b8c6a3;
  font-weight: 600;
  background: #ffffff03;
}

.ag-odds-table th,
.ag-odds-table td {
  padding: 7px 10px;
  border-bottom: 1px solid #ffffff06;
}

.ag-odds-table tr:last-child td {
  border-bottom: 0;
}

.ag-odds-table td:not(:first-child) {
  font-variant-numeric: tabular-nums;
}
