body {
  background:#111;
  color:#fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align:center;
  padding: 20px;
}

.machine-container {
  position: relative;
  width: 90vw;
  max-width: 920px;
}

.slot-frame {
  width: 100%;
  height: auto;
  display: block;
}

.reels-wrapper {
  position: absolute;
  top: 360px;   /* Y из SVG */
  left: 230px;  /* X первого окна */
  width: 740px; /* ширина трёх окон */
  height: 320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reel {
  background: #000;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel img {
  width: 100%;
  object-fit: contain;
}
