.slotMachine {
  --text-highlight-90: var(--highlight-90);
  --text-highlight-80: var(--highlight-80);
  --text-highlight-70: var(--highlight-70);
  --text-highlight-60: var(--highlight-60);
  --text-base-black: var(--base-black);
}

@media (prefers-color-scheme: dark) {
  .slotMachine {
    --text-highlight-90: var(--highlight-90);
    --text-highlight-80: var(--highlight-80);
    --text-highlight-70: var(--highlight-70);
    --text-highlight-60: var(--highlight-60);
    --text-base-black: var(--base-black);
  }
}

.slotMachine {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background-image: var(--background);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

.slotMachine.small {
  padding: 0.375rem 1.9375rem 0.375rem 0.5rem;
}

.slotMachine.large {
  padding: 0.375rem 1.9375rem 0.375rem 0.5rem;
  height: 5rem;
}


.slotMachine > .playButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--text-highlight-60);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text-highlight-90);
  border-radius: 0.625rem;
  padding: 0 0.5625rem;
  border: 1px solid var(--text-highlight-80);
  font-family: "Inknut Antiqua";
  font-size: 1.29238rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.slotMachine > .winPrice {
  color: var(--text-highlight-70);
  text-shadow: 0 0 0.806rem var(--text-base-black);
  font-family: "Kaushan Script";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.slotMachine > .winPrice::before{
    content: "WIN";
    color: var(--text-highlight-70);
    text-shadow: 0 0 0.806rem var(--text-base-black);
    font-family: "Kaushan Script";
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
    margin-right: 0.2rem;
}

