@media (min-width: 320px) and (max-width: 480px) {
  .video-container {
    position: relative;
    width: 100%;
    height: 80vh;
    background: #000;
    overflow: hidden;
    border-radius: 10px;
  }
}
@media (min-width: 992px) and (max-width: 3000px) {
  .video-container {
    position: relative;
    width: 20vw;
    height: 70vh;
    background: #000;
    overflow: hidden;
    border-radius: 10px;
  }
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 10px;
}

.controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: white;
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.bottom-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-controls, .right-controls {
  display: flex;
  gap: 20px;
  align-items: center;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(255,255,255,0.1);
}

.time-display {
  color: white;
  font-size: 14px;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

.video-info {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 10;
}

.username {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.caption {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.hashtags {
  font-size: 14px;
  color: #aaa;
}

.interaction-icons {
  position: absolute;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.interaction-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.interaction-count {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
}

/* Animation for play button pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 1s infinite;
}
