.yt-reset-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.yt-reset-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.yt-reset-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease-in-out;
  padding: 20px;
  text-align: center;
}

.yt-reset-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  margin-top: 32px;
}

.yt-reset-title {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}

.yt-reset-wrap.is-paused .yt-reset-overlay {
  opacity: 1;
  pointer-events: auto;
}

.yt-reset-wrap:hover .yt-reset-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.yt-reset-play {
  appearance: none;
  border: 0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-hover) 100%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(99, 157, 72, 0.3);
  transition: all 250ms ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-reset-play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid currentColor;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.yt-reset-play:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(99, 157, 72, 0.25);
}

.yt-reset-play:active {
  transform: scale(0.95);
  box-shadow: 0 4px 15px rgba(99, 157, 72, 0.3);
}

.yt-reset-play:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .yt-reset-play {
    width: 70px;
    height: 70px;
  }

  .yt-reset-play::before {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-left: 3px;
  }

  .yt-reset-title {
    font-size: 14px;
  }

  .yt-reset-content {
    gap: 12px;
  }

  .yt-reset-overlay {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .yt-reset-play {
    width: 60px;
    height: 60px;
  }

  .yt-reset-play::before {
    border-left-width: 14px;
    border-top-width: 8px;
    border-bottom-width: 8px;
    margin-left: 2px;
  }

  .yt-reset-title {
    font-size: 12px;
  }

  .yt-reset-content {
    gap: 10px;
  }

  .yt-reset-overlay {
    padding: 12px;
  }
}
