/* small tab link */
.video-tab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #007bff;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
}

/* overlay containing small player /
.video-overlay {
  position: fixed;
  right: 16px;
  bottom: 64px; / above the tab */
  width: 320px;
  height: 180px;
  background: rgba(0,0,0,0.75);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  overflow: hidden;
}

.video-overlay.show { display: flex; }

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container video {
  width: 70%;
  height: 70%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  background: black;
}

/* small close button */
.video-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  z-index: 2;
}

/* simple page content spacing */
.page-content { padding: 40px; font-family: system-ui, sans-serif; }