html.squarespace-damask .sqs-blockStatus,
  html.squarespace-damask .removed-script {
    display: none !important;
  }

  .tdc-yt-watch-video {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
    border: 1px solid #FFF;
    border-radius: 7px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    box-shadow:
      0 10px 30px #36230A,
      0 4px 10px #36230A;
    transition:
      transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      box-shadow 0.25s ease;
  }
  .tdc-yt-watch-video:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
      0 16px 40px rgba(113, 76, 30, 0.45),
      0 6px 14px rgba(113, 76, 30, 0.25);
  }
  .tdc-yt-watch-video.is-modal-open { visibility: hidden; }

  .tdc-yt-preview-iframe {
    position: absolute;
    top: -17.5%;
    left: -17.5%;
    width: 270%;
    height: 270%;
    transform: scale(0.5);
    transform-origin: top left;
    border: none;
    pointer-events: none;
  }

  .tdc-yt-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 16px;
    pointer-events: none;
  }
  .tdc-yt-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005285;
    box-shadow: 0 4px 16px #36230A;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }
  .tdc-yt-watch-video:hover .tdc-yt-icon {
    transform: scale(1.08);
  }
  .tdc-yt-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 2px;
  }
  .tdc-yt-label {
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #36230A;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }
  @media (max-width: 600px) {
    .tdc-yt-overlay { gap: 10px; padding: 0 12px; }
    .tdc-yt-icon { width: 56px; height: 56px; }
    .tdc-yt-icon svg { width: 22px; height: 22px; margin-left: 2px; }
    .tdc-yt-label { font-size: 13px; }
  }

  .tdc-yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    align-items: center;
    justify-content: center;
  }
  .tdc-yt-modal.is-mounted { display: flex; }
  .tdc-yt-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 247, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
  }
  .tdc-yt-modal.is-open::before { opacity: 1; }
  .tdc-yt-modal.is-closing::before {
    transition: opacity 0.3s ease-out;
  }

  .tdc-yt-modal-stage {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    transform-origin: top left;
    will-change: transform;
    cursor: pointer;
  }
  .tdc-yt-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #000;
    box-shadow:
      0 30px 80px rgba(113, 76, 30, 0.18),
      0 10px 30px rgba(113, 76, 30, 0.10);
    pointer-events: none;
  }

  .tdc-yt-modal-controls {
    position: absolute;
    bottom: -64px;
    left: 16px;
    right: 16px;
    height: 48px;
    z-index: 10;
    background: rgba(113, 76, 30, 0.65);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: default;
  }
  .tdc-yt-modal.is-open .tdc-yt-modal-controls {
    opacity: 1;
    transition-delay: 0.4s;
  }
  .tdc-yt-mc-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
  }
  .tdc-yt-mc-btn:hover  { background: rgba(255, 255, 255, 0.15); }
  .tdc-yt-mc-btn:active { background: rgba(255, 255, 255, 0.25); }
  .tdc-yt-mc-btn.is-active { background: rgba(255, 255, 255, 0.22); }
  .tdc-yt-mc-btn.is-active:hover { background: rgba(255, 255, 255, 0.32); }
  .tdc-yt-mc-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    pointer-events: none;
  }
  .tdc-yt-mc-restart svg { width: 14px; height: 14px; }
  .tdc-yt-mc-cc svg { width: 18px; height: 18px; }
  .tdc-yt-mc-progress {
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin: 0 6px;
    user-select: none;
  }
  .tdc-yt-mc-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    position: relative;
    pointer-events: none;
    transition: height 0.15s ease;
  }
  .tdc-yt-mc-progress:hover .tdc-yt-mc-progress-track { height: 6px; }
  .tdc-yt-mc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
    pointer-events: none;
  }
  .tdc-yt-mc-time {
    color: #fff;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 88px;
    text-align: center;
    white-space: nowrap;
    user-select: none;
  }
  @media (max-width: 600px) {
    .tdc-yt-modal-controls {
      bottom: -58px;
      left: 10px;
      right: 10px;
      height: 42px;
      gap: 2px;
      padding: 0 6px;
    }
    .tdc-yt-mc-btn { width: 32px; height: 32px; }
    .tdc-yt-mc-time { font-size: 12px; min-width: 76px; }
  }

  .tdc-yt-modal-close {
    position: absolute;
    top: -56px;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      border-color 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .tdc-yt-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 1);
    transform: scale(1.05);
  }
  .tdc-yt-modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
  }

  .tdc-yt-modal-link {
    position: absolute;
    top: -56px;
    right: 56px;
    height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 22px;
    border: 1.5px solid rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer;
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      border-color 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .tdc-yt-modal-link:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 1);
    transform: scale(1.03);
  }
  .tdc-yt-modal-link svg {
    width: 14px;
    height: 14px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
  }

  @media (max-width: 600px) {
    .tdc-yt-modal-close {
      top: -48px;
      width: 38px;
      height: 38px;
    }
    .tdc-yt-modal-link {
      top: -48px;
      right: 46px;
      height: 38px;
      padding: 0 14px;
      font-size: 12px;
      gap: 6px;
      border-radius: 19px;
    }
    .tdc-yt-modal-link svg { width: 12px; height: 12px; }
  }