.scroll-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.scroll-content {
  display: flex;
  flex-wrap: nowrap;       /* no wrapping, keep all buttons on one line */
  overflow-x: auto;        /* allow horizontal scroll if needed */
  justify-content: center;
  gap: 0.55em;             /* gap between buttons */
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.coin-button {
  flex: 1 1 0;             /* equal share, allow shrink past basis */
  min-width: 0;            /* let button shrink below content width */
  box-sizing: border-box;
  flex-direction: column-reverse;
  background: #030303;
  border: 0.125em solid transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: white;
  border-radius: 0.75em;
  cursor: pointer;
  transition: border 0.2s, transform 0.1s;
  height: 4.15em;
}


.coin-button img {
  margin-left: 0;
  margin-right: 0;
  width: 1.75em;
  height: 1.75em;
  flex-shrink: 0;
}

.coin-button:hover {
  border-color: #FF8B04;
}


.radial-center {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radial-container {
  width: 200px;
  height: 200px;
  position: relative;
}

.radial-progress {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

circle {
  fill: none;
  stroke-width: 7;
}

.bg {
  stroke: #0058AD;
}

.progress {
  stroke: #51D2F2;
  stroke-dasharray: 282.74;
  stroke-dashoffset: 282.74;
  transition: stroke-dashoffset 0.2s linear;
}

.progress-text {
  position: absolute;
  top: 112px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Gobold Regular;
  font-size: 2.75em;
  color: white;
}


