body {
  width: 100vw;
  height: 100vh;
  padding: 0rem;
  margin: 0px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;

  background-image: url('/static/img/bg2.jpg');
  background-repeat: no-repeat; /* Отключаем повторение изображения */
  background-position: calc(50% - 5px) calc(50% + 40px); /* Сдвигаем влево и вниз */
  background-size: 62%; /* Изменяем размер изображения */
  height: 100vh; /* Высота на всю высоту экрана для правильного позиционирования */
  margin: 0; /* Убираем отступы */
}

@media only screen and (max-width: 1200px) {
  body {
  background: #000;
  background-image: url('/static/img/bg2.jpg');
  background-repeat: no-repeat; /* Отключаем повторение изображения */
  background-position: calc(50% - 5px) calc(50% + 50px); /* Сдвигаем влево и вниз */
  background-size: 102%; /* Изменяем размер изображения */
  height: 100vh; /* Высота на всю высоту экрана для правильного позиционирования */
  margin: 0; /* Убираем отступы */
  }
}

#reels {
  display: flex;
  justify-content: center; 
  width: 100vw;
  height: calc((3 / 5) * 100vw);
  max-height: calc(90vh - 50px - 40px);
  max-width: calc((5 / 3) * (90vh - 50px - 40px));
    margin-top:90px;
}

.reel {
  border-radius: 20px;
  overflow: hidden;
  width: 20%;
  height: 100%;
  position: relative;
}

.reel > .icons {
  position: relative;
}

.reel > .icons > img {
  width: calc(100% + 6px);
  margin: -3px 0 0 -3px;
  height: auto;

  /* enable gpu accelaration, fixes iOS flicker */
  transform: translate3d(0, 0, 0);
}

#controls {
  background-color: rgba(255, 255, 255, 0.9);
//  height: 50px;
//  display: flex;
//  justify-content: space-between;
  align-items: center;
//  padding: 5px 30px;
}

#controls label {
  display: flex;
  align-items: center;
  margin: 0;
}

#controls label input {
  margin-right: 5px;
}

input[type="checkbox"] {
  width: 40px;
  height: 22px;
}

#jackpot {
  color: #d5ad6d;
  font-size: 36px;
  text-align: center;
}
#head {
  position:fixed;
  width: 100%;
  top: 0px;
    background-color: #333;
}
#slot.inverted .reel {
  transform: scaleY(-1);
  background-image: url('/static/img/bg2.jpg');
  background-repeat: no-repeat; /* Отключаем повторение изображения */
  background-position: center; /* Центрируем изображение */
  background-size: 100%; /* Оставляем оригинальный размер изображения */
  height: 100vh; /* Высота на всю высоту экрана для правильного позиционирования */
  margin: 0; /* Убираем отступы */
}

#slot.inverted .reel > .icons > img {
  transform: scaleY(-1);
}

nav {
    background-color: #333;
    overflow: hidden;
    font-size:14px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
font-size: 14px;
}

nav ul li {
    float: left;
}

nav ul li a {
    color: #00bcd4;
    display: block;
    text-align: center;
    padding: 6px 10px;
    text-decoration: none;
}

nav ul li a:hover {
    color: #00bcd4;
    background-color: #575757;
}
        .login-container button {
            width: 100%;
            padding: 10px;
            background-color: #007bff;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .login-container button:hover {
            background-color: #0056b3;
        }
    .deposit-button {
        width: 100%;
        padding: 10px;
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .deposit-button:hover {
        background-color: #0056b3;
    }
