.rouletteContainer {
    display: flex;
    width: 100%;
    height: 225px;
    overflow: hidden;
    position: relative;
    margin: 0px auto;
    border: 2px solid #0000000;
}

.roulette-container {
	overflow-x: hidden;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

#fillMeUpDaddy {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  transition: left 5s cubic-bezier(0.12, 0.76, 0.12, 1);
}

#fillMeUpDaddy > div {
  width: 140px;
  height: 140px;
  display: inline-block;
  padding: 5px;
  box-sizing: border-box;
}

.item {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 3px;
  padding: 10px;
  box-sizing: border-box;
  color: white;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.placeholder-img {
  height: 60px;
  background-color: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 3px;
}

.item-name {
  font-weight: bold;
  font-size: 12px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-subtitle {
  font-size: 10px;
  opacity: 0.8;
}


.item-common {
	background: radial-gradient(circle,rgba(110, 125, 137, 1) 0%, rgba(61, 69, 75, 1) 100%);
}

.item-uncommon {
	background: radial-gradient(circle,rgba(99, 162, 228, 1) 0%, rgba(0, 57, 118, 1) 100%);
}

.item-rare {
	background: radial-gradient(circle,rgba(13, 95, 153, 1) 0%, rgba(0, 50, 86, 1) 100%);
}

.item-mythical {
	background: radial-gradient(circle,rgba(220, 47, 239, 1) 0%, rgba(74, 0, 82, 1) 100%);
}

.item-legendary {
	background: radial-gradient(circle,rgba(127, 79, 246, 1) 0%, rgba(57, 27, 127, 1) 100%);
}

.item-ancient {
	background: radial-gradient(circle,rgba(246, 79, 77, 1) 0%, rgba(105, 1, 0, 1) 100%);
}

.item-contraband {
	background: radial-gradient(circle,rgba(248, 211, 0, 1) 0%, rgba(114, 97, 0, 1) 100%);
}


/* Маркер центра рулетки */
.rouletteContainer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 225px;
  background-color: #ff0;
  z-index: 2;
}

/* Стили для кнопки и выигрышей */
#startButton {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s;
  display: block;
  margin: 20px auto;
}

#startButton:hover {
  background-color: #45a049;
}

#startButton.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

#winners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 10px;
    margin-bottom: 80px;
	width: 100%;
}

.winner-item {

  border: 0px;
    background-color: #003366;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    color: white;
    text-decoration: none;
    justify-content: space-between;
}
.winner-item img {
    max-height: 186.66px;
    max-width: 186.66px;
}	
