* {
  padding: 0px;
  margin: 0px;
}
body {
  background: black;
  font-family: "PLAY";
}
main {
  margin-top: 30px;
}
.heading {
  background: #222;
  width: 100%;
  height: 70px;
}
.heading img {
  width: 200px;
  height: 70px;
}

.block {
  display: flex;
  justify-content: center; /* center horizontal */
  gap: 20px;
  margin-top: 10px;
  width: 100%;
}

.block a {
  display: flex; /* supaya align-items bekerja */
  align-items: center; /* center vertical */
  justify-content: center; /* center teks horizontal */
  height: 30px;
  width: 100px;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
  background: orange;
  font-style: italic;
  text-decoration: none;
  text-align: center;
}

.slot-rtp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px;
  justify-content: flex-start;
}

.slot-rtp figure {
  width: calc(33.333% - 6.67px);
  box-sizing: border-box;
  margin: 0;
}

.slot-rtp img {
  width: 100%;
  display: block;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.slot-rtp figcaption {
  display: flex;
  flex-direction: column; /* teks di atas, bar di bawah */
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 5px 10px;
  text-transform: uppercase;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rtp-bar-wrapper {
  position: relative;
  width: 100%;
  height: 15px;
  background: #ddd;
  border-radius: 5px;
  margin-top: 5px;
  overflow: hidden;
}

.rtp-bar {
  height: 100%;
  width: calc(var(--rtp) * 1%);
  border-radius: 5px 0 0 5px;
  background-color: green; /* default */
}

.rtp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: bold;
  color: #000; /* sesuaikan agar terbaca */
}
