.youtube-facade {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background-color: #000;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .youtube-facade .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      background-color: white;
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
    
    .youtube-facade .play-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-40%, -50%);
      width: 0;
      height: 0;
      border-left: 20px solid #4B271C;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
    }
    
    .youtube-facade:hover .play-button {
      transform: translate(-50%, -50%) scale(1.1);
    }
