body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stylowanie popupu */
#popupMenu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 1000;
    width: 260px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    position: relative;
  }

  /* Stylowanie popupu */
#popupMenu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(30, 30, 60, 0.95); /* Ciemnofioletowe tło */
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  z-index: 1000;
  width: 260px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  position: relative;
}


/* Stylowanie przycisków */
.popup-button {
  margin: 10px 0;
  padding: 12px;
  width: 100%;
  background: linear-gradient(145deg, #6a0dad, #8a2be2); /* Fioletowy gradient */
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.popup-button:hover {
  background: linear-gradient(145deg, #5c0ca5, #7a24d5);
  transform: translateY(-2px); /* Efekt lekkiego uniesienia */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.4);
}

.popup-button:active {
  transform: translateY(1px); /* Wciśnięcie */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.3);
}

#closerButton {
  background: linear-gradient(145deg, #4b077b, #6b1aa3);
}

#closerButton:hover {
  background: linear-gradient(145deg, #a32020, #c53030);
}