
.rbgv-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(3, minmax(0,1fr));
}
@media (max-width: 1100px){ .rbgv-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px){ .rbgv-grid{ grid-template-columns:repeat(1, minmax(0,1fr)); } }

.rbgv-card{
  background:#0b1220;
  border-radius:18px;
  padding:16px;
  color:#e5e7eb;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.rbgv-card-new{
  box-shadow:0 0 18px rgba(37,99,235,.55), 0 10px 30px rgba(0,0,0,.35);
}

.rbgv-thumb{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  aspect-ratio: 1 / 1;
  background:#0a0f1a;
}
.rbgv-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.rbgv-thumb-fallback{ width:100%; height:100%; background:#0a0f1a; }

.rbgv-badge-new{
  position:absolute;
  top:10px; left:10px;
  background:#ef4444;
  color:#fff;
  font-size:12px;
  font-weight:800;
  padding:4px 10px;
  border-radius:999px;
  letter-spacing:.08em;
}

.rbgv-title{
  margin-top:12px;
  font-size:16px;
  font-weight:700;
  color:#f9fafb;
  text-align:center;
}

.rbgv-stats{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.rbgv-stat{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  padding:10px 12px;
  border-radius:10px;
}
.rbgv-label{ color:#a1a1aa; font-size:13px; }
.rbgv-value{ color:#e5e7eb; font-weight:800; font-size:14px; }
.rbgv-green{ color:#34d399; }

.rbgv-footer{ margin-top:14px; display:flex; justify-content:center; }
.rbgv-play-button{
  display:inline-block;
  padding:10px 18px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:800;
}
.rbgv-play-button:hover{ background:#1d4ed8; }

.rbgv-error{ color:#f87171; font-weight:600; }

.rbgv-debug{
  background:#111827;
  border-left:4px solid #f97316;
  padding:12px 16px;
  margin-bottom:16px;
  color:#e5e7eb;
  font-size:13px;
}
