  .binet-video {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 4rem auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 1.25rem;
  }

  .binet-video video,
  .binet-video .binet-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .binet-video .binet-video__poster {
    cursor: pointer;
    transition: opacity 0.4s ease;
    z-index: 2;
  }

  .binet-video.is-playing .binet-video__poster {
    opacity: 0;
    pointer-events: none;
  }

  .binet-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 0;
  }

  .binet-video__play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
  }

  .binet-video__play::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: binetVideoPulse 2s ease-out infinite;
    z-index: -1;
  }

  @keyframes binetVideoPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
  }

  .binet-video__play svg {
    width: 36px;
    height: 36px;
    color: #5c1a58;
    margin-left: 4px;
  }

  .binet-video.is-playing .binet-video__play {
    display: none;
  }

  .binet-video__yt {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #181818;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }

  .binet-video__yt:hover {
    background: #fff;
    color: #181818;
  }

  .binet-video__yt svg {
    width: 18px;
    height: 18px;
    color: #FF0000;
  }

  @media (max-width: 640px) {
    .binet-video {
      margin: 2rem auto;
      border-radius: 0.75rem;
    }

    .binet-video__play {
      width: 72px;
      height: 72px;
    }

    .binet-video__play svg {
      width: 28px;
      height: 28px;
    }

    .binet-video__yt {
      bottom: 12px;
      right: 12px;
      padding: 8px 12px;
      font-size: 12px;
    }
  }
