#jamies-ytp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#jamies-ytp-player-wrap {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
  position: relative;
}
.jamies-ytp-open #jamies-ytp-player-wrap {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
#jamies-ytp-iframe {
  display: block;
  border: none;
}
.jamies-ytp-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10000;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.jamies-ytp-close:hover, .jamies-ytp-close:focus {
  background: rgba(0,0,0,0.9);
  outline: none;
} 