.rsdp-reel-feed {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.rsdp-reel-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: #000;
}

.rsdp-reel-item.active { display: flex; }

.rsdp-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.rsdp-prev { left: 10px; }
.rsdp-next { right: 10px; }

@media (max-width: 768px) {
  .rsdp-arrow { display: none; }
}

.rsdp-reel-actions {
  position: absolute;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rsdp-reel-actions button {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.rsdp-reel-ad {
  background: #000;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
