.drive-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.drive-video-box {
  position: relative;
  width: 80%;
  max-width: 900px;
  animation: zoomIn 0.25s ease;
}

#drivePlayer {
  width: 100%;
  border-radius: 14px;
}

.drive-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.drive-close:hover { color: #aaa; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes zoomIn { from { transform:scale(0.7); opacity:0; } to { transform:scale(1); opacity:1; } }
