* {
  box-sizing: border-box;
}

.scroll-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin: 0;
}

.scroll-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;       
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  align-items: stretch;
}

.coin-button {
  flex: 1 1 calc((100% - (0.55em * 5)) / 6);
  box-sizing: border-box;
  flex-direction: column-reverse;
  background: #363636;
  border: 0.125em solid transparent;
  padding: 0.4em 0 0.6em;  /* small vertical padding */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25em;
  color: white;
  border-radius: 0.45em;
  cursor: pointer;
  transition: border 0.2s, transform 0.1s;
  height: 4.2em;
  font-family: "PPPangramSansExtraBold-ExtraBold", sans-serif;
}

.coin-button img {
  width: 1.5em;
  height: 1.75em;
  flex-shrink: 0;
  margin-bottom: 0.4em;  
}


.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;
}


.glass {
  display: none;
  position: relative;
  width: 128px;
  height: 512px;
  /* border: 1px solid #fff; */
  backdrop-filter: blur(30px);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;

  .glass_top {
    position: absolute; 
    left: 0;
    right: 0;
    top: -42px;
    height: 42px;
    background: rgb(201, 248, 242);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
  }
}

iframe {
  border: none;
}