@media (max-width: 1200px) {
  .jackpot__wrap {
    display: flex;
    flex-direction: column;

  }

  .jackpot__board {
    flex-wrap: wrap;
  }
}

@media (max-width: 1000px) {
  .burger {
    display: block;
  }

  main {
    padding-top: 30px;
  }

  .nav__item,
  .header_fblock {
    display: none;
  }

  .hero__content {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .updates__grid {
    display: flex;
    flex-direction: column;
  }

  .app__banner {
    display: flex;
    flex-direction: column;
  }

  .app__content {
    padding: 20px;
  }

  .games__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 500px) {

  .app__buttons,
  .games__tabs {
    display: flex;
    flex-direction: column;
  }

  .games__tabs {
    gap: 10px;
  }

  .updates__win {
    display: flex;
    flex-direction: column;
  }

  .updates__wins {
    height: auto;
  }
}