/* Reset margin i padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

/* Styl dla pełnoekranowego wideo */
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* Apla w prawym dolnym rogu */
.apla {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #008f4c; /* zielony jak logo MediaVision */
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 260px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}