.single-service-cap li { list-style: square; }
.paticka p { color: white; }
.services-area1 a { color: black; }
.vlajky ul { display: flex; list-style: none;  padding: 0; margin: 0;  gap: 5px;}
.vlajky li { }

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    background-color: black;
  }

  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s;
  }

  .video-wrapper:hover .play-button {
    opacity: 0.85;
  }

  .video-wrapper.playing .play-button {
    opacity: 0;
  }

  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  /* trojúhelník pro „play“ */
  .icon-play {
    width: 0;
    height: 0;
    border-left: 22px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
  }

  /* dvojčárka pro „pause“ */
  .icon-pause {
    display: flex;
    gap: 8px;
  }

  .icon-pause::before,
  .icon-pause::after {
    content: "";
    display: block;
    width: 8px;
    height: 28px;
    background: white;
  }