.bv-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.bv-widget-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: relative;
}

.bv-widget-btn--instagram {
  background: #111;
}

.bv-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.bv-widget-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  shape-rendering: geometricPrecision;
}

.bv-widget-btn {
  color: #fff;
}

.bv-widget-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c93535;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid #111;
  box-shadow: 0 8px 20px rgba(201, 53, 53, 0.28);
}

/* Modal overlay */
.bv-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.bv-modal-overlay.open {
  display: flex;
}

.bv-modal {
  background: #111;
  border-radius: 16px;
  padding: 32px 28px 24px;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  position: relative;
}

.bv-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

.bv-modal-close:hover {
  color: #fff;
}

.bv-modal-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8962e;
  margin-bottom: 10px;
  text-align: center;
}

.bv-modal-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bv-modal-status {
  min-height: 26px;
  display: flex;
  justify-content: center;
}

.bv-channel-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 53, 53, 0.14);
  border: 1px solid rgba(201, 53, 53, 0.26);
  color: #ff8d8d;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bv-channel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #c93535;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(201, 53, 53, 0.24);
}

.bv-modal-channel {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 8px;
  border: 1px solid #2a2a2a;
  transition: background 0.15s, border-color 0.15s;
}

.bv-modal-channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.bv-modal-channel:last-child {
  margin-bottom: 0;
}

.bv-modal-channel:hover {
  background: #1a1a1a;
  border-color: #555;
}

.bv-modal-channel-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.bv-modal-channel-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

.bv-modal-divider {
  margin: 14px 0;
  border-top: 1px solid #2a2a2a;
}

@media (max-width: 560px) {
  .bv-modal {
    padding: 30px 20px 22px;
  }

  .bv-modal-channel-top {
    align-items: center;
  }

  .bv-modal-channel-name {
    flex: 1;
  }
}
