.rtp-live-section{
  max-width:1050px;
  margin:60px auto 70px;
  padding:0 18px;
  color:#f5e7c8;
  font-family:Arial,sans-serif;
}

.rtp-head{
  text-align:center;
  margin-bottom:30px;
}

.rtp-head p{
  color:#ffcf4d;
  font-weight:800;
  letter-spacing:2px;
  margin:8px 0;
}

.rtp-head h2{
  color:#ffd456;
  font-size:30px;
  margin:0 0 15px;
  letter-spacing:1px;
}

.rtp-live-dot{
  display:inline-block;
  width:11px;
  height:11px;
  border-radius:50%;
  background:#38ff75;
  box-shadow:0 0 14px #38ff75;
  animation:rtpBlink 1s infinite;
}

.rtp-meta{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  color:#cdbf9d;
}

.rtp-meta span{
  background:#20190f;
  border:1px solid rgba(255,207,77,.35);
  padding:9px 14px;
  border-radius:999px;
}

.rtp-meta b{
  color:#ffcf4d;
}

.rtp-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.rtp-card{
  background:linear-gradient(180deg,#241d14,#161109);
  border:1px solid rgba(255,207,77,.28);
  border-radius:12px;
  padding:14px;
  position:relative;
  overflow:hidden;
  box-shadow:0 0 18px rgba(0,0,0,.35);
  transition:.25s ease;
}

.rtp-card:hover{
  transform:translateY(-5px) scale(1.02);
  border-color:#ffcf4d;
  box-shadow:0 0 26px rgba(255,190,70,.25);
}

.rtp-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:linear-gradient(90deg,#ff3737,#ffb13b);
  color:#fff;
  font-size:11px;
  font-weight:800;
  padding:5px 9px;
  border-radius:999px;
  z-index:2;
}

.rtp-img{
  width:100%;
  aspect-ratio:1/1;
  height:auto;
  object-fit:cover;
  object-position:center;
  border-radius:12px;
  margin-bottom:12px;
  border:1px solid rgba(255,207,77,.25);
  display:block;
  background:#120d07;
  transition:.35s ease;
}

.rtp-card:hover .rtp-img{
  transform:scale(1.03);
  box-shadow:0 0 22px rgba(255,207,77,.35);
}

.rtp-name{
  color:#ffcf4d;
  font-size:15px;
  font-weight:900;
  letter-spacing:.7px;
  margin-bottom:8px;
  text-transform:uppercase;
}

.rtp-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:9px;
}

.rtp-label{
  font-size:12px;
  color:#bba982;
  font-weight:700;
}

.rtp-percent{
  font-size:22px;
  color:#55ff77;
  font-weight:900;
  text-shadow:0 0 12px rgba(85,255,119,.3);
}

.rtp-bar{
  height:10px;
  background:#0c0906;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,207,77,.18);
  margin-bottom:12px;
}

.rtp-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,#32ff6a,#ffcf4d);
  width:88%;
  transition:width .8s ease;
}

.rtp-chart{
  width:100%;
  height:48px;
  margin-bottom:12px;
}

.rtp-btn{
  display:block;
  text-align:center;
  text-decoration:none;
  background:linear-gradient(90deg,#ffcc45,#b97916);
  color:#1a1005;
  font-size:12px;
  font-weight:900;
  padding:10px;
  border-radius:8px;
  letter-spacing:.8px;
}

@keyframes rtpBlink{
  0%,100%{opacity:1}
  50%{opacity:.3}
}

@media(max-width:900px){
  .rtp-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .rtp-grid{
    grid-template-columns:1fr;
  }
}