/* Lists */

.prizes-list,
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.prize-item,
.channel-item {
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--preview-card-bg);
  border: 1px solid var(--tg-border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prize-main,
.channel-main {
  flex: 1;
}

.prize-name {
  font-size: 13px;
}

.prize-meta,
.channel-link {
  font-size: 11px;
  color: var(--tg-text-soft);
}

.item-actions {
  display: flex;
  gap: 4px;
}



.prize-item,
.channel-item {
  padding: 14px 16px;
  gap: 12px;
  transition: transform 0.16s ease, border-color 0.2s ease, background 0.2s ease;
}

.prize-item:hover,
.channel-item:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 163, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.prize-main,
.channel-main {
  min-width: 0;
}

.prize-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tg-text);
}

.prize-meta,
.channel-link {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}
