.game-roulette {
  --grw-width: 0px;
  --grb-width: 0px;
  --grb-parent-width: 0px;
  --grb-parent-height: 0px;
  --grb-offset: 24px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr 400px 300px;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .game-roulette:has(.game-roulette-main.show) {
    grid-template-rows: 1fr auto 400px 300px;
  }
}

@media screen and (max-width: 575px) {
  .game-roulette {
    --grb-offset: 16px;
  }
}

@media screen and (min-width: 768px) {
  .game-roulette {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr calc(var(--grb-width) * 2) 400px 300px;
  }
}

@media screen and (min-width: 992px) {
  .game-roulette {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr calc(var(--grb-width) * 2) 500px;
  }
}

@media screen and (min-width: 1200px) {
  .game-roulette {
    grid-template-columns: repeat(3, 20%) repeat(2, 1fr);
    grid-template-rows: calc(var(--grb-width) * 2) 300px;
  }
}

@media screen and (min-width: 1600px) {
  .game-roulette {
    grid-template-columns: 22% 1fr 28%;
    grid-template-rows: repeat(2, 250px) 250px;
  }
}

.game-roulette-column {
  position: relative;
}

@media screen and (max-width: 767px) {
  .game-roulette-column.betting {
    display: none;
  }

  .game-roulette-column.betting:has(.game-roulette-main.show) {
    display: block;
  }
}

.game-roulette-column.wheel .game-roulette-wheel {
  max-height: max(350px, 100vh);
}

.game-roulette-column.betting .game-roulette-main {
  max-height: max(350px, 100vh);
}

.game-roulette-column.players .game-area-card {
  max-height: max(350px, 100vh);
}

.game-roulette-column.history .game-area-card {
  max-height: max(350px, 100vh);
}

.game-roulette-column.betting .game-area-actions {
  width: calc(100% - var(--grb-offset));
  margin: var(--grb-offset) auto 0 auto;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .game-roulette-column.wheel {
    grid-column: span 2 / span 2;
  }

  .game-roulette-column.betting {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
  }

  .game-roulette-column.players {
    grid-row-start: 3;
  }

  .game-roulette-column.history {
    grid-row-start: 3;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .game-roulette-column.wheel {
    grid-column: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 1;
  }

  .game-roulette-column.betting {
    grid-column: span 3 / span 3;
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .game-roulette-column.players {
    grid-column: span 2 / span 2;
    grid-row-start: 2;
  }

  .game-roulette-column.history {
    grid-column: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 2;
  }
}

@media screen and (min-width: 1600px) {
  .game-roulette-column.wheel {
    grid-row: span 3 / span 3;
    grid-column-start: 3;
    grid-row-start: 1;
  }

  .game-roulette-column.betting {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
  }

  .game-roulette-column.players {
    grid-row: span 3 / span 3;
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .game-roulette-column.history {
    grid-column-start: 2;
    grid-row-start: 3;
  }
}

.game-roulette-main {
  height: 100%;
  border-radius: 12px;
  border: 1px solid hsl(var(--border-color)/0.5);
  background-color: hsl(var(--gray-d-400)/0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-image: url("../images/game-roulette-column-bg-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: var(--grb-offset);
}

/* @media screen and (min-width: 768px) and (max-width: 1199px) {
    .game-roulette-main {
        --adjust-height: -233px;
        transform: translateY(var(--adjust-height));
        margin-bottom: var(--adjust-height);
        transition: 0.5s transform ease-in-out;
    }

    .game-roulette:has(.roulette-wheel.start) .game-roulette-main {
        --adjust-height: 0;
    }
} */

@media screen and (max-width: 767px) {
  .game-roulette-main {
    position: fixed;
    width: 100%;
    z-index: 1000;
    min-height: 100dvh;
    inset: 0;
    z-index: 1049;
    border-radius: 0px;
    border: none;
    padding: var(--grb-offset);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* display: none; */
  }

  .game-roulette-main .game-area-actions {
    width: 100%;
  }

  .game-roulette-main .game-area-chips {
    display: none;
  }

  .game-roulette-main .game-roulette-main__header {
    padding-bottom: 16px;
    margin-bottom: var(--grb-offset);
    border-bottom: 1px solid hsl(var(--border-color));
  }

  .game-roulette-main .game-roulette-main__body {
    flex-grow: 1;
  }
}

@media screen and (max-width: 575px) {
  .game-roulette-main {
    padding: 8px;
  }

  .game-roulette-main .game-area-actions {
    padding-top: 0px;
    border-top: none;
  }

  .game-roulette-main .game-roulette-main__header {
    border-bottom: none;
    padding-bottom: 0px;
  }

  .game-roulette-main .game-roulette-main__header .game-roulette-wheel-top {
    max-width: 100%;
  }
}


@media screen and (max-width: 767px) {
  .game-roulette-main {
    position: fixed;
    width: 100%;
    z-index: 1000;
    min-height: 100dvh;
    inset: 0;
    z-index: 1049;
    border-radius: 0px;
    border: none;
    padding: var(--grb-offset);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* display: none; */
  }

  .game-roulette-main .game-area-actions {
    width: 100%;
  }

  .game-roulette-main .game-area-chips {
    display: none;
  }

  .game-roulette-main .game-roulette-main__header {
    padding-bottom: 16px;
    margin-bottom: var(--grb-offset);
    border-bottom: 1px solid hsl(var(--border-color));
  }

  .game-roulette-main .game-roulette-main__body {
    flex-grow: 1;
  }
}

@media screen and (max-width: 375px) {
  .game-roulette-main.show {
    flex-direction: row-reverse !important;

    .game-roulette-wheel-top {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      display: flex;
      justify-content: space-between;
      height: 100%;
      flex-basis: auto;
    }

    .game-roulette-wheel-top__wrapper {
      flex-direction: column-reverse;
    }

    .game-roulette-wheel-top__wrapper {
      flex-direction: column-reverse;
    }

    .game-roulette-main__body {

      display: flex;
      flex-direction: row-reverse;
      flex-shrink: 0;
      margin-right: 8px;
    }

    .game-roulette-board {
      flex-shrink: 0;
    }

    .game__status {
      flex-basis: auto !important;
    }

    .game-roulette-table {
      align-content: center;
    }

    .game-area-actions {
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }

    .game-area-btns {
      display: flex;
      max-width: fit-content !important;
    }

    .game-roulette-board,
    .game-roulette-preset__item {
      gap: 5px;
    }

    .game-area-btns .btn {
      padding: 8px 12px;
    }

    .game-roulette-main__header {
      padding: 0 !important;
      margin: 0 !important;
      border: 0;
    }

    .game-roulette-wheel-top {
      padding: 8px !important;
    }

    .game-roulette-wheel-top,
    .game-roulette-wheel-top__wrapper {
      flex-wrap: nowrap !important;
      white-space: nowrap;
    }

    .game-roulette-wheel-top__wrapper {
      justify-content: space-between;
      gap: 5px;
      flex-direction: row;
      justify-content: space-between;
      flex: 1;
      margin-top: 10px;
    }

    .game-roulette-table__cell {
      writing-mode: vertical-rl;
      text-orientation: mixed;
    }
  }
}

.game-roulette-table {
  width: 168px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(14, 1fr);
  gap: 9px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .game-roulette-table {
    grid-template-rows: repeat(14, 40px);
  }
}

@media screen and (max-width: 575px) {
  .game-roulette-table {
    width: 114px;
    grid-template-rows: repeat(14, 32px);
  }
}

@media screen and (max-width: 424px) {
  .game-roulette-table {
    gap: 4px;
  }
}

.game-roulette-table__cell {
  position: relative;
  border-radius: 9px;
  border: 2px solid hsl(var(--gray));
  background-color: hsl(var(--gray-d-400));
  color: hsl(var(--gray-l-500));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.game-roulette-table__cell .text {
  font-family: var(--heading-font);
  font-size: clamp(1.125rem, 1.0654rem + 0.2981vw, 1.25rem);
  line-height: 120%;
  text-align: center;
}


@media screen and (min-width: 768px) {
  .game-roulette--horizontal-md .game-roulette-table__cell .text {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 1399px) {
  .game-roulette-table__cell .text {
    font-size: clamp(1rem, 0.9404rem + 0.2981vw, 1.125rem);
  }
}

@media screen and (max-width: 767px) {
  .game-roulette-table__cell .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .game-roulette-table__cell {
    border-radius: 5px;
  }

  .game-roulette-table__cell .text {
    font-size: 12px;
  }
}

.game-roulette-table__cell[data-num="0"] {
  grid-column: 1/-1;
}

.game-roulette-table__cell.cell-green {
  border-color: hsl(var(--success));
  background-color: hsl(var(--success));
}

.game-roulette-table__cell.cell-red {
  border-color: #FF4440;
  background-color: #FF4440;
}

.game-roulette-table__cell.cell-black {
  border-color: hsl(var(--gray-d-200));
  background-color: hsl(var(--gray-d-200));
}

.game-roulette-table__cell:hover,
.game-roulette-table__cell:focus {
  color: hsl(var(--gray-d-500));
  border-color: hsl(var(--base-two));
  background-color: hsl(var(--base-two));
}

.game-roulette-table__cell.cell-highlighted {
  color: hsl(var(--gray-d-500));
  border-color: hsl(var(--base-two));
  background-color: hsl(var(--base-two));
}

.game-roulette-preset {
  width: 109px;
  height: calc(var(--grb-parent-width) * 0.8158346513);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
  margin-block: auto;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .game-roulette-preset {
    height: 580px;
  }
}

@media screen and (max-width: 575px) {
  .game-roulette-preset {
    width: 90px;
    height: 485px;
  }
}

@media screen and (max-width: 424px) {
  .game-roulette-preset {
    gap: 4px;
  }
}

.game-roulette-preset__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
}

.game-roulette-preset__btn {
  position: relative;
  border-radius: 9px;
  border: 2px solid hsl(var(--gray));
  background-color: hsl(var(--gray-d-400));
  color: hsl(var(--gray-l-500));
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: calc(50% - 4.5px);
  display: flex;
  align-items: center;
}

.game-roulette-preset__btn:first-child {
  height: 100%;
}

.game-roulette-preset__btn .text {
  font-family: var(--heading-font);
  font-size: clamp(1.125rem, 1.0654rem + 0.2981vw, 1.25rem);
  line-height: 120%;
  text-align: center;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  white-space: nowrap;
}

@media screen and (max-width: 1399px) {
  .game-roulette-preset__btn .text {
    font-size: clamp(1rem, 0.9404rem + 0.2981vw, 1.125rem);
  }
}

@media screen and (max-width: 767px) {
  .game-roulette-preset__btn .text {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .game-roulette-preset__btn .text {
    font-size: 12px;
  }
}

.game-roulette-preset__btn.btn-red {
  border-color: #FF4440;
  background-color: #FF4440;
}

.game-roulette-preset__btn.btn-black {
  border-color: hsl(var(--gray-d-200));
  background-color: hsl(var(--gray-d-200));
}

.game-roulette-preset__btn.highlighted {
  color: hsl(var(--gray-d-500));
  border-color: hsl(var(--base-two));
  background-color: hsl(var(--base-two));
}

.game-roulette-wheel {
  height: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid hsl(var(--border-color)/0.5);
  background-color: hsl(var(--gray-d-400)/0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-image: url("../images/game-roulette-column-bg-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 575px) {
  .game-roulette-wheel {
    padding: 16px;
  }
}

.game-roulette-wheel__header:not(:last-child) {
  margin-bottom: clamp(1.5rem, 0.892rem + 3.0399vw, 4.5rem);
}

.game-roulette-board {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 9px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .game-roulette--horizontal-md .game-roulette-board {
    max-width: max-content;
    height: calc(var(--grb-parent-width) - (var(--grb-offset) * 2));
    top: calc(var(--grb-width)/2);
    left: 50%;
    -webkit-transform: rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .game-roulette--horizontal-md .game-roulette-column.betting .game-area-actions {
    width: calc(100% - var(--grb-offset));
    position: absolute;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    top: calc(var(--grb-width) + (var(--grb-offset) * 2));
    margin: 0;
  }
}

.roulette-wheel {
  --rw-size: calc(var(--grw-width) * 0.9108910891);
  --rw-board-size: calc(var(--rw-size) * 0.75);
  --rw-overlay-size: calc(var(--rw-board-size) * 0.8);
  --rw-ball-size: calc(var(--rw-board-size) * 0.04);
  --rw-ball-rotation-diameter: calc(var(--rw-board-size) * 0.75);
  --rw-rotation-times: 12;
  --rw-rotation-duration: 6s;
  --rw-rotation-stop: "";
  --rw-rotation-stop-preview: "1";
  --rw-rotation-stop-point: calc(calc(360deg / 37) * var(--rw-rotation-stop));
  --rw-ball-animation-count: 1;
  --rw-ball-animation-function: ease-out;
  --rw-bg-play-state: running;
  --rw-win-bg: var(--success);
  width: calc(var(--rw-size));
  height: calc(var(--rw-size));
  background-image: url("../images/roulette-wheel-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 1599px) {
  .roulette-wheel {
    --rw-size: calc(var(--grw-width) * 0.8);
  }
}

@media screen and (max-width: 1199px) {
  .roulette-wheel {
    --rw-size: calc(var(--grw-width) * 0.5);
  }
}

.roulette-wheel.start .roulette-wheel-ball,
.roulette-wheel.completed .roulette-wheel-ball {
  display: block;
}

.roulette-wheel.start {
  --rw-animation-state: running;
}

.roulette-wheel.completed .roulette-wheel-overlay::after {
  visibility: visible;
}

.roulette-wheel-ball {
  position: absolute;
  width: var(--rw-ball-rotation-diameter);
  height: var(--rw-ball-rotation-diameter);
  border-radius: 100%;
  background-color: transparent;
  z-index: 4;
  left: calc(50% - var(--rw-ball-rotation-diameter) / 2);
  top: calc(50% - var(--rw-ball-rotation-diameter) / 2);
  transform: rotate(var(--rw-rotation-stop-point));
  display: none;
}

.roulette-wheel.start .roulette-wheel-ball {
  animation: roulette-wheel-ball-rotate var(--rw-rotation-duration) var(--rw-ball-animation-function);
}

.roulette-wheel-ball::before {
  content: "";
  position: absolute;
  width: var(--rw-ball-size);
  height: var(--rw-ball-size);
  background-image: url("../images/roulette-wheel-ball.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  top: 0;
  left: calc(50% + var(--rw-ball-size) * 0.3);
}

.roulette-wheel-board {
  position: relative;
  width: var(--rw-board-size);
  height: var(--rw-board-size);
  border-radius: 100%;
  outline: calc(var(--rw-board-size) * 0.016) solid #FFE44D;
  overflow: hidden;
  -webkit-animation: roulette-wheel-board-rotate 30s linear infinite;
  animation: roulette-wheel-board-rotate 30s linear infinite;
  animation-play-state: var(--rw-bg-play-state);
}



.roulette-wheel-overlay {
  width: var(--rw-overlay-size);
  height: var(--rw-overlay-size);
  border-radius: 100%;
  outline: calc(var(--rw-board-size) * 0.012) solid #FFE44D;
  background-color: hsl(var(--black)/0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.roulette-wheel-overlay::before,
.roulette-wheel-overlay::after {
  width: 75%;
  height: 75%;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: roulette-wheel-board-rotate 30s linear infinite;
  animation: roulette-wheel-board-rotate 30s linear infinite;
  animation-direction: reverse;
}

.roulette-wheel-overlay::before {
  content: "";
  border: 2px solid #FFE44D;
  background-image: url("../images/roulette-wheel-stearing.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: unset;
}

.roulette-wheel:is(.start) .roulette-wheel-overlay::before {
  animation: loadLoading linear forwards;
  animation-delay: 6s;
}

.roulette-wheel.running .roulette-wheel-overlay::before {
  animation: loadLoading linear forwards;
  animation-delay: 0s;

}

.roulette-wheel.running .result-loader::before {
  opacity: 1;
  visibility: visible;
}

@keyframes loadLoading {
  100% {
    background: #262626;
  }

}

.result-loader {
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 0;
  animation: roulette-wheel-board-rotate 30s linear infinite;
  animation-direction: reverse;
  animation-play-state: var(--rw-bg-play-state);
  display: flex;
  inset: 0;
}

.result-loader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #FFE44D 90%, transparent);
  background:
    var(--_g) 0% 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 40%;
  animation: l3 1s infinite linear;
  animation-delay: 6s;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .result-loader::before {
    width: 60px;
  }
}

@media screen and (max-width: 575px) {
  .result-loader::before {
    width: 40px;
  }
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%
  }
}

.roulette-wheel:is(.start) .result-loader::before {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s ease;
  transition-delay: 6s;
}

.roulette-wheel-overlay::after {
  content: var(--rw-rotation-stop-preview);
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 1.8745rem + 3.1274vw, 5rem);
  color: hsl(var(--gray-l-500));
  background-color: hsl(var(--rw-win-bg));
  visibility: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  animation: roulette-wheel-board-rotate 30s linear infinite;
  animation-direction: reverse;
  animation-play-state: var(--rw-bg-play-state);
  display: inline-flex;
}

@media screen and (max-width: 767px) {
  .roulette-wheel-overlay::after {
    font-size: clamp(1.5rem, 1.2615rem + 1.1923vw, 2rem);
  }
}

@media screen and (max-width: 575px) {
  .roulette-wheel-overlay::after {
    font-size: clamp(1.25rem, 1.1308rem + 0.5961vw, 1.5rem);
  }
}

.roulette-wheel-numbers__digit {
  width: calc(var(--rw-board-size) / 11.5);
  height: 50%;
  padding-top: calc(var(--rw-board-size) * 0.02);
  text-align: center;
  color: hsl(var(--gray-l-500));
  font-size: calc(var(--rw-board-size) * 0.04);
  font-family: var(--heading-font);
  line-height: 100%;
  background-color: #262626;
  position: absolute;
  left: 50%;
  z-index: 1;
  -webkit-transform-origin: 0 calc(var(--rw-board-size) / 2);
  transform-origin: 0 calc(var(--rw-board-size) / 2);
  clip-path: polygon(100% 0, 0 0, 3% 100%);
  border: 1px solid #FFE44D;
  border-top: none;
}

.roulette-wheel-numbers__digit:nth-child(2n) {
  background-color: #E6312E;
}

.roulette-wheel-numbers__digit:first-child {
  background-color: #56CC3D;
}



@keyframes roulette-wheel-ball-rotate {
  0% {
    -webkit-transform: rotate(var(--rw-rotation-stop-point, 0deg));
    transform: rotate(var(--rw-rotation-stop-point, 0deg));
  }

  100% {
    -webkit-transform: rotate(calc(-360deg * var(--rw-rotation-times) + var(--rw-rotation-stop-point)));
    transform: rotate(calc(-360deg * var(--rw-rotation-times) + var(--rw-rotation-stop-point)));
  }
}



@keyframes roulette-wheel-board-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.game-roulette-wheel-top {
  border-radius: 12px;
  padding: 8px 12px;
  border: 1px solid hsl(var(--gray-d-200)/0.5);
  border-bottom-width: 3px;
  min-width: fit-content;
  background-color: hsl(var(--gray-d-200)/0.1);
  backdrop-filter: blur(5px);
  max-width: 350px;
  margin: 0 auto;
}

.game-roulette-wheel-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}

/* .game-roulette-wheel-top .game__status {
    color: var(--text-color);
    background-color: var(--bg-color);
    backdrop-filter: blur(5px);
    margin-bottom: 8px;
    padding: 8px;
    padding-top: 8px;
    line-height: 100%;
    font-size: clamp(1rem, 0.9404rem + 0.2981vw, 1.125rem);
} */