.cbt-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
}

.cbt-performer {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s;
}
.cbt-performer:hover {
  transform: translateY(-5px);
}

.cbt-thumbnail {
  position: relative;
}
.cbt-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.cbt-online {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  background-color: #e74c3c;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.blinking-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

.cbt-viewers {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 2;
  font-weight: 500;
}

.cbt-info {
  padding: 10px;
  text-align: center;
}
.cbt-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}
.cbt-name {
  font-weight: bold;
  display: block;
}
.cbt-country {
  font-size: 12px;
  color: #888;
}
.verified-badge {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
  object-fit: contain;
}