@font-face {
  font-family: 'uRegular';
  src: url(https://wavecdn.b-cdn.net/fonts/UnitPro-Regular.woff2) format('woff2'),
    url(https://wavecdn.b-cdn.net/fonts/UnitPro-Regular.woff) format('woff'),
    url(https://wavecdn.b-cdn.net/fonts/UnitPro-Regular.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'uMedi';
  src: url(https://wavecdn.b-cdn.net/fonts/UnitPro-Medium.woff2) format('woff2'),
    url(https://wavecdn.b-cdn.net/fonts/UnitPro-Medium.woff) format('woff'),
    url(https://wavecdn.b-cdn.net/fonts/UnitPro-Medium.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --reborn-green: #34bc7d;
  --reborn-green-light: #71d1a4;
  --reborn-teal: #003f46;
  --reborn-heading: #222b47;
  --reborn-text: #222b47;
  --reborn-white: #ffffff;
  --reborn-gray--light: #f9f9fa;
  --reborn-header-teal: #014045;
  --font: 'uRegular', Helvetica, Arial, sans-serif;
  --radius-btn: 4px;
  --reborn-cta: #0b1123;
  --gizzmo-cta: #0b1123;
  --gizzmo-cta-hover: #1a2238;
  --reborn-cta-hover: #1a2238;
  --reborn-header-height: 64px;
  --slot-item-height: 5.5rem;
  --slot-bg-center: #e68a8a;
  --slot-bg-mid: #c96a6a;
  --slot-bg-edge: #b34d4d;
  --slot-pink: #f2a4b8;
  --slot-pink-deep: #e892a8;
  --slot-reel-bg: #fdf1d5;
  --slot-reel-well: #fdf1d5;
  --slot-gold: #e8c547;
  --slot-gold-dark: #c9a227;
  --slot-gold-light: #f5e6a8;
  --slot-gold-bright: #fff4d4;
  --slot-gold-deep: #8a6f22;
  --slot-lever-red: #e5252a;
  --slot-spin-btn: #0b1123;
  --slot-spin-btn-hover: #1a2238;
  --slot-lever-rest: 14deg;
  --slot-lever-pulled: 34deg;
  --slot-lever-tilt-rest: -10deg;
  --slot-lever-tilt-pulled: 16deg;
  --slot-lever-depth-pulled: 0.5rem;
  --slot-win-accent: #9da82e;
  --slot-win-accent-deep: #7d8825;
}

@media (min-width: 768px) {
  :root {
    --reborn-header-height: 62px;
    --slot-item-height: calc(6rem + 15px);
    --slot-lever-pulled: 24deg;
    --slot-lever-tilt-pulled: 12deg;
    --slot-lever-depth-pulled: 0.35rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--reborn-text);
  background: var(--reborn-gray--light);
}

body.has-reborn-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

body.has-reborn-header .page {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  min-height: 0;
  padding: 20px 16px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  isolation: isolate;
  -webkit-overflow-scrolling: touch;
}

.page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: transparent;
  background-image: url('images/bg-gizzmo-jackpot.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page__bg::before,
.page__bg::after {
  content: none;
}

.page__bg__symbols {
  display: none;
}

.site-topbar {
  flex-shrink: 0;
  width: 100%;
  background: #0b1123;
}

.site-topbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  height: 62px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 5px 24px 0;
}

.site-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #ffffff;
  opacity: 0.7;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.15s ease-in-out;
}

.site-topbar__link:hover,
.site-topbar__link:focus-visible {
  opacity: 1;
  color: #ffffff;
}

.site-topbar__link--back {
  justify-self: start;
}

.site-topbar__link--phone {
  justify-self: end;
}

.site-topbar__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.site-topbar__link-text {
  white-space: nowrap;
}

.site-topbar__logo {
  justify-self: center;
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.site-topbar__logo img {
  display: block;
  width: 168px;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-topbar__inner {
    padding: 5px 16px 0;
    gap: 14px;
  }

  .site-topbar__link {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .site-topbar__inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    height: 64px;
    padding: 0 14px;
  }

  .site-topbar__link-text {
    display: none;
  }

  .site-topbar__logo img {
    width: 154px;
  }
}


.page__title {
  position: relative;
  z-index: 1;
  margin: 0;
  margin-top: 20px;
  font-family: 'uMedi', var(--font);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  color: #0b1123;
  text-align: center;
}

.page__subtitle {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 520px;
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0b1123;
  text-align: center;
}

@media (min-width: 768px) {
  .page__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .page__title {
    font-size: 19px;
    margin-top: 0;
    padding: 0 10px;
  }
}

.game {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3.2vh, 1.75rem);
  width: 100%;
  max-width: min(22rem, 100%);
  margin: 0 auto;
  padding: 0.5rem 0.65rem 0.75rem;
  text-align: center;
  background: transparent;
}

/* —— Slot machine —— */
.slot-machine {
  position: relative;
  width: 100%;
  max-width: 21.5rem;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.slot-machine__frame {
  position: relative;
  width: 100%;
  padding: 0.7rem 0.65rem 0.72rem;
  overflow: visible;
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, transparent 22%),
    linear-gradient(
      155deg,
      var(--slot-gold-bright) 0%,
      var(--slot-gold-light) 14%,
      var(--slot-gold) 38%,
      var(--slot-gold-deep) 52%,
      var(--slot-gold) 68%,
      var(--slot-gold-light) 86%,
      var(--slot-gold-bright) 100%
    );
  box-shadow:
    0 10px 28px rgba(70, 35, 45, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.72),
    inset 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.slot-machine__frame::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border-radius: 0.42rem;
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.22),
    inset 0 0 0 2px rgba(138, 111, 34, 0.32);
  pointer-events: none;
  z-index: 0;
}

.slot-machine__sparkle {
  position: absolute;
  top: 0.28rem;
  left: 0.32rem;
  z-index: 5;
  width: 1.15rem;
  height: 1.15rem;
  pointer-events: none;
  background:
    radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.85) 18%, transparent 42%),
    linear-gradient(0deg, transparent 44%, #fff 48%, #fff 52%, transparent 56%),
    linear-gradient(90deg, transparent 44%, #fff 48%, #fff 52%, transparent 56%),
    linear-gradient(45deg, transparent 47%, #fff 50%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, #fff 50%, transparent 53%);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.95));
}

.slot-machine__reels-wrap {
  position: relative;
  z-index: 1;
  padding: 0.38rem;
  border-radius: 0.32rem;
  background: linear-gradient(180deg, #6d5520 0%, #a88420 48%, #6d5520 100%);
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.28);
}

.slot-machine__reels {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0;
  border-radius: 0.14rem;
  background: linear-gradient(
    180deg,
    var(--slot-gold-deep) 0%,
    var(--slot-gold) 50%,
    var(--slot-gold-deep) 100%
  );
  overflow: hidden;
}

.slot-machine__lever {
  position: absolute;
  right: -37px;
  bottom: 15px;
  z-index: 6;
  width: 2.35rem;
  height: 5rem;
  pointer-events: none;
  perspective: 320px;
  perspective-origin: 0% 88%;
}

.slot-machine__lever-hinge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 0.62rem;
  height: 0.88rem;
  border-radius: 0 0.3rem 0.3rem 0;
  background: linear-gradient(
    180deg,
    var(--slot-gold-light) 0%,
    var(--slot-gold) 50%,
    var(--slot-gold-deep) 100%
  );
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, 0.55),
    -1px 0 0 rgba(0, 0, 0, 0.12),
    2px 3px 6px rgba(0, 0, 0, 0.22);
}

.slot-machine__lever-pull {
  position: absolute;
  left: 0.5rem;
  bottom: 0.38rem;
  width: 0.24rem;
  height: 7.3rem;
  transform-origin: 0 100%;
  transform-style: preserve-3d;
  transform: rotateZ(var(--slot-lever-rest)) rotateX(var(--slot-lever-tilt-rest));
}

.slot-machine__lever-arm {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    #7a6318 0%,
    var(--slot-gold-light) 42%,
    #fff8e8 50%,
    var(--slot-gold-light) 58%,
    #7a6318 100%
  );
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.18);
}

.slot-machine__lever-knob {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: 1.32rem;
  height: 1.32rem;
  margin: -0.66rem 0 0 -0.66rem;
  transform-origin: center center;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 26%,
    #ff7a7a 0%,
    var(--slot-lever-red) 52%,
    #a8181c 100%
  );
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.28),
    inset 0 -3px 5px rgba(0, 0, 0, 0.18),
    inset 0 2px 3px rgba(255, 255, 255, 0.35);
}

@keyframes slot-lever-pull {
  0%,
  100% {
    transform: rotateZ(var(--slot-lever-rest)) rotateX(var(--slot-lever-tilt-rest))
      translateZ(0);
  }

  50% {
    transform: rotateZ(var(--slot-lever-pulled)) rotateX(var(--slot-lever-tilt-pulled))
      translateZ(var(--slot-lever-depth-pulled));
  }
}

@keyframes slot-lever-knob-pull {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.14);
  }
}

@keyframes slot-lever-knob-pull-mobile {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.slot-machine--lever-pull .slot-machine__lever-pull {
  animation: slot-lever-pull 1.4s ease-in-out forwards;
}

.slot-machine--lever-pull .slot-machine__lever-knob {
  animation: slot-lever-knob-pull 1.4s ease-in-out forwards;
}

.slot-machine--win .slot-machine__frame {
  animation: slot-frame-pulse 0.5s ease;
}

@keyframes slot-frame-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.02);
  }
}

.slot-reel {
  position: relative;
  z-index: 1;
  height: var(--slot-item-height);
  overflow: hidden;
  border-radius: 0;
  background: var(--slot-reel-well);
  box-shadow: inset 0 2px 6px rgba(120, 60, 80, 0.14);
}

.slot-reel__strip {
  will-change: transform, filter;
}

.slot-reel--spinning .slot-reel__strip {
  filter: blur(0.55px);
}


.slot-reel--landed {
  animation: slot-reel-click 0.22s ease;
}

@keyframes slot-reel-click {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.97);
  }
}

.slot-reel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: var(--slot-item-height);
  min-height: var(--slot-item-height);
  max-height: var(--slot-item-height);
  padding: 0.15rem 0.2rem;
  overflow: hidden;
}

.slot-reel__item--empty {
  background: var(--slot-reel-well);
}

.slot-symbol--empty {
  display: block;
  width: 100%;
  height: 100%;
}

.slot-symbol--emoji {
  font-size: clamp(1.85rem, 9vw, 2.35rem);
  line-height: 1;
}

.slot-symbol--win {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 100%;
  padding: 0.1rem 0.15rem;
  text-align: center;
}

.slot-symbol__amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1;
}

.slot-symbol__amount,
.slot-symbol__currency {
  font-family: 'uMedi', var(--font);
  font-weight: 400;
  line-height: 1;
  color: var(--reborn-heading);
  background: none;
  -webkit-text-fill-color: var(--reborn-heading);
}

.slot-symbol__amount {
  font-size: clamp(1.35rem, 6.8vw, 1.85rem);
  letter-spacing: -0.02em;
}

.slot-symbol__currency {
  font-size: clamp(1rem, 5.2vw, 1.35rem);
}

.slot-symbol__popust {
  display: inline-block;
  margin: 0;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  font-family: 'uMedi', var(--font);
  font-size: clamp(0.62rem, 3.1vw, 0.78rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--slot-win-accent) 0%,
    var(--slot-win-accent-deep) 55%,
    var(--slot-win-accent) 100%
  );
  box-shadow:
    0 1px 2px rgba(125, 136, 37, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.game__title {
  margin: 0 0 20px;
  font-family: 'uMedi', var(--font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--reborn-heading);
  text-align: center;
}

@media (min-width: 768px) {
  .win-popup__disclaimer {
    margin-top: 2.5rem;
    padding: 0;
  }

  .game__title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.game__subtitle {
  margin-bottom: 12px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--reborn-text);
}

.btn {
  display: block;
  width: 100%;
  max-width: 328px;
  margin: 0 auto;
  padding: 18px 32px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'uMedi', var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.btn--primary {
  color: var(--reborn-white);
  background: var(--reborn-cta);
}

.btn--primary:hover:not(:disabled) {
  background: var(--reborn-cta-hover);
}

.btn--primary:active:not(:disabled) {
  opacity: 0.92;
}

.btn--primary__gizzmo {
  color: var(--reborn-white);
  background: var(--gizzmo-cta);
}

.btn--primary__gizzmo:hover:not(:disabled) {
  background: var(--gizzmo-cta-hover);
}

.btn--primary__gizzmo:active:not(:disabled) {
  opacity: 0.92;
}

.win-popup__cta {
  color: var(--reborn-white);
  background: var(--gizzmo-cta);
}

.win-popup__cta:hover {
  background: var(--gizzmo-cta-hover);
}

.win-popup__cta:active {
  opacity: 0.92;
}


.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--spin {
  max-width: 18rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: var(--reborn-white);
  background: var(--slot-spin-btn);
}

.btn--spin:hover:not(:disabled) {
  background: var(--slot-spin-btn-hover);
}

.btn--spin:active:not(:disabled) {
  opacity: 0.92;
}

body.has-win-popup {
  overflow: hidden;
}

.win-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.win-popup[hidden] {
  display: none;
}

.win-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(55, 60, 75, 0.55);
  backdrop-filter: blur(4px);
}

.win-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 750px;
  padding: 36px 24px;
  border-radius: 16px;
  background: var(--reborn-white);
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 63, 70, 0.2);
}

.win-popup__header {
  margin: 0 0 24px;
}

.win-popup__header .game__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: 'uMedi', var(--font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--reborn-heading);
}

.win-popup__header #winPopupSuccessTitle {
  font: inherit;
  color: inherit;
}

.win-popup__header .game__title .game__subtitle {
  margin: 0;
  font-family: var(--font);
}

.win-popup__prize-box {
  width: 100%;
  max-width: 23.75rem;
  margin: 0 auto 1.5rem;
  padding: 1.5rem 1.25rem 2rem;
  border: 1px solid #e0e3e8;
  border-radius: 0.625rem;
  background: #f0f1f3;
  box-shadow: inset 0 1px 2px rgba(55, 60, 75, 0.06);
}

.win-popup__prize-value {
  margin: 0 0 6px;
  font-family: 'uMedi', var(--font);
  font-size: clamp(2.5rem, 12vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--reborn-heading);
}

.win-popup__prize-detail {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-family: 'uMedi', var(--font);
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--reborn-heading);
}

.win-popup__disclaimer {
  margin: 1.5rem auto 0;
  padding: 0 2px;
  max-width: 36rem;
  font-family: var(--font);
  font-size: 0.75rem;
  line-height: 1.4;
  color: #8a8f9a;
  text-align: center;
}

.win-popup__disclaimer a {
  color: inherit;
  text-decoration: none;
}

.win-popup__disclaimer a:hover,
.win-popup__disclaimer a:focus {
  text-decoration: underline;
}

.win-popup__disclaimer[hidden] {
  display: none;
}

.win-popup__disclaimer sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
}

@media (max-width: 767px) {
  :root {
    --slot-item-height: calc(clamp(5rem, 14.5vh, 5.85rem) + 14px);
    --slot-lever-rest: 4deg;
    --slot-lever-pulled: 13deg;
    --slot-lever-tilt-rest: -4deg;
    --slot-lever-tilt-pulled: 10deg;
    --slot-lever-depth-pulled: 0.3rem;
  }

  body.has-reborn-header .page {
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - var(--reborn-header-height));
    min-height: calc(100dvh - var(--reborn-header-height));
    padding: 10px 10px 10px;
  }

  .game {
    gap: clamp(1rem, 3vh, 1.65rem);
    padding: 0.25rem 0.5rem 0.5rem;
    max-width: min(21.75rem, calc(100vw - 0.75rem));
  }

  .slot-machine {
    max-width: 100%;
    padding: 0 1rem;
  }

  .slot-machine__frame {
    padding: 0.55rem 0.5rem 0.58rem;
    border-radius: 0.55rem;
  }

  .slot-machine__frame::before {
    inset: 0.42rem;
    border-radius: 0.36rem;
  }

  .slot-machine__reels-wrap {
    padding: 0.3rem;
    border-radius: 0.28rem;
  }

  .slot-machine__lever {
    right: -2rem;
    bottom: 1.1rem;
    width: 2rem;
    height: 4.2rem;
    perspective: 260px;
  }

  .slot-machine__lever-hinge {
    width: 0.52rem;
    height: 0.72rem;
    border-radius: 0 0.26rem 0.26rem 0;
  }

  .slot-machine__lever-pull {
    left: 0.42rem;
    bottom: 0.32rem;
    width: 0.2rem;
    height: 6.5rem;
  }

  .slot-machine__lever-knob {
    width: 1.1rem;
    height: 1.1rem;
    margin: -0.55rem 0 0 -0.55rem;
  }

  .slot-machine--lever-pull .slot-machine__lever-knob {
    animation: slot-lever-knob-pull-mobile 1.4s ease-in-out forwards;
  }

  .btn--spin {
    padding: 0.95rem 1.15rem;
    font-size: 0.9375rem;
  }

  .slot-symbol__amount {
    font-size: clamp(1.1rem, 5.2vw, 1.35rem);
  }

  .slot-symbol__currency {
    font-size: clamp(0.82rem, 3.9vw, 1rem);
  }

  .slot-symbol__popust {
    font-size: clamp(0.55rem, 2.6vw, 0.68rem);
    padding: 0.14rem 0.38rem;
  }

  .slot-symbol--emoji {
    font-size: clamp(1.55rem, 7.2vw, 1.9rem);
  }
}

@media (max-width: 767px) and (max-height: 700px) {
  :root {
    --slot-item-height: calc(clamp(4.5rem, 12vh, 5.25rem) + 14px);
  }

  .game {
    gap: 0.85rem;
    padding: 0.1rem 0.45rem 0.35rem;
  }

  .slot-machine__frame {
    padding: 0.45rem 0.42rem 0.48rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slot-machine--win .slot-machine__frame,
  .slot-reel--landed {
    animation: none;
  }

  .slot-machine--lever-pull .slot-machine__lever-pull,
  .slot-machine--lever-pull .slot-machine__lever-knob {
    animation: none;
  }

  .slot-machine--lever-pull .slot-machine__lever-pull {
    transform: rotateZ(var(--slot-lever-rest)) rotateX(var(--slot-lever-tilt-rest));
  }

  .slot-machine--lever-pull .slot-machine__lever-knob {
    transform: none;
  }

  .slot-reel--spinning .slot-reel__strip {
    filter: none;
  }
}

@media (min-width: 768px) {
  .game {
    max-width: 30rem;
    gap: 3rem;
    padding: 2rem 1.25rem 2.5rem;
  }

  .slot-machine {
    max-width: 24.5rem;
  }

  .win-popup__header .game__title,
  .win-popup__header #winPopupSuccessTitle {
    font-size: 32px;
    line-height: 1.3;
  }
}
